Not professional code....for Academic Demonstration only...

Real Cost Function and Gradient Descent....

A cost function for Regression Problems

$$ MSE = \frac{1}{n} \sum_{i=1}^{n} \big( y - \hat{y} \big)^2 $$

$$MSE = \frac{1}{n} \sum_{i=1}^{n} \big( y_i - h_\theta x_i \big)^2 $$

$$MSE = \frac{1}{n} \sum_{i=1}^{n} \big( y_i - (\theta_0 + \theta_1x_i)\big)^2 $$

In [1]:
import matplotlib.pyplot as plt
import numpy as np

from mpl_toolkits.mplot3d.axes3d import Axes3D
from matplotlib import cm 

from sklearn.linear_model import LinearRegression
from sklearn.metrics import mean_squared_error
In [2]:
# Make sample data
x_5 = np.array([0.1, 1.2, 2.4, 3.2, 4.1, 5.7, 6.5])
y_5 = np.array([1.7, 2.4, 3.5, 3.0, 6.1, 9.4, 8.2])
In [3]:
print(x_5.shape)
(7,)
In [4]:
print(y_5.shape)
(7,)
In [5]:
# MAking the correction to the two dimensional array
x_5 = np.array([[0.1, 1.2, 2.4, 3.2, 4.1, 5.7, 6.5]]).transpose() # using the transpose
y_5 = np.array([1.7, 2.4, 3.5, 3.0, 6.1, 9.4, 8.2]).reshape(7,1) # using the reshape
In [6]:
print(x_5.shape)
(7, 1)
In [7]:
print(y_5.shape)
(7, 1)

Plotting the regression line, obtaining the intercept and the slope

In [8]:
regr = LinearRegression()
regr.fit(x_5, y_5)
Out[8]:
LinearRegression(copy_X=True, fit_intercept=True, n_jobs=None, normalize=False)
In [9]:
print('Theta 0:', regr.intercept_[0])# Its a one dimesional array
print('Theta 1:', regr.coef_[0][0]) # This is a two dimensional array
Theta 0: 0.8475351486029536
Theta 1: 1.2227264637835915
In [10]:
fig = plt.figure(figsize=[10, 8])
plt.scatter(x_5, y_5, s=100)
plt.plot(x_5, regr.predict(x_5), color='green', linewidth=3)
plt.xlabel('x values')
plt.ylabel('y values')
plt.show()
In [11]:
# y_hat = theta0 + theta1*x ( Remember ......y= mx+c)
y_hat = 0.8475351486029536 + 1.2227264637835915*x_5
print('Predicted values of  y_hat are: \n\n', y_hat , '\n')# y_hat is the predicted value in the data set
print('The actual values  of y are: \n\n', y_5, '\n')
print(y_hat.shape, '\n')
print(y_5.shape)
Predicted values of  y_hat are: 

 [[0.96980779]
 [2.31480691]
 [3.78207866]
 [4.76025983]
 [5.86071365]
 [7.81707599]
 [8.79525716]] 

The actual values  of y are: 

 [[1.7]
 [2.4]
 [3.5]
 [3. ]
 [6.1]
 [9.4]
 [8.2]] 

(7, 1) 

(7, 1)

MSE calculated in 4 different ways......option 1

In [12]:
def mse(y, y_hat):
    mse_calc = 1/7 * sum((y - y_hat)**2)
    return mse_calc
print('The directly calculated value of MSE is ', mse(y_5 , y_hat))
The directly calculated value of MSE is  [0.94796558]

function definition using........ "y.size"......size option 2

In [13]:
def mse_1(y, y_hat):
    mse_calc_1 = (1/y.size) * sum((y - y_hat)**2)
    return mse_calc_1

print (' The MSE calculated using the \"y.size\" is ', mse_1(y_5, y_hat))
 The MSE calculated using the "y.size" is  [0.94796558]

function definition using ......np.average.... option 3

In [14]:
def mse_2(y, y_hat):
    mse_calc_2 = np.average((y - y_hat)**2, axis=0)
    return mse_calc_2
print ('The MSE Calcualted using the np.average is ', mse_2(y_5, y_hat) )
The MSE Calcualted using the np.average is  [0.94796558]

Calculating MSCE using the inbulit ......"mean_sqaured_error".... option 4

In [15]:
#from sklearn.metrics import ".....mean_squared_error....."
print('MSE using the inbult function is', mean_squared_error(y_5, regr.predict(x_5)))
MSE using the inbult function is 0.9479655759794577

3D Plot for the Mean Squared Error cost Function

Making data for thetas...and plotting the meshgrid for demonstartion here..... nr_thetas = 5

In [17]:
nr_thetas = 200 # used to slice the line...linspace
th_0 = np.linspace(start=-1, stop=3, num=nr_thetas)
th_1 = np.linspace(start=-1, stop=3, num=nr_thetas)
plot_t0, plot_t1 = np.meshgrid(th_0, th_1)
print(th_0)
print(th_1)
[-1.         -0.9798995  -0.95979899 -0.93969849 -0.91959799 -0.89949749
 -0.87939698 -0.85929648 -0.83919598 -0.81909548 -0.79899497 -0.77889447
 -0.75879397 -0.73869347 -0.71859296 -0.69849246 -0.67839196 -0.65829146
 -0.63819095 -0.61809045 -0.59798995 -0.57788945 -0.55778894 -0.53768844
 -0.51758794 -0.49748744 -0.47738693 -0.45728643 -0.43718593 -0.41708543
 -0.39698492 -0.37688442 -0.35678392 -0.33668342 -0.31658291 -0.29648241
 -0.27638191 -0.25628141 -0.2361809  -0.2160804  -0.1959799  -0.1758794
 -0.15577889 -0.13567839 -0.11557789 -0.09547739 -0.07537688 -0.05527638
 -0.03517588 -0.01507538  0.00502513  0.02512563  0.04522613  0.06532663
  0.08542714  0.10552764  0.12562814  0.14572864  0.16582915  0.18592965
  0.20603015  0.22613065  0.24623116  0.26633166  0.28643216  0.30653266
  0.32663317  0.34673367  0.36683417  0.38693467  0.40703518  0.42713568
  0.44723618  0.46733668  0.48743719  0.50753769  0.52763819  0.54773869
  0.5678392   0.5879397   0.6080402   0.6281407   0.64824121  0.66834171
  0.68844221  0.70854271  0.72864322  0.74874372  0.76884422  0.78894472
  0.80904523  0.82914573  0.84924623  0.86934673  0.88944724  0.90954774
  0.92964824  0.94974874  0.96984925  0.98994975  1.01005025  1.03015075
  1.05025126  1.07035176  1.09045226  1.11055276  1.13065327  1.15075377
  1.17085427  1.19095477  1.21105528  1.23115578  1.25125628  1.27135678
  1.29145729  1.31155779  1.33165829  1.35175879  1.3718593   1.3919598
  1.4120603   1.4321608   1.45226131  1.47236181  1.49246231  1.51256281
  1.53266332  1.55276382  1.57286432  1.59296482  1.61306533  1.63316583
  1.65326633  1.67336683  1.69346734  1.71356784  1.73366834  1.75376884
  1.77386935  1.79396985  1.81407035  1.83417085  1.85427136  1.87437186
  1.89447236  1.91457286  1.93467337  1.95477387  1.97487437  1.99497487
  2.01507538  2.03517588  2.05527638  2.07537688  2.09547739  2.11557789
  2.13567839  2.15577889  2.1758794   2.1959799   2.2160804   2.2361809
  2.25628141  2.27638191  2.29648241  2.31658291  2.33668342  2.35678392
  2.37688442  2.39698492  2.41708543  2.43718593  2.45728643  2.47738693
  2.49748744  2.51758794  2.53768844  2.55778894  2.57788945  2.59798995
  2.61809045  2.63819095  2.65829146  2.67839196  2.69849246  2.71859296
  2.73869347  2.75879397  2.77889447  2.79899497  2.81909548  2.83919598
  2.85929648  2.87939698  2.89949749  2.91959799  2.93969849  2.95979899
  2.9798995   3.        ]
[-1.         -0.9798995  -0.95979899 -0.93969849 -0.91959799 -0.89949749
 -0.87939698 -0.85929648 -0.83919598 -0.81909548 -0.79899497 -0.77889447
 -0.75879397 -0.73869347 -0.71859296 -0.69849246 -0.67839196 -0.65829146
 -0.63819095 -0.61809045 -0.59798995 -0.57788945 -0.55778894 -0.53768844
 -0.51758794 -0.49748744 -0.47738693 -0.45728643 -0.43718593 -0.41708543
 -0.39698492 -0.37688442 -0.35678392 -0.33668342 -0.31658291 -0.29648241
 -0.27638191 -0.25628141 -0.2361809  -0.2160804  -0.1959799  -0.1758794
 -0.15577889 -0.13567839 -0.11557789 -0.09547739 -0.07537688 -0.05527638
 -0.03517588 -0.01507538  0.00502513  0.02512563  0.04522613  0.06532663
  0.08542714  0.10552764  0.12562814  0.14572864  0.16582915  0.18592965
  0.20603015  0.22613065  0.24623116  0.26633166  0.28643216  0.30653266
  0.32663317  0.34673367  0.36683417  0.38693467  0.40703518  0.42713568
  0.44723618  0.46733668  0.48743719  0.50753769  0.52763819  0.54773869
  0.5678392   0.5879397   0.6080402   0.6281407   0.64824121  0.66834171
  0.68844221  0.70854271  0.72864322  0.74874372  0.76884422  0.78894472
  0.80904523  0.82914573  0.84924623  0.86934673  0.88944724  0.90954774
  0.92964824  0.94974874  0.96984925  0.98994975  1.01005025  1.03015075
  1.05025126  1.07035176  1.09045226  1.11055276  1.13065327  1.15075377
  1.17085427  1.19095477  1.21105528  1.23115578  1.25125628  1.27135678
  1.29145729  1.31155779  1.33165829  1.35175879  1.3718593   1.3919598
  1.4120603   1.4321608   1.45226131  1.47236181  1.49246231  1.51256281
  1.53266332  1.55276382  1.57286432  1.59296482  1.61306533  1.63316583
  1.65326633  1.67336683  1.69346734  1.71356784  1.73366834  1.75376884
  1.77386935  1.79396985  1.81407035  1.83417085  1.85427136  1.87437186
  1.89447236  1.91457286  1.93467337  1.95477387  1.97487437  1.99497487
  2.01507538  2.03517588  2.05527638  2.07537688  2.09547739  2.11557789
  2.13567839  2.15577889  2.1758794   2.1959799   2.2160804   2.2361809
  2.25628141  2.27638191  2.29648241  2.31658291  2.33668342  2.35678392
  2.37688442  2.39698492  2.41708543  2.43718593  2.45728643  2.47738693
  2.49748744  2.51758794  2.53768844  2.55778894  2.57788945  2.59798995
  2.61809045  2.63819095  2.65829146  2.67839196  2.69849246  2.71859296
  2.73869347  2.75879397  2.77889447  2.79899497  2.81909548  2.83919598
  2.85929648  2.87939698  2.89949749  2.91959799  2.93969849  2.95979899
  2.9798995   3.        ]
In [18]:
print(th_0.shape)
(200,)
In [19]:
print(th_1.shape)
(200,)
In [20]:
print(plot_t0.shape)
(200, 200)
In [21]:
print(plot_t1.shape)
(200, 200)
In [22]:
print(plot_t0)
[[-1.         -0.9798995  -0.95979899 ...  2.95979899  2.9798995
   3.        ]
 [-1.         -0.9798995  -0.95979899 ...  2.95979899  2.9798995
   3.        ]
 [-1.         -0.9798995  -0.95979899 ...  2.95979899  2.9798995
   3.        ]
 ...
 [-1.         -0.9798995  -0.95979899 ...  2.95979899  2.9798995
   3.        ]
 [-1.         -0.9798995  -0.95979899 ...  2.95979899  2.9798995
   3.        ]
 [-1.         -0.9798995  -0.95979899 ...  2.95979899  2.9798995
   3.        ]]
In [23]:
print(plot_t1)
[[-1.         -1.         -1.         ... -1.         -1.
  -1.        ]
 [-0.9798995  -0.9798995  -0.9798995  ... -0.9798995  -0.9798995
  -0.9798995 ]
 [-0.95979899 -0.95979899 -0.95979899 ... -0.95979899 -0.95979899
  -0.95979899]
 ...
 [ 2.95979899  2.95979899  2.95979899 ...  2.95979899  2.95979899
   2.95979899]
 [ 2.9798995   2.9798995   2.9798995  ...  2.9798995   2.9798995
   2.9798995 ]
 [ 3.          3.          3.         ...  3.          3.
   3.        ]]

Plotting the the mesh grid

In [24]:
#marker = 's' makes it sqaure and markeredgewidth sets its width..

plt.figure(figsize=[5, 5])
plt.plot(plot_t0, plot_t1, marker ='s', markeredgewidth=10, )
plt.ylim(-1.2, 3.2)
plt.xlim(-1.2, 3.2)
plt.show()

Creating Array for the cost function, initially we will work with 2x3 Array...then with 5x5 and plot a figure

In [25]:
plot_cost = np.zeros((2,3))
In [26]:
plot_cost
Out[26]:
array([[0., 0., 0.],
       [0., 0., 0.]])
In [27]:
plot_cost = np.zeros((5,5)) 
In [28]:
plot_cost
Out[28]:
array([[0., 0., 0., 0., 0.],
       [0., 0., 0., 0., 0.],
       [0., 0., 0., 0., 0.],
       [0., 0., 0., 0., 0.],
       [0., 0., 0., 0., 0.]])
In [29]:
plot_cost.shape
Out[29]:
(5, 5)

recall nested loops.....

In [30]:
# nested loops, we will use two for loops......goes well with iteratig through a 2d array or a matrix....
In [31]:
import numpy as np
for i in range(3):
    for j in range (4):
             print('hello  my i is '+ str(i)+'', 'my j is '+str(j)+'')
             
hello  my i is 0 my j is 0
hello  my i is 0 my j is 1
hello  my i is 0 my j is 2
hello  my i is 0 my j is 3
hello  my i is 1 my j is 0
hello  my i is 1 my j is 1
hello  my i is 1 my j is 2
hello  my i is 1 my j is 3
hello  my i is 2 my j is 0
hello  my i is 2 my j is 1
hello  my i is 2 my j is 2
hello  my i is 2 my j is 3
In [32]:
for i in range(3): # using the f string notation
    for j in range (4):
             print(f'hello my i is {i}  my j is {j}')
hello my i is 0  my j is 0
hello my i is 0  my j is 1
hello my i is 0  my j is 2
hello my i is 0  my j is 3
hello my i is 1  my j is 0
hello my i is 1  my j is 1
hello my i is 1  my j is 2
hello my i is 1  my j is 3
hello my i is 2  my j is 0
hello my i is 2  my j is 1
hello my i is 2  my j is 2
hello my i is 2  my j is 3

application of nested loops to seed, values into plot_cost, which starts of as an array of zeros...

In [33]:
i= 4
j= 3
In [34]:
print(plot_t0[i][j])
-0.9396984924623115
In [35]:
print(plot_t1[i][j])
-0.9195979899497487
In [36]:
y_hat = plot_t0[i][j] + plot_t1[i][j]*x_5
In [37]:
y_hat
Out[37]:
array([[-1.03165829],
       [-2.04321608],
       [-3.14673367],
       [-3.88241206],
       [-4.71005025],
       [-6.18140704],
       [-6.91708543]])
In [38]:
plot_cost[i][j] = mse(y_5, y_hat)
In [39]:
plot_cost[i][j]
Out[39]:
100.98778483227335
In [40]:
plot_cost = np.zeros((nr_thetas, nr_thetas ))
plot_cost
Out[40]:
array([[0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.],
       [0., 0., 0., ..., 0., 0., 0.]])
In [41]:
# creating plot cost as an array of zeros

for i in range(nr_thetas):# seeding values into the plot_cost array
    for j in range(nr_thetas):
        
        
        print(f' At row:{i}, column:{j},the value of plot_t0 is           :',plot_t0[i][j])
        print(f' At row:{i}, column:{j},the value of plot_t1 is           :' ,plot_t1[i][j])
        y_hat = plot_t0[i][j] + plot_t1[i][j]*x_5
        plot_cost[i][j] = mse(y_5, y_hat)
        print(f' At row:{i}, column:{j},the value of plot_cost is         :',plot_cost[i][j], '\n')
 At row:0, column:0,the value of plot_t0 is           : -1.0
 At row:0, column:0,the value of plot_t1 is           : -1.0
 At row:0, column:0,the value of plot_cost is         : 108.51285714285714 

 At row:0, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:0, column:1,the value of plot_t1 is           : -1.0
 At row:0, column:1,the value of plot_cost is         : 108.14283762675547 

 At row:0, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:0, column:2,the value of plot_t1 is           : -1.0
 At row:0, column:2,the value of plot_cost is         : 107.77362617105629 

 At row:0, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:0, column:3,the value of plot_t1 is           : -1.0
 At row:0, column:3,the value of plot_cost is         : 107.40522277575964 

 At row:0, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:0, column:4,the value of plot_t1 is           : -1.0
 At row:0, column:4,the value of plot_cost is         : 107.03762744086546 

 At row:0, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:0, column:5,the value of plot_t1 is           : -1.0
 At row:0, column:5,the value of plot_cost is         : 106.67084016637386 

 At row:0, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:0, column:6,the value of plot_t1 is           : -1.0
 At row:0, column:6,the value of plot_cost is         : 106.30486095228474 

 At row:0, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:0, column:7,the value of plot_t1 is           : -1.0
 At row:0, column:7,the value of plot_cost is         : 105.93968979859814 

 At row:0, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:0, column:8,the value of plot_t1 is           : -1.0
 At row:0, column:8,the value of plot_cost is         : 105.57532670531408 

 At row:0, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:0, column:9,the value of plot_t1 is           : -1.0
 At row:0, column:9,the value of plot_cost is         : 105.21177167243249 

 At row:0, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:0, column:10,the value of plot_t1 is           : -1.0
 At row:0, column:10,the value of plot_cost is         : 104.84902469995345 

 At row:0, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:0, column:11,the value of plot_t1 is           : -1.0
 At row:0, column:11,the value of plot_cost is         : 104.48708578787694 

 At row:0, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:0, column:12,the value of plot_t1 is           : -1.0
 At row:0, column:12,the value of plot_cost is         : 104.12595493620292 

 At row:0, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:0, column:13,the value of plot_t1 is           : -1.0
 At row:0, column:13,the value of plot_cost is         : 103.7656321449314 

 At row:0, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:0, column:14,the value of plot_t1 is           : -1.0
 At row:0, column:14,the value of plot_cost is         : 103.4061174140624 

 At row:0, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:0, column:15,the value of plot_t1 is           : -1.0
 At row:0, column:15,the value of plot_cost is         : 103.04741074359595 

 At row:0, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:0, column:16,the value of plot_t1 is           : -1.0
 At row:0, column:16,the value of plot_cost is         : 102.68951213353198 

 At row:0, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:0, column:17,the value of plot_t1 is           : -1.0
 At row:0, column:17,the value of plot_cost is         : 102.33242158387051 

 At row:0, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:0, column:18,the value of plot_t1 is           : -1.0
 At row:0, column:18,the value of plot_cost is         : 101.9761390946116 

 At row:0, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:0, column:19,the value of plot_t1 is           : -1.0
 At row:0, column:19,the value of plot_cost is         : 101.62066466575519 

 At row:0, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:0, column:20,the value of plot_t1 is           : -1.0
 At row:0, column:20,the value of plot_cost is         : 101.2659982973013 

 At row:0, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:0, column:21,the value of plot_t1 is           : -1.0
 At row:0, column:21,the value of plot_cost is         : 100.91213998924991 

 At row:0, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:0, column:22,the value of plot_t1 is           : -1.0
 At row:0, column:22,the value of plot_cost is         : 100.55908974160104 

 At row:0, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:0, column:23,the value of plot_t1 is           : -1.0
 At row:0, column:23,the value of plot_cost is         : 100.2068475543547 

 At row:0, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:0, column:24,the value of plot_t1 is           : -1.0
 At row:0, column:24,the value of plot_cost is         : 99.85541342751084 

 At row:0, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:0, column:25,the value of plot_t1 is           : -1.0
 At row:0, column:25,the value of plot_cost is         : 99.50478736106952 

 At row:0, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:0, column:26,the value of plot_t1 is           : -1.0
 At row:0, column:26,the value of plot_cost is         : 99.15496935503072 

 At row:0, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:0, column:27,the value of plot_t1 is           : -1.0
 At row:0, column:27,the value of plot_cost is         : 98.80595940939442 

 At row:0, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:0, column:28,the value of plot_t1 is           : -1.0
 At row:0, column:28,the value of plot_cost is         : 98.45775752416063 

 At row:0, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:0, column:29,the value of plot_t1 is           : -1.0
 At row:0, column:29,the value of plot_cost is         : 98.11036369932938 

 At row:0, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:0, column:30,the value of plot_t1 is           : -1.0
 At row:0, column:30,the value of plot_cost is         : 97.76377793490065 

 At row:0, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:0, column:31,the value of plot_t1 is           : -1.0
 At row:0, column:31,the value of plot_cost is         : 97.41800023087438 

 At row:0, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:0, column:32,the value of plot_t1 is           : -1.0
 At row:0, column:32,the value of plot_cost is         : 97.07303058725067 

 At row:0, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:0, column:33,the value of plot_t1 is           : -1.0
 At row:0, column:33,the value of plot_cost is         : 96.72886900402948 

 At row:0, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:0, column:34,the value of plot_t1 is           : -1.0
 At row:0, column:34,the value of plot_cost is         : 96.38551548121077 

 At row:0, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:0, column:35,the value of plot_t1 is           : -1.0
 At row:0, column:35,the value of plot_cost is         : 96.0429700187946 

 At row:0, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:0, column:36,the value of plot_t1 is           : -1.0
 At row:0, column:36,the value of plot_cost is         : 95.70123261678096 

 At row:0, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:0, column:37,the value of plot_t1 is           : -1.0
 At row:0, column:37,the value of plot_cost is         : 95.3603032751698 

 At row:0, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:0, column:38,the value of plot_t1 is           : -1.0
 At row:0, column:38,the value of plot_cost is         : 95.02018199396117 

 At row:0, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:0, column:39,the value of plot_t1 is           : -1.0
 At row:0, column:39,the value of plot_cost is         : 94.68086877315507 

 At row:0, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:0, column:40,the value of plot_t1 is           : -1.0
 At row:0, column:40,the value of plot_cost is         : 94.34236361275148 

 At row:0, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:0, column:41,the value of plot_t1 is           : -1.0
 At row:0, column:41,the value of plot_cost is         : 94.00466651275039 

 At row:0, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:0, column:42,the value of plot_t1 is           : -1.0
 At row:0, column:42,the value of plot_cost is         : 93.66777747315183 

 At row:0, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:0, column:43,the value of plot_t1 is           : -1.0
 At row:0, column:43,the value of plot_cost is         : 93.33169649395579 

 At row:0, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:0, column:44,the value of plot_t1 is           : -1.0
 At row:0, column:44,the value of plot_cost is         : 92.99642357516223 

 At row:0, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:0, column:45,the value of plot_t1 is           : -1.0
 At row:0, column:45,the value of plot_cost is         : 92.66195871677121 

 At row:0, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:0, column:46,the value of plot_t1 is           : -1.0
 At row:0, column:46,the value of plot_cost is         : 92.32830191878271 

 At row:0, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:0, column:47,the value of plot_t1 is           : -1.0
 At row:0, column:47,the value of plot_cost is         : 91.99545318119671 

 At row:0, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:0, column:48,the value of plot_t1 is           : -1.0
 At row:0, column:48,the value of plot_cost is         : 91.66341250401324 

 At row:0, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:0, column:49,the value of plot_t1 is           : -1.0
 At row:0, column:49,the value of plot_cost is         : 91.33217988723227 

 At row:0, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:0, column:50,the value of plot_t1 is           : -1.0
 At row:0, column:50,the value of plot_cost is         : 91.00175533085384 

 At row:0, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:0, column:51,the value of plot_t1 is           : -1.0
 At row:0, column:51,the value of plot_cost is         : 90.6721388348779 

 At row:0, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:0, column:52,the value of plot_t1 is           : -1.0
 At row:0, column:52,the value of plot_cost is         : 90.34333039930448 

 At row:0, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:0, column:53,the value of plot_t1 is           : -1.0
 At row:0, column:53,the value of plot_cost is         : 90.01533002413358 

 At row:0, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:0, column:54,the value of plot_t1 is           : -1.0
 At row:0, column:54,the value of plot_cost is         : 89.6881377093652 

 At row:0, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:0, column:55,the value of plot_t1 is           : -1.0
 At row:0, column:55,the value of plot_cost is         : 89.36175345499932 

 At row:0, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:0, column:56,the value of plot_t1 is           : -1.0
 At row:0, column:56,the value of plot_cost is         : 89.03617726103597 

 At row:0, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:0, column:57,the value of plot_t1 is           : -1.0
 At row:0, column:57,the value of plot_cost is         : 88.71140912747512 

 At row:0, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:0, column:58,the value of plot_t1 is           : -1.0
 At row:0, column:58,the value of plot_cost is         : 88.3874490543168 

 At row:0, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:0, column:59,the value of plot_t1 is           : -1.0
 At row:0, column:59,the value of plot_cost is         : 88.06429704156099 

 At row:0, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:0, column:60,the value of plot_t1 is           : -1.0
 At row:0, column:60,the value of plot_cost is         : 87.7419530892077 

 At row:0, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:0, column:61,the value of plot_t1 is           : -1.0
 At row:0, column:61,the value of plot_cost is         : 87.42041719725692 

 At row:0, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:0, column:62,the value of plot_t1 is           : -1.0
 At row:0, column:62,the value of plot_cost is         : 87.09968936570866 

 At row:0, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:0, column:63,the value of plot_t1 is           : -1.0
 At row:0, column:63,the value of plot_cost is         : 86.77976959456292 

 At row:0, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:0, column:64,the value of plot_t1 is           : -1.0
 At row:0, column:64,the value of plot_cost is         : 86.46065788381966 

 At row:0, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:0, column:65,the value of plot_t1 is           : -1.0
 At row:0, column:65,the value of plot_cost is         : 86.14235423347895 

 At row:0, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:0, column:66,the value of plot_t1 is           : -1.0
 At row:0, column:66,the value of plot_cost is         : 85.82485864354074 

 At row:0, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:0, column:67,the value of plot_t1 is           : -1.0
 At row:0, column:67,the value of plot_cost is         : 85.50817111400504 

 At row:0, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:0, column:68,the value of plot_t1 is           : -1.0
 At row:0, column:68,the value of plot_cost is         : 85.19229164487187 

 At row:0, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:0, column:69,the value of plot_t1 is           : -1.0
 At row:0, column:69,the value of plot_cost is         : 84.87722023614121 

 At row:0, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:0, column:70,the value of plot_t1 is           : -1.0
 At row:0, column:70,the value of plot_cost is         : 84.56295688781307 

 At row:0, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:0, column:71,the value of plot_t1 is           : -1.0
 At row:0, column:71,the value of plot_cost is         : 84.24950159988744 

 At row:0, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:0, column:72,the value of plot_t1 is           : -1.0
 At row:0, column:72,the value of plot_cost is         : 83.93685437236434 

 At row:0, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:0, column:73,the value of plot_t1 is           : -1.0
 At row:0, column:73,the value of plot_cost is         : 83.62501520524373 

 At row:0, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:0, column:74,the value of plot_t1 is           : -1.0
 At row:0, column:74,the value of plot_cost is         : 83.31398409852564 

 At row:0, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:0, column:75,the value of plot_t1 is           : -1.0
 At row:0, column:75,the value of plot_cost is         : 83.00376105221007 

 At row:0, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:0, column:76,the value of plot_t1 is           : -1.0
 At row:0, column:76,the value of plot_cost is         : 82.69434606629703 

 At row:0, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:0, column:77,the value of plot_t1 is           : -1.0
 At row:0, column:77,the value of plot_cost is         : 82.38573914078647 

 At row:0, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:0, column:78,the value of plot_t1 is           : -1.0
 At row:0, column:78,the value of plot_cost is         : 82.07794027567846 

 At row:0, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:0, column:79,the value of plot_t1 is           : -1.0
 At row:0, column:79,the value of plot_cost is         : 81.77094947097295 

 At row:0, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:0, column:80,the value of plot_t1 is           : -1.0
 At row:0, column:80,the value of plot_cost is         : 81.46476672666996 

 At row:0, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:0, column:81,the value of plot_t1 is           : -1.0
 At row:0, column:81,the value of plot_cost is         : 81.15939204276948 

 At row:0, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:0, column:82,the value of plot_t1 is           : -1.0
 At row:0, column:82,the value of plot_cost is         : 80.85482541927152 

 At row:0, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:0, column:83,the value of plot_t1 is           : -1.0
 At row:0, column:83,the value of plot_cost is         : 80.55106685617606 

 At row:0, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:0, column:84,the value of plot_t1 is           : -1.0
 At row:0, column:84,the value of plot_cost is         : 80.24811635348311 

 At row:0, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:0, column:85,the value of plot_t1 is           : -1.0
 At row:0, column:85,the value of plot_cost is         : 79.94597391119271 

 At row:0, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:0, column:86,the value of plot_t1 is           : -1.0
 At row:0, column:86,the value of plot_cost is         : 79.64463952930481 

 At row:0, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:0, column:87,the value of plot_t1 is           : -1.0
 At row:0, column:87,the value of plot_cost is         : 79.34411320781942 

 At row:0, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:0, column:88,the value of plot_t1 is           : -1.0
 At row:0, column:88,the value of plot_cost is         : 79.04439494673653 

 At row:0, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:0, column:89,the value of plot_t1 is           : -1.0
 At row:0, column:89,the value of plot_cost is         : 78.74548474605619 

 At row:0, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:0, column:90,the value of plot_t1 is           : -1.0
 At row:0, column:90,the value of plot_cost is         : 78.44738260577836 

 At row:0, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:0, column:91,the value of plot_t1 is           : -1.0
 At row:0, column:91,the value of plot_cost is         : 78.15008852590303 

 At row:0, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:0, column:92,the value of plot_t1 is           : -1.0
 At row:0, column:92,the value of plot_cost is         : 77.8536025064302 

 At row:0, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:0, column:93,the value of plot_t1 is           : -1.0
 At row:0, column:93,the value of plot_cost is         : 77.55792454735992 

 At row:0, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:0, column:94,the value of plot_t1 is           : -1.0
 At row:0, column:94,the value of plot_cost is         : 77.26305464869212 

 At row:0, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:0, column:95,the value of plot_t1 is           : -1.0
 At row:0, column:95,the value of plot_cost is         : 76.96899281042685 

 At row:0, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:0, column:96,the value of plot_t1 is           : -1.0
 At row:0, column:96,the value of plot_cost is         : 76.67573903256412 

 At row:0, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:0, column:97,the value of plot_t1 is           : -1.0
 At row:0, column:97,the value of plot_cost is         : 76.38329331510386 

 At row:0, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:0, column:98,the value of plot_t1 is           : -1.0
 At row:0, column:98,the value of plot_cost is         : 76.09165565804614 

 At row:0, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:0, column:99,the value of plot_t1 is           : -1.0
 At row:0, column:99,the value of plot_cost is         : 75.80082606139094 

 At row:0, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:0, column:100,the value of plot_t1 is           : -1.0
 At row:0, column:100,the value of plot_cost is         : 75.51080452513825 

 At row:0, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:0, column:101,the value of plot_t1 is           : -1.0
 At row:0, column:101,the value of plot_cost is         : 75.22159104928807 

 At row:0, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:0, column:102,the value of plot_t1 is           : -1.0
 At row:0, column:102,the value of plot_cost is         : 74.93318563384041 

 At row:0, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:0, column:103,the value of plot_t1 is           : -1.0
 At row:0, column:103,the value of plot_cost is         : 74.64558827879526 

 At row:0, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:0, column:104,the value of plot_t1 is           : -1.0
 At row:0, column:104,the value of plot_cost is         : 74.35879898415261 

 At row:0, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:0, column:105,the value of plot_t1 is           : -1.0
 At row:0, column:105,the value of plot_cost is         : 74.0728177499125 

 At row:0, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:0, column:106,the value of plot_t1 is           : -1.0
 At row:0, column:106,the value of plot_cost is         : 73.78764457607491 

 At row:0, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:0, column:107,the value of plot_t1 is           : -1.0
 At row:0, column:107,the value of plot_cost is         : 73.50327946263984 

 At row:0, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:0, column:108,the value of plot_t1 is           : -1.0
 At row:0, column:108,the value of plot_cost is         : 73.21972240960726 

 At row:0, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:0, column:109,the value of plot_t1 is           : -1.0
 At row:0, column:109,the value of plot_cost is         : 72.9369734169772 

 At row:0, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:0, column:110,the value of plot_t1 is           : -1.0
 At row:0, column:110,the value of plot_cost is         : 72.65503248474965 

 At row:0, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:0, column:111,the value of plot_t1 is           : -1.0
 At row:0, column:111,the value of plot_cost is         : 72.37389961292463 

 At row:0, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:0, column:112,the value of plot_t1 is           : -1.0
 At row:0, column:112,the value of plot_cost is         : 72.09357480150213 

 At row:0, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:0, column:113,the value of plot_t1 is           : -1.0
 At row:0, column:113,the value of plot_cost is         : 71.81405805048212 

 At row:0, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:0, column:114,the value of plot_t1 is           : -1.0
 At row:0, column:114,the value of plot_cost is         : 71.53534935986464 

 At row:0, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:0, column:115,the value of plot_t1 is           : -1.0
 At row:0, column:115,the value of plot_cost is         : 71.25744872964968 

 At row:0, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:0, column:116,the value of plot_t1 is           : -1.0
 At row:0, column:116,the value of plot_cost is         : 70.98035615983723 

 At row:0, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:0, column:117,the value of plot_t1 is           : -1.0
 At row:0, column:117,the value of plot_cost is         : 70.7040716504273 

 At row:0, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:0, column:118,the value of plot_t1 is           : -1.0
 At row:0, column:118,the value of plot_cost is         : 70.42859520141987 

 At row:0, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:0, column:119,the value of plot_t1 is           : -1.0
 At row:0, column:119,the value of plot_cost is         : 70.15392681281497 

 At row:0, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:0, column:120,the value of plot_t1 is           : -1.0
 At row:0, column:120,the value of plot_cost is         : 69.88006648461258 

 At row:0, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:0, column:121,the value of plot_t1 is           : -1.0
 At row:0, column:121,the value of plot_cost is         : 69.60701421681271 

 At row:0, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:0, column:122,the value of plot_t1 is           : -1.0
 At row:0, column:122,the value of plot_cost is         : 69.33477000941535 

 At row:0, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:0, column:123,the value of plot_t1 is           : -1.0
 At row:0, column:123,the value of plot_cost is         : 69.06333386242049 

 At row:0, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:0, column:124,the value of plot_t1 is           : -1.0
 At row:0, column:124,the value of plot_cost is         : 68.79270577582817 

 At row:0, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:0, column:125,the value of plot_t1 is           : -1.0
 At row:0, column:125,the value of plot_cost is         : 68.52288574963835 

 At row:0, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:0, column:126,the value of plot_t1 is           : -1.0
 At row:0, column:126,the value of plot_cost is         : 68.25387378385106 

 At row:0, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:0, column:127,the value of plot_t1 is           : -1.0
 At row:0, column:127,the value of plot_cost is         : 67.98566987846625 

 At row:0, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:0, column:128,the value of plot_t1 is           : -1.0
 At row:0, column:128,the value of plot_cost is         : 67.71827403348401 

 At row:0, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:0, column:129,the value of plot_t1 is           : -1.0
 At row:0, column:129,the value of plot_cost is         : 67.45168624890425 

 At row:0, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:0, column:130,the value of plot_t1 is           : -1.0
 At row:0, column:130,the value of plot_cost is         : 67.185906524727 

 At row:0, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:0, column:131,the value of plot_t1 is           : -1.0
 At row:0, column:131,the value of plot_cost is         : 66.92093486095227 

 At row:0, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:0, column:132,the value of plot_t1 is           : -1.0
 At row:0, column:132,the value of plot_cost is         : 66.65677125758008 

 At row:0, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:0, column:133,the value of plot_t1 is           : -1.0
 At row:0, column:133,the value of plot_cost is         : 66.39341571461038 

 At row:0, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:0, column:134,the value of plot_t1 is           : -1.0
 At row:0, column:134,the value of plot_cost is         : 66.1308682320432 

 At row:0, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:0, column:135,the value of plot_t1 is           : -1.0
 At row:0, column:135,the value of plot_cost is         : 65.86912880987853 

 At row:0, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:0, column:136,the value of plot_t1 is           : -1.0
 At row:0, column:136,the value of plot_cost is         : 65.60819744811639 

 At row:0, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:0, column:137,the value of plot_t1 is           : -1.0
 At row:0, column:137,the value of plot_cost is         : 65.34807414675674 

 At row:0, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:0, column:138,the value of plot_t1 is           : -1.0
 At row:0, column:138,the value of plot_cost is         : 65.08875890579964 

 At row:0, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:0, column:139,the value of plot_t1 is           : -1.0
 At row:0, column:139,the value of plot_cost is         : 64.83025172524503 

 At row:0, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:0, column:140,the value of plot_t1 is           : -1.0
 At row:0, column:140,the value of plot_cost is         : 64.57255260509294 

 At row:0, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:0, column:141,the value of plot_t1 is           : -1.0
 At row:0, column:141,the value of plot_cost is         : 64.31566154534336 

 At row:0, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:0, column:142,the value of plot_t1 is           : -1.0
 At row:0, column:142,the value of plot_cost is         : 64.0595785459963 

 At row:0, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:0, column:143,the value of plot_t1 is           : -1.0
 At row:0, column:143,the value of plot_cost is         : 63.80430360705176 

 At row:0, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:0, column:144,the value of plot_t1 is           : -1.0
 At row:0, column:144,the value of plot_cost is         : 63.54983672850973 

 At row:0, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:0, column:145,the value of plot_t1 is           : -1.0
 At row:0, column:145,the value of plot_cost is         : 63.296177910370226 

 At row:0, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:0, column:146,the value of plot_t1 is           : -1.0
 At row:0, column:146,the value of plot_cost is         : 63.043327152633225 

 At row:0, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:0, column:147,the value of plot_t1 is           : -1.0
 At row:0, column:147,the value of plot_cost is         : 62.79128445529873 

 At row:0, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:0, column:148,the value of plot_t1 is           : -1.0
 At row:0, column:148,the value of plot_cost is         : 62.540049818366775 

 At row:0, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:0, column:149,the value of plot_t1 is           : -1.0
 At row:0, column:149,the value of plot_cost is         : 62.289623241837326 

 At row:0, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:0, column:150,the value of plot_t1 is           : -1.0
 At row:0, column:150,the value of plot_cost is         : 62.040004725710375 

 At row:0, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:0, column:151,the value of plot_t1 is           : -1.0
 At row:0, column:151,the value of plot_cost is         : 61.79119426998597 

 At row:0, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:0, column:152,the value of plot_t1 is           : -1.0
 At row:0, column:152,the value of plot_cost is         : 61.54319187466406 

 At row:0, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:0, column:153,the value of plot_t1 is           : -1.0
 At row:0, column:153,the value of plot_cost is         : 61.295997539744654 

 At row:0, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:0, column:154,the value of plot_t1 is           : -1.0
 At row:0, column:154,the value of plot_cost is         : 61.04961126522778 

 At row:0, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:0, column:155,the value of plot_t1 is           : -1.0
 At row:0, column:155,the value of plot_cost is         : 60.80403305111341 

 At row:0, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:0, column:156,the value of plot_t1 is           : -1.0
 At row:0, column:156,the value of plot_cost is         : 60.55926289740157 

 At row:0, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:0, column:157,the value of plot_t1 is           : -1.0
 At row:0, column:157,the value of plot_cost is         : 60.31530080409224 

 At row:0, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:0, column:158,the value of plot_t1 is           : -1.0
 At row:0, column:158,the value of plot_cost is         : 60.072146771185416 

 At row:0, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:0, column:159,the value of plot_t1 is           : -1.0
 At row:0, column:159,the value of plot_cost is         : 59.82980079868113 

 At row:0, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:0, column:160,the value of plot_t1 is           : -1.0
 At row:0, column:160,the value of plot_cost is         : 59.58826288657933 

 At row:0, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:0, column:161,the value of plot_t1 is           : -1.0
 At row:0, column:161,the value of plot_cost is         : 59.347533034880065 

 At row:0, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:0, column:162,the value of plot_t1 is           : -1.0
 At row:0, column:162,the value of plot_cost is         : 59.10761124358331 

 At row:0, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:0, column:163,the value of plot_t1 is           : -1.0
 At row:0, column:163,the value of plot_cost is         : 58.86849751268906 

 At row:0, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:0, column:164,the value of plot_t1 is           : -1.0
 At row:0, column:164,the value of plot_cost is         : 58.630191842197334 

 At row:0, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:0, column:165,the value of plot_t1 is           : -1.0
 At row:0, column:165,the value of plot_cost is         : 58.392694232108134 

 At row:0, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:0, column:166,the value of plot_t1 is           : -1.0
 At row:0, column:166,the value of plot_cost is         : 58.156004682421425 

 At row:0, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:0, column:167,the value of plot_t1 is           : -1.0
 At row:0, column:167,the value of plot_cost is         : 57.92012319313724 

 At row:0, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:0, column:168,the value of plot_t1 is           : -1.0
 At row:0, column:168,the value of plot_cost is         : 57.68504976425559 

 At row:0, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:0, column:169,the value of plot_t1 is           : -1.0
 At row:0, column:169,the value of plot_cost is         : 57.45078439577644 

 At row:0, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:0, column:170,the value of plot_t1 is           : -1.0
 At row:0, column:170,the value of plot_cost is         : 57.2173270876998 

 At row:0, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:0, column:171,the value of plot_t1 is           : -1.0
 At row:0, column:171,the value of plot_cost is         : 56.984677840025675 

 At row:0, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:0, column:172,the value of plot_t1 is           : -1.0
 At row:0, column:172,the value of plot_cost is         : 56.75283665275408 

 At row:0, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:0, column:173,the value of plot_t1 is           : -1.0
 At row:0, column:173,the value of plot_cost is         : 56.52180352588498 

 At row:0, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:0, column:174,the value of plot_t1 is           : -1.0
 At row:0, column:174,the value of plot_cost is         : 56.2915784594184 

 At row:0, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:0, column:175,the value of plot_t1 is           : -1.0
 At row:0, column:175,the value of plot_cost is         : 56.062161453354356 

 At row:0, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:0, column:176,the value of plot_t1 is           : -1.0
 At row:0, column:176,the value of plot_cost is         : 55.8335525076928 

 At row:0, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:0, column:177,the value of plot_t1 is           : -1.0
 At row:0, column:177,the value of plot_cost is         : 55.605751622433765 

 At row:0, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:0, column:178,the value of plot_t1 is           : -1.0
 At row:0, column:178,the value of plot_cost is         : 55.378758797577255 

 At row:0, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:0, column:179,the value of plot_t1 is           : -1.0
 At row:0, column:179,the value of plot_cost is         : 55.15257403312326 

 At row:0, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:0, column:180,the value of plot_t1 is           : -1.0
 At row:0, column:180,the value of plot_cost is         : 54.927197329071774 

 At row:0, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:0, column:181,the value of plot_t1 is           : -1.0
 At row:0, column:181,the value of plot_cost is         : 54.7026286854228 

 At row:0, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:0, column:182,the value of plot_t1 is           : -1.0
 At row:0, column:182,the value of plot_cost is         : 54.47886810217635 

 At row:0, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:0, column:183,the value of plot_t1 is           : -1.0
 At row:0, column:183,the value of plot_cost is         : 54.25591557933241 

 At row:0, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:0, column:184,the value of plot_t1 is           : -1.0
 At row:0, column:184,the value of plot_cost is         : 54.033771116890975 

 At row:0, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:0, column:185,the value of plot_t1 is           : -1.0
 At row:0, column:185,the value of plot_cost is         : 53.81243471485207 

 At row:0, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:0, column:186,the value of plot_t1 is           : -1.0
 At row:0, column:186,the value of plot_cost is         : 53.59190637321567 

 At row:0, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:0, column:187,the value of plot_t1 is           : -1.0
 At row:0, column:187,the value of plot_cost is         : 53.3721860919818 

 At row:0, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:0, column:188,the value of plot_t1 is           : -1.0
 At row:0, column:188,the value of plot_cost is         : 53.15327387115043 

 At row:0, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:0, column:189,the value of plot_t1 is           : -1.0
 At row:0, column:189,the value of plot_cost is         : 52.93516971072158 

 At row:0, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:0, column:190,the value of plot_t1 is           : -1.0
 At row:0, column:190,the value of plot_cost is         : 52.71787361069525 

 At row:0, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:0, column:191,the value of plot_t1 is           : -1.0
 At row:0, column:191,the value of plot_cost is         : 52.50138557107143 

 At row:0, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:0, column:192,the value of plot_t1 is           : -1.0
 At row:0, column:192,the value of plot_cost is         : 52.28570559185013 

 At row:0, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:0, column:193,the value of plot_t1 is           : -1.0
 At row:0, column:193,the value of plot_cost is         : 52.07083367303133 

 At row:0, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:0, column:194,the value of plot_t1 is           : -1.0
 At row:0, column:194,the value of plot_cost is         : 51.85676981461506 

 At row:0, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:0, column:195,the value of plot_t1 is           : -1.0
 At row:0, column:195,the value of plot_cost is         : 51.64351401660131 

 At row:0, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:0, column:196,the value of plot_t1 is           : -1.0
 At row:0, column:196,the value of plot_cost is         : 51.431066278990066 

 At row:0, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:0, column:197,the value of plot_t1 is           : -1.0
 At row:0, column:197,the value of plot_cost is         : 51.21942660178133 

 At row:0, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:0, column:198,the value of plot_t1 is           : -1.0
 At row:0, column:198,the value of plot_cost is         : 51.00859498497512 

 At row:0, column:199,the value of plot_t0 is           : 3.0
 At row:0, column:199,the value of plot_t1 is           : -1.0
 At row:0, column:199,the value of plot_cost is         : 50.79857142857143 

 At row:1, column:0,the value of plot_t0 is           : -1.0
 At row:1, column:0,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:0,the value of plot_cost is         : 106.88158924558181 

 At row:1, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:1, column:1,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:1,the value of plot_cost is         : 106.51424787252849 

 At row:1, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:1, column:2,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:2,the value of plot_cost is         : 106.14771455987763 

 At row:1, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:1, column:3,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:3,the value of plot_cost is         : 105.78198930762932 

 At row:1, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:1, column:4,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:4,the value of plot_cost is         : 105.4170721157835 

 At row:1, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:1, column:5,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:5,the value of plot_cost is         : 105.05296298434023 

 At row:1, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:1, column:6,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:6,the value of plot_cost is         : 104.68966191329943 

 At row:1, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:1, column:7,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:7,the value of plot_cost is         : 104.32716890266117 

 At row:1, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:1, column:8,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:8,the value of plot_cost is         : 103.96548395242544 

 At row:1, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:1, column:9,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:9,the value of plot_cost is         : 103.60460706259221 

 At row:1, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:1, column:10,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:10,the value of plot_cost is         : 103.24453823316148 

 At row:1, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:1, column:11,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:11,the value of plot_cost is         : 102.88527746413328 

 At row:1, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:1, column:12,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:12,the value of plot_cost is         : 102.52682475550762 

 At row:1, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:1, column:13,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:13,the value of plot_cost is         : 102.16918010728445 

 At row:1, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:1, column:14,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:14,the value of plot_cost is         : 101.81234351946378 

 At row:1, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:1, column:15,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:15,the value of plot_cost is         : 101.45631499204565 

 At row:1, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:1, column:16,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:16,the value of plot_cost is         : 101.10109452503004 

 At row:1, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:1, column:17,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:17,the value of plot_cost is         : 100.74668211841691 

 At row:1, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:1, column:18,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:18,the value of plot_cost is         : 100.39307777220633 

 At row:1, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:1, column:19,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:19,the value of plot_cost is         : 100.04028148639824 

 At row:1, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:1, column:20,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:20,the value of plot_cost is         : 99.68829326099268 

 At row:1, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:1, column:21,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:21,the value of plot_cost is         : 99.33711309598964 

 At row:1, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:1, column:22,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:22,the value of plot_cost is         : 98.9867409913891 

 At row:1, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:1, column:23,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:23,the value of plot_cost is         : 98.6371769471911 

 At row:1, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:1, column:24,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:24,the value of plot_cost is         : 98.28842096339558 

 At row:1, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:1, column:25,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:25,the value of plot_cost is         : 97.94047304000259 

 At row:1, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:1, column:26,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:26,the value of plot_cost is         : 97.59333317701211 

 At row:1, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:1, column:27,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:27,the value of plot_cost is         : 97.24700137442416 

 At row:1, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:1, column:28,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:28,the value of plot_cost is         : 96.90147763223871 

 At row:1, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:1, column:29,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:29,the value of plot_cost is         : 96.5567619504558 

 At row:1, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:1, column:30,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:30,the value of plot_cost is         : 96.21285432907537 

 At row:1, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:1, column:31,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:31,the value of plot_cost is         : 95.8697547680975 

 At row:1, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:1, column:32,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:32,the value of plot_cost is         : 95.52746326752211 

 At row:1, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:1, column:33,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:33,the value of plot_cost is         : 95.18597982734924 

 At row:1, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:1, column:34,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:34,the value of plot_cost is         : 94.84530444757888 

 At row:1, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:1, column:35,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:35,the value of plot_cost is         : 94.50543712821104 

 At row:1, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:1, column:36,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:36,the value of plot_cost is         : 94.16637786924572 

 At row:1, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:1, column:37,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:37,the value of plot_cost is         : 93.8281266706829 

 At row:1, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:1, column:38,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:38,the value of plot_cost is         : 93.49068353252262 

 At row:1, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:1, column:39,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:39,the value of plot_cost is         : 93.15404845476485 

 At row:1, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:1, column:40,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:40,the value of plot_cost is         : 92.81822143740958 

 At row:1, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:1, column:41,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:41,the value of plot_cost is         : 92.48320248045685 

 At row:1, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:1, column:42,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:42,the value of plot_cost is         : 92.1489915839066 

 At row:1, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:1, column:43,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:43,the value of plot_cost is         : 91.8155887477589 

 At row:1, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:1, column:44,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:44,the value of plot_cost is         : 91.48299397201369 

 At row:1, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:1, column:45,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:45,the value of plot_cost is         : 91.15120725667101 

 At row:1, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:1, column:46,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:46,the value of plot_cost is         : 90.82022860173083 

 At row:1, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:1, column:47,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:47,the value of plot_cost is         : 90.49005800719318 

 At row:1, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:1, column:48,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:48,the value of plot_cost is         : 90.16069547305804 

 At row:1, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:1, column:49,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:49,the value of plot_cost is         : 89.8321409993254 

 At row:1, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:1, column:50,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:50,the value of plot_cost is         : 89.50439458599531 

 At row:1, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:1, column:51,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:51,the value of plot_cost is         : 89.1774562330677 

 At row:1, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:1, column:52,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:52,the value of plot_cost is         : 88.85132594054262 

 At row:1, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:1, column:53,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:53,the value of plot_cost is         : 88.52600370842006 

 At row:1, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:1, column:54,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:54,the value of plot_cost is         : 88.20148953670001 

 At row:1, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:1, column:55,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:55,the value of plot_cost is         : 87.87778342538248 

 At row:1, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:1, column:56,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:56,the value of plot_cost is         : 87.55488537446745 

 At row:1, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:1, column:57,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:57,the value of plot_cost is         : 87.23279538395494 

 At row:1, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:1, column:58,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:58,the value of plot_cost is         : 86.91151345384495 

 At row:1, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:1, column:59,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:59,the value of plot_cost is         : 86.59103958413748 

 At row:1, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:1, column:60,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:60,the value of plot_cost is         : 86.27137377483253 

 At row:1, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:1, column:61,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:61,the value of plot_cost is         : 85.95251602593008 

 At row:1, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:1, column:62,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:62,the value of plot_cost is         : 85.63446633743014 

 At row:1, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:1, column:63,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:63,the value of plot_cost is         : 85.31722470933273 

 At row:1, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:1, column:64,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:64,the value of plot_cost is         : 85.00079114163783 

 At row:1, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:1, column:65,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:65,the value of plot_cost is         : 84.68516563434547 

 At row:1, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:1, column:66,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:66,the value of plot_cost is         : 84.37034818745558 

 At row:1, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:1, column:67,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:67,the value of plot_cost is         : 84.05633880096822 

 At row:1, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:1, column:68,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:68,the value of plot_cost is         : 83.7431374748834 

 At row:1, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:1, column:69,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:69,the value of plot_cost is         : 83.43074420920107 

 At row:1, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:1, column:70,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:70,the value of plot_cost is         : 83.11915900392127 

 At row:1, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:1, column:71,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:71,the value of plot_cost is         : 82.80838185904396 

 At row:1, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:1, column:72,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:72,the value of plot_cost is         : 82.49841277456919 

 At row:1, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:1, column:73,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:73,the value of plot_cost is         : 82.18925175049692 

 At row:1, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:1, column:74,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:74,the value of plot_cost is         : 81.88089878682717 

 At row:1, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:1, column:75,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:75,the value of plot_cost is         : 81.57335388355993 

 At row:1, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:1, column:76,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:76,the value of plot_cost is         : 81.26661704069522 

 At row:1, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:1, column:77,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:77,the value of plot_cost is         : 80.960688258233 

 At row:1, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:1, column:78,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:78,the value of plot_cost is         : 80.65556753617332 

 At row:1, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:1, column:79,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:79,the value of plot_cost is         : 80.35125487451614 

 At row:1, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:1, column:80,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:80,the value of plot_cost is         : 80.0477502732615 

 At row:1, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:1, column:81,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:81,the value of plot_cost is         : 79.74505373240936 

 At row:1, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:1, column:82,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:82,the value of plot_cost is         : 79.44316525195973 

 At row:1, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:1, column:83,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:83,the value of plot_cost is         : 79.14208483191261 

 At row:1, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:1, column:84,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:84,the value of plot_cost is         : 78.841812472268 

 At row:1, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:1, column:85,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:85,the value of plot_cost is         : 78.54234817302591 

 At row:1, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:1, column:86,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:86,the value of plot_cost is         : 78.24369193418637 

 At row:1, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:1, column:87,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:87,the value of plot_cost is         : 77.94584375574931 

 At row:1, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:1, column:88,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:88,the value of plot_cost is         : 77.64880363771476 

 At row:1, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:1, column:89,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:89,the value of plot_cost is         : 77.35257158008274 

 At row:1, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:1, column:90,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:90,the value of plot_cost is         : 77.05714758285325 

 At row:1, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:1, column:91,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:91,the value of plot_cost is         : 76.76253164602625 

 At row:1, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:1, column:92,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:92,the value of plot_cost is         : 76.46872376960178 

 At row:1, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:1, column:93,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:93,the value of plot_cost is         : 76.1757239535798 

 At row:1, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:1, column:94,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:94,the value of plot_cost is         : 75.88353219796036 

 At row:1, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:1, column:95,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:95,the value of plot_cost is         : 75.59214850274343 

 At row:1, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:1, column:96,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:96,the value of plot_cost is         : 75.30157286792901 

 At row:1, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:1, column:97,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:97,the value of plot_cost is         : 75.01180529351711 

 At row:1, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:1, column:98,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:98,the value of plot_cost is         : 74.72284577950772 

 At row:1, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:1, column:99,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:99,the value of plot_cost is         : 74.43469432590086 

 At row:1, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:1, column:100,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:100,the value of plot_cost is         : 74.1473509326965 

 At row:1, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:1, column:101,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:101,the value of plot_cost is         : 73.86081559989466 

 At row:1, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:1, column:102,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:102,the value of plot_cost is         : 73.57508832749534 

 At row:1, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:1, column:103,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:103,the value of plot_cost is         : 73.29016911549853 

 At row:1, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:1, column:104,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:104,the value of plot_cost is         : 73.00605796390421 

 At row:1, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:1, column:105,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:105,the value of plot_cost is         : 72.72275487271246 

 At row:1, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:1, column:106,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:106,the value of plot_cost is         : 72.44025984192318 

 At row:1, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:1, column:107,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:107,the value of plot_cost is         : 72.15857287153644 

 At row:1, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:1, column:108,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:108,the value of plot_cost is         : 71.8776939615522 

 At row:1, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:1, column:109,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:109,the value of plot_cost is         : 71.59762311197046 

 At row:1, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:1, column:110,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:110,the value of plot_cost is         : 71.31836032279126 

 At row:1, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:1, column:111,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:111,the value of plot_cost is         : 71.03990559401457 

 At row:1, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:1, column:112,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:112,the value of plot_cost is         : 70.76225892564041 

 At row:1, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:1, column:113,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:113,the value of plot_cost is         : 70.48542031766874 

 At row:1, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:1, column:114,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:114,the value of plot_cost is         : 70.2093897700996 

 At row:1, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:1, column:115,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:115,the value of plot_cost is         : 69.93416728293296 

 At row:1, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:1, column:116,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:116,the value of plot_cost is         : 69.65975285616885 

 At row:1, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:1, column:117,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:117,the value of plot_cost is         : 69.38614648980725 

 At row:1, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:1, column:118,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:118,the value of plot_cost is         : 69.11334818384817 

 At row:1, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:1, column:119,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:119,the value of plot_cost is         : 68.84135793829161 

 At row:1, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:1, column:120,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:120,the value of plot_cost is         : 68.57017575313755 

 At row:1, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:1, column:121,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:121,the value of plot_cost is         : 68.29980162838602 

 At row:1, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:1, column:122,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:122,the value of plot_cost is         : 68.03023556403699 

 At row:1, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:1, column:123,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:123,the value of plot_cost is         : 67.76147756009047 

 At row:1, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:1, column:124,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:124,the value of plot_cost is         : 67.49352761654647 

 At row:1, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:1, column:125,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:125,the value of plot_cost is         : 67.226385733405 

 At row:1, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:1, column:126,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:126,the value of plot_cost is         : 66.96005191066604 

 At row:1, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:1, column:127,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:127,the value of plot_cost is         : 66.69452614832959 

 At row:1, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:1, column:128,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:128,the value of plot_cost is         : 66.42980844639565 

 At row:1, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:1, column:129,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:129,the value of plot_cost is         : 66.16589880486423 

 At row:1, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:1, column:130,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:130,the value of plot_cost is         : 65.90279722373533 

 At row:1, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:1, column:131,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:131,the value of plot_cost is         : 65.64050370300895 

 At row:1, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:1, column:132,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:132,the value of plot_cost is         : 65.37901824268506 

 At row:1, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:1, column:133,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:133,the value of plot_cost is         : 65.1183408427637 

 At row:1, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:1, column:134,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:134,the value of plot_cost is         : 64.85847150324486 

 At row:1, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:1, column:135,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:135,the value of plot_cost is         : 64.59941022412853 

 At row:1, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:1, column:136,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:136,the value of plot_cost is         : 64.34115700541473 

 At row:1, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:1, column:137,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:137,the value of plot_cost is         : 64.08371184710343 

 At row:1, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:1, column:138,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:138,the value of plot_cost is         : 63.82707474919464 

 At row:1, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:1, column:139,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:139,the value of plot_cost is         : 63.57124571168837 

 At row:1, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:1, column:140,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:140,the value of plot_cost is         : 63.31622473458462 

 At row:1, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:1, column:141,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:141,the value of plot_cost is         : 63.06201181788339 

 At row:1, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:1, column:142,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:142,the value of plot_cost is         : 62.808606961584665 

 At row:1, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:1, column:143,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:143,the value of plot_cost is         : 62.55601016568846 

 At row:1, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:1, column:144,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:144,the value of plot_cost is         : 62.30422143019476 

 At row:1, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:1, column:145,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:145,the value of plot_cost is         : 62.05324075510358 

 At row:1, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:1, column:146,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:146,the value of plot_cost is         : 61.80306814041493 

 At row:1, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:1, column:147,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:147,the value of plot_cost is         : 61.55370358612877 

 At row:1, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:1, column:148,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:148,the value of plot_cost is         : 61.30514709224514 

 At row:1, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:1, column:149,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:149,the value of plot_cost is         : 61.05739865876402 

 At row:1, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:1, column:150,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:150,the value of plot_cost is         : 60.81045828568543 

 At row:1, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:1, column:151,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:151,the value of plot_cost is         : 60.56432597300933 

 At row:1, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:1, column:152,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:152,the value of plot_cost is         : 60.31900172073577 

 At row:1, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:1, column:153,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:153,the value of plot_cost is         : 60.07448552886471 

 At row:1, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:1, column:154,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:154,the value of plot_cost is         : 59.83077739739617 

 At row:1, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:1, column:155,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:155,the value of plot_cost is         : 59.587877326330144 

 At row:1, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:1, column:156,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:156,the value of plot_cost is         : 59.345785315666625 

 At row:1, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:1, column:157,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:157,the value of plot_cost is         : 59.10450136540563 

 At row:1, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:1, column:158,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:158,the value of plot_cost is         : 58.864025475547145 

 At row:1, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:1, column:159,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:159,the value of plot_cost is         : 58.62435764609118 

 At row:1, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:1, column:160,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:160,the value of plot_cost is         : 58.385497877037736 

 At row:1, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:1, column:161,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:161,the value of plot_cost is         : 58.14744616838679 

 At row:1, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:1, column:162,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:162,the value of plot_cost is         : 57.91020252013837 

 At row:1, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:1, column:163,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:163,the value of plot_cost is         : 57.673766932292466 

 At row:1, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:1, column:164,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:164,the value of plot_cost is         : 57.43813940484908 

 At row:1, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:1, column:165,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:165,the value of plot_cost is         : 57.20331993780821 

 At row:1, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:1, column:166,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:166,the value of plot_cost is         : 56.96930853116984 

 At row:1, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:1, column:167,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:167,the value of plot_cost is         : 56.736105184934004 

 At row:1, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:1, column:168,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:168,the value of plot_cost is         : 56.50370989910067 

 At row:1, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:1, column:169,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:169,the value of plot_cost is         : 56.272122673669855 

 At row:1, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:1, column:170,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:170,the value of plot_cost is         : 56.04134350864156 

 At row:1, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:1, column:171,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:171,the value of plot_cost is         : 55.81137240401577 

 At row:1, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:1, column:172,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:172,the value of plot_cost is         : 55.5822093597925 

 At row:1, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:1, column:173,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:173,the value of plot_cost is         : 55.35385437597174 

 At row:1, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:1, column:174,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:174,the value of plot_cost is         : 55.1263074525535 

 At row:1, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:1, column:175,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:175,the value of plot_cost is         : 54.899568589537786 

 At row:1, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:1, column:176,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:176,the value of plot_cost is         : 54.673637786924566 

 At row:1, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:1, column:177,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:177,the value of plot_cost is         : 54.44851504471388 

 At row:1, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:1, column:178,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:178,the value of plot_cost is         : 54.22420036290569 

 At row:1, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:1, column:179,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:179,the value of plot_cost is         : 54.00069374150003 

 At row:1, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:1, column:180,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:180,the value of plot_cost is         : 53.77799518049689 

 At row:1, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:1, column:181,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:181,the value of plot_cost is         : 53.556104679896244 

 At row:1, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:1, column:182,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:182,the value of plot_cost is         : 53.33502223969813 

 At row:1, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:1, column:183,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:183,the value of plot_cost is         : 53.11474785990252 

 At row:1, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:1, column:184,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:184,the value of plot_cost is         : 52.89528154050944 

 At row:1, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:1, column:185,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:185,the value of plot_cost is         : 52.676623281518864 

 At row:1, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:1, column:186,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:186,the value of plot_cost is         : 52.45877308293081 

 At row:1, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:1, column:187,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:187,the value of plot_cost is         : 52.241730944745264 

 At row:1, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:1, column:188,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:188,the value of plot_cost is         : 52.02549686696223 

 At row:1, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:1, column:189,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:189,the value of plot_cost is         : 51.81007084958171 

 At row:1, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:1, column:190,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:190,the value of plot_cost is         : 51.59545289260372 

 At row:1, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:1, column:191,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:191,the value of plot_cost is         : 51.38164299602824 

 At row:1, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:1, column:192,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:192,the value of plot_cost is         : 51.16864115985528 

 At row:1, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:1, column:193,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:193,the value of plot_cost is         : 50.95644738408482 

 At row:1, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:1, column:194,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:194,the value of plot_cost is         : 50.74506166871687 

 At row:1, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:1, column:195,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:195,the value of plot_cost is         : 50.53448401375147 

 At row:1, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:1, column:196,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:196,the value of plot_cost is         : 50.324714419188545 

 At row:1, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:1, column:197,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:197,the value of plot_cost is         : 50.11575288502815 

 At row:1, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:1, column:198,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:198,the value of plot_cost is         : 49.907599411270276 

 At row:1, column:199,the value of plot_t0 is           : 3.0
 At row:1, column:199,the value of plot_t1 is           : -0.9798994974874372
 At row:1, column:199,the value of plot_cost is         : 49.70025399791491 

 At row:2, column:0,the value of plot_t0 is           : -1.0
 At row:2, column:0,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:0,the value of plot_cost is         : 105.26290400314566 

 At row:2, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:2, column:1,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:1,the value of plot_cost is         : 104.89824077314064 

 At row:2, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:2, column:2,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:2,the value of plot_cost is         : 104.53438560353814 

 At row:2, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:2, column:3,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:3,the value of plot_cost is         : 104.17133849433816 

 At row:2, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:2, column:4,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:4,the value of plot_cost is         : 103.80909944554068 

 At row:2, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:2, column:5,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:5,the value of plot_cost is         : 103.44766845714574 

 At row:2, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:2, column:6,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:6,the value of plot_cost is         : 103.08704552915329 

 At row:2, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:2, column:7,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:7,the value of plot_cost is         : 102.72723066156338 

 At row:2, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:2, column:8,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:8,the value of plot_cost is         : 102.36822385437597 

 At row:2, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:2, column:9,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:9,the value of plot_cost is         : 102.01002510759106 

 At row:2, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:2, column:10,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:10,the value of plot_cost is         : 101.65263442120869 

 At row:2, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:2, column:11,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:11,the value of plot_cost is         : 101.29605179522882 

 At row:2, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:2, column:12,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:12,the value of plot_cost is         : 100.94027722965149 

 At row:2, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:2, column:13,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:13,the value of plot_cost is         : 100.58531072447666 

 At row:2, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:2, column:14,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:14,the value of plot_cost is         : 100.23115227970432 

 At row:2, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:2, column:15,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:15,the value of plot_cost is         : 99.87780189533453 

 At row:2, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:2, column:16,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:16,the value of plot_cost is         : 99.52525957136723 

 At row:2, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:2, column:17,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:17,the value of plot_cost is         : 99.17352530780245 

 At row:2, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:2, column:18,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:18,the value of plot_cost is         : 98.8225991046402 

 At row:2, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:2, column:19,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:19,the value of plot_cost is         : 98.47248096188045 

 At row:2, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:2, column:20,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:20,the value of plot_cost is         : 98.12317087952324 

 At row:2, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:2, column:21,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:21,the value of plot_cost is         : 97.77466885756851 

 At row:2, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:2, column:22,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:22,the value of plot_cost is         : 97.42697489601633 

 At row:2, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:2, column:23,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:23,the value of plot_cost is         : 97.08008899486666 

 At row:2, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:2, column:24,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:24,the value of plot_cost is         : 96.73401115411949 

 At row:2, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:2, column:25,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:25,the value of plot_cost is         : 96.38874137377482 

 At row:2, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:2, column:26,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:26,the value of plot_cost is         : 96.04427965383269 

 At row:2, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:2, column:27,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:27,the value of plot_cost is         : 95.70062599429306 

 At row:2, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:2, column:28,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:28,the value of plot_cost is         : 95.35778039515597 

 At row:2, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:2, column:29,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:29,the value of plot_cost is         : 95.01574285642137 

 At row:2, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:2, column:30,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:30,the value of plot_cost is         : 94.67451337808929 

 At row:2, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:2, column:31,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:31,the value of plot_cost is         : 94.33409196015972 

 At row:2, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:2, column:32,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:32,the value of plot_cost is         : 93.99447860263268 

 At row:2, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:2, column:33,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:33,the value of plot_cost is         : 93.65567330550816 

 At row:2, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:2, column:34,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:34,the value of plot_cost is         : 93.31767606878614 

 At row:2, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:2, column:35,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:35,the value of plot_cost is         : 92.98048689246664 

 At row:2, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:2, column:36,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:36,the value of plot_cost is         : 92.64410577654965 

 At row:2, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:2, column:37,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:37,the value of plot_cost is         : 92.30853272103516 

 At row:2, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:2, column:38,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:38,the value of plot_cost is         : 91.97376772592322 

 At row:2, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:2, column:39,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:39,the value of plot_cost is         : 91.63981079121376 

 At row:2, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:2, column:40,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:40,the value of plot_cost is         : 91.30666191690685 

 At row:2, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:2, column:41,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:41,the value of plot_cost is         : 90.97432110300242 

 At row:2, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:2, column:42,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:42,the value of plot_cost is         : 90.64278834950055 

 At row:2, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:2, column:43,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:43,the value of plot_cost is         : 90.31206365640118 

 At row:2, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:2, column:44,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:44,the value of plot_cost is         : 89.98214702370431 

 At row:2, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:2, column:45,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:45,the value of plot_cost is         : 89.65303845140996 

 At row:2, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:2, column:46,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:46,the value of plot_cost is         : 89.3247379395181 

 At row:2, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:2, column:47,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:47,the value of plot_cost is         : 88.9972454880288 

 At row:2, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:2, column:48,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:48,the value of plot_cost is         : 88.670561096942 

 At row:2, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:2, column:49,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:49,the value of plot_cost is         : 88.34468476625769 

 At row:2, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:2, column:50,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:50,the value of plot_cost is         : 88.01961649597594 

 At row:2, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:2, column:51,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:51,the value of plot_cost is         : 87.69535628609667 

 At row:2, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:2, column:52,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:52,the value of plot_cost is         : 87.37190413661993 

 At row:2, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:2, column:53,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:53,the value of plot_cost is         : 87.0492600475457 

 At row:2, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:2, column:54,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:54,the value of plot_cost is         : 86.72742401887399 

 At row:2, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:2, column:55,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:55,the value of plot_cost is         : 86.40639605060478 

 At row:2, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:2, column:56,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:56,the value of plot_cost is         : 86.0861761427381 

 At row:2, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:2, column:57,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:57,the value of plot_cost is         : 85.76676429527393 

 At row:2, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:2, column:58,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:58,the value of plot_cost is         : 85.44816050821227 

 At row:2, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:2, column:59,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:59,the value of plot_cost is         : 85.13036478155313 

 At row:2, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:2, column:60,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:60,the value of plot_cost is         : 84.81337711529652 

 At row:2, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:2, column:61,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:61,the value of plot_cost is         : 84.49719750944239 

 At row:2, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:2, column:62,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:62,the value of plot_cost is         : 84.18182596399079 

 At row:2, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:2, column:63,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:63,the value of plot_cost is         : 83.86726247894174 

 At row:2, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:2, column:64,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:64,the value of plot_cost is         : 83.55350705429515 

 At row:2, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:2, column:65,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:65,the value of plot_cost is         : 83.24055969005111 

 At row:2, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:2, column:66,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:66,the value of plot_cost is         : 82.92842038620957 

 At row:2, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:2, column:67,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:67,the value of plot_cost is         : 82.61708914277055 

 At row:2, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:2, column:68,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:68,the value of plot_cost is         : 82.30656595973406 

 At row:2, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:2, column:69,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:69,the value of plot_cost is         : 81.99685083710007 

 At row:2, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:2, column:70,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:70,the value of plot_cost is         : 81.6879437748686 

 At row:2, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:2, column:71,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:71,the value of plot_cost is         : 81.37984477303964 

 At row:2, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:2, column:72,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:72,the value of plot_cost is         : 81.07255383161319 

 At row:2, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:2, column:73,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:73,the value of plot_cost is         : 80.76607095058927 

 At row:2, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:2, column:74,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:74,the value of plot_cost is         : 80.46039612996786 

 At row:2, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:2, column:75,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:75,the value of plot_cost is         : 80.15552936974895 

 At row:2, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:2, column:76,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:76,the value of plot_cost is         : 79.85147066993257 

 At row:2, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:2, column:77,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:77,the value of plot_cost is         : 79.5482200305187 

 At row:2, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:2, column:78,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:78,the value of plot_cost is         : 79.24577745150737 

 At row:2, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:2, column:79,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:79,the value of plot_cost is         : 78.9441429328985 

 At row:2, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:2, column:80,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:80,the value of plot_cost is         : 78.64331647469218 

 At row:2, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:2, column:81,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:81,the value of plot_cost is         : 78.34329807688839 

 At row:2, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:2, column:82,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:82,the value of plot_cost is         : 78.0440877394871 

 At row:2, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:2, column:83,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:83,the value of plot_cost is         : 77.74568546248831 

 At row:2, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:2, column:84,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:84,the value of plot_cost is         : 77.44809124589206 

 At row:2, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:2, column:85,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:85,the value of plot_cost is         : 77.15130508969831 

 At row:2, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:2, column:86,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:86,the value of plot_cost is         : 76.85532699390708 

 At row:2, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:2, column:87,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:87,the value of plot_cost is         : 76.56015695851835 

 At row:2, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:2, column:88,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:88,the value of plot_cost is         : 76.26579498353216 

 At row:2, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:2, column:89,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:89,the value of plot_cost is         : 75.97224106894846 

 At row:2, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:2, column:90,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:90,the value of plot_cost is         : 75.6794952147673 

 At row:2, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:2, column:91,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:91,the value of plot_cost is         : 75.38755742098864 

 At row:2, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:2, column:92,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:92,the value of plot_cost is         : 75.0964276876125 

 At row:2, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:2, column:93,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:93,the value of plot_cost is         : 74.80610601463887 

 At row:2, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:2, column:94,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:94,the value of plot_cost is         : 74.51659240206777 

 At row:2, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:2, column:95,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:95,the value of plot_cost is         : 74.22788684989918 

 At row:2, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:2, column:96,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:96,the value of plot_cost is         : 73.93998935813309 

 At row:2, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:2, column:97,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:97,the value of plot_cost is         : 73.65289992676952 

 At row:2, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:2, column:98,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:98,the value of plot_cost is         : 73.36661855580847 

 At row:2, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:2, column:99,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:99,the value of plot_cost is         : 73.08114524524993 

 At row:2, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:2, column:100,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:100,the value of plot_cost is         : 72.79647999509392 

 At row:2, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:2, column:101,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:101,the value of plot_cost is         : 72.5126228053404 

 At row:2, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:2, column:102,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:102,the value of plot_cost is         : 72.22957367598941 

 At row:2, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:2, column:103,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:103,the value of plot_cost is         : 71.94733260704095 

 At row:2, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:2, column:104,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:104,the value of plot_cost is         : 71.66589959849499 

 At row:2, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:2, column:105,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:105,the value of plot_cost is         : 71.38527465035155 

 At row:2, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:2, column:106,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:106,the value of plot_cost is         : 71.1054577626106 

 At row:2, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:2, column:107,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:107,the value of plot_cost is         : 70.8264489352722 

 At row:2, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:2, column:108,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:108,the value of plot_cost is         : 70.54824816833629 

 At row:2, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:2, column:109,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:109,the value of plot_cost is         : 70.27085546180291 

 At row:2, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:2, column:110,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:110,the value of plot_cost is         : 69.99427081567204 

 At row:2, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:2, column:111,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:111,the value of plot_cost is         : 69.71849422994369 

 At row:2, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:2, column:112,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:112,the value of plot_cost is         : 69.44352570461785 

 At row:2, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:2, column:113,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:113,the value of plot_cost is         : 69.16936523969451 

 At row:2, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:2, column:114,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:114,the value of plot_cost is         : 68.8960128351737 

 At row:2, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:2, column:115,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:115,the value of plot_cost is         : 68.6234684910554 

 At row:2, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:2, column:116,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:116,the value of plot_cost is         : 68.35173220733964 

 At row:2, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:2, column:117,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:117,the value of plot_cost is         : 68.08080398402637 

 At row:2, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:2, column:118,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:118,the value of plot_cost is         : 67.81068382111563 

 At row:2, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:2, column:119,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:119,the value of plot_cost is         : 67.54137171860738 

 At row:2, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:2, column:120,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:120,the value of plot_cost is         : 67.27286767650166 

 At row:2, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:2, column:121,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:121,the value of plot_cost is         : 67.00517169479846 

 At row:2, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:2, column:122,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:122,the value of plot_cost is         : 66.73828377349778 

 At row:2, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:2, column:123,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:123,the value of plot_cost is         : 66.47220391259961 

 At row:2, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:2, column:124,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:124,the value of plot_cost is         : 66.20693211210394 

 At row:2, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:2, column:125,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:125,the value of plot_cost is         : 65.94246837201081 

 At row:2, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:2, column:126,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:126,the value of plot_cost is         : 65.67881269232016 

 At row:2, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:2, column:127,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:127,the value of plot_cost is         : 65.41596507303205 

 At row:2, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:2, column:128,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:128,the value of plot_cost is         : 65.15392551414647 

 At row:2, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:2, column:129,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:129,the value of plot_cost is         : 64.89269401566338 

 At row:2, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:2, column:130,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:130,the value of plot_cost is         : 64.6322705775828 

 At row:2, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:2, column:131,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:131,the value of plot_cost is         : 64.37265519990477 

 At row:2, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:2, column:132,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:132,the value of plot_cost is         : 64.11384788262923 

 At row:2, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:2, column:133,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:133,the value of plot_cost is         : 63.85584862575621 

 At row:2, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:2, column:134,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:134,the value of plot_cost is         : 63.59865742928569 

 At row:2, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:2, column:135,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:135,the value of plot_cost is         : 63.34227429321769 

 At row:2, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:2, column:136,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:136,the value of plot_cost is         : 63.08669921755222 

 At row:2, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:2, column:137,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:137,the value of plot_cost is         : 62.83193220228926 

 At row:2, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:2, column:138,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:138,the value of plot_cost is         : 62.57797324742882 

 At row:2, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:2, column:139,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:139,the value of plot_cost is         : 62.32482235297088 

 At row:2, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:2, column:140,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:140,the value of plot_cost is         : 62.07247951891546 

 At row:2, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:2, column:141,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:141,the value of plot_cost is         : 61.820944745262565 

 At row:2, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:2, column:142,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:142,the value of plot_cost is         : 61.570218032012185 

 At row:2, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:2, column:143,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:143,the value of plot_cost is         : 61.320299379164304 

 At row:2, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:2, column:144,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:144,the value of plot_cost is         : 61.07118878671895 

 At row:2, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:2, column:145,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:145,the value of plot_cost is         : 60.8228862546761 

 At row:2, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:2, column:146,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:146,the value of plot_cost is         : 60.575391783035776 

 At row:2, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:2, column:147,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:147,the value of plot_cost is         : 60.328705371797966 

 At row:2, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:2, column:148,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:148,the value of plot_cost is         : 60.082827020962675 

 At row:2, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:2, column:149,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:149,the value of plot_cost is         : 59.83775673052988 

 At row:2, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:2, column:150,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:150,the value of plot_cost is         : 59.593494500499624 

 At row:2, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:2, column:151,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:151,the value of plot_cost is         : 59.35004033087186 

 At row:2, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:2, column:152,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:152,the value of plot_cost is         : 59.10739422164664 

 At row:2, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:2, column:153,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:153,the value of plot_cost is         : 58.86555617282392 

 At row:2, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:2, column:154,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:154,the value of plot_cost is         : 58.62452618440371 

 At row:2, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:2, column:155,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:155,the value of plot_cost is         : 58.38430425638601 

 At row:2, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:2, column:156,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:156,the value of plot_cost is         : 58.14489038877084 

 At row:2, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:2, column:157,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:157,the value of plot_cost is         : 57.90628458155818 

 At row:2, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:2, column:158,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:158,the value of plot_cost is         : 57.66848683474804 

 At row:2, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:2, column:159,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:159,the value of plot_cost is         : 57.431497148340405 

 At row:2, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:2, column:160,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:160,the value of plot_cost is         : 57.195315522335285 

 At row:2, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:2, column:161,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:161,the value of plot_cost is         : 56.95994195673269 

 At row:2, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:2, column:162,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:162,the value of plot_cost is         : 56.72537645153261 

 At row:2, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:2, column:163,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:163,the value of plot_cost is         : 56.491619006735036 

 At row:2, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:2, column:164,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:164,the value of plot_cost is         : 56.25866962233997 

 At row:2, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:2, column:165,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:165,the value of plot_cost is         : 56.02652829834743 

 At row:2, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:2, column:166,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:166,the value of plot_cost is         : 55.79519503475741 

 At row:2, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:2, column:167,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:167,the value of plot_cost is         : 55.5646698315699 

 At row:2, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:2, column:168,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:168,the value of plot_cost is         : 55.33495268878492 

 At row:2, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:2, column:169,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:169,the value of plot_cost is         : 55.10604360640243 

 At row:2, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:2, column:170,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:170,the value of plot_cost is         : 54.87794258442246 

 At row:2, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:2, column:171,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:171,the value of plot_cost is         : 54.65064962284501 

 At row:2, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:2, column:172,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:172,the value of plot_cost is         : 54.42416472167009 

 At row:2, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:2, column:173,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:173,the value of plot_cost is         : 54.198487880897666 

 At row:2, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:2, column:174,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:174,the value of plot_cost is         : 53.97361910052776 

 At row:2, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:2, column:175,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:175,the value of plot_cost is         : 53.749558380560366 

 At row:2, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:2, column:176,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:176,the value of plot_cost is         : 53.5263057209955 

 At row:2, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:2, column:177,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:177,the value of plot_cost is         : 53.30386112183314 

 At row:2, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:2, column:178,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:178,the value of plot_cost is         : 53.0822245830733 

 At row:2, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:2, column:179,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:179,the value of plot_cost is         : 52.861396104715965 

 At row:2, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:2, column:180,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:180,the value of plot_cost is         : 52.64137568676115 

 At row:2, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:2, column:181,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:181,the value of plot_cost is         : 52.42216332920886 

 At row:2, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:2, column:182,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:182,the value of plot_cost is         : 52.203759032059075 

 At row:2, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:2, column:183,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:183,the value of plot_cost is         : 51.9861627953118 

 At row:2, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:2, column:184,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:184,the value of plot_cost is         : 51.76937461896705 

 At row:2, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:2, column:185,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:185,the value of plot_cost is         : 51.553394503024805 

 At row:2, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:2, column:186,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:186,the value of plot_cost is         : 51.33822244748509 

 At row:2, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:2, column:187,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:187,the value of plot_cost is         : 51.12385845234788 

 At row:2, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:2, column:188,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:188,the value of plot_cost is         : 50.91030251761319 

 At row:2, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:2, column:189,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:189,the value of plot_cost is         : 50.69755464328101 

 At row:2, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:2, column:190,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:190,the value of plot_cost is         : 50.48561482935135 

 At row:2, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:2, column:191,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:191,the value of plot_cost is         : 50.27448307582419 

 At row:2, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:2, column:192,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:192,the value of plot_cost is         : 50.064159382699565 

 At row:2, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:2, column:193,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:193,the value of plot_cost is         : 49.854643749977456 

 At row:2, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:2, column:194,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:194,the value of plot_cost is         : 49.64593617765786 

 At row:2, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:2, column:195,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:195,the value of plot_cost is         : 49.43803666574076 

 At row:2, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:2, column:196,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:196,the value of plot_cost is         : 49.23094521422618 

 At row:2, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:2, column:197,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:197,the value of plot_cost is         : 49.02466182311413 

 At row:2, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:2, column:198,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:198,the value of plot_cost is         : 48.8191864924046 

 At row:2, column:199,the value of plot_t0 is           : 3.0
 At row:2, column:199,the value of plot_t1 is           : -0.9597989949748744
 At row:2, column:199,the value of plot_cost is         : 48.61451922209756 

 At row:3, column:0,the value of plot_t0 is           : -1.0
 At row:3, column:0,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:0,the value of plot_cost is         : 103.65680141554864 

 At row:3, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:3, column:1,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:1,the value of plot_cost is         : 103.29481632859199 

 At row:3, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:3, column:2,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:2,the value of plot_cost is         : 102.93363930203782 

 At row:3, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:3, column:3,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:3,the value of plot_cost is         : 102.57327033588618 

 At row:3, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:3, column:4,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:4,the value of plot_cost is         : 102.21370943013704 

 At row:3, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:3, column:5,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:5,the value of plot_cost is         : 101.85495658479041 

 At row:3, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:3, column:6,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:6,the value of plot_cost is         : 101.4970117998463 

 At row:3, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:3, column:7,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:7,the value of plot_cost is         : 101.13987507530472 

 At row:3, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:3, column:8,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:8,the value of plot_cost is         : 100.78354641116564 

 At row:3, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:3, column:9,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:9,the value of plot_cost is         : 100.4280258074291 

 At row:3, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:3, column:10,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:10,the value of plot_cost is         : 100.07331326409505 

 At row:3, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:3, column:11,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:11,the value of plot_cost is         : 99.71940878116352 

 At row:3, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:3, column:12,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:12,the value of plot_cost is         : 99.36631235863452 

 At row:3, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:3, column:13,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:13,the value of plot_cost is         : 99.01402399650802 

 At row:3, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:3, column:14,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:14,the value of plot_cost is         : 98.66254369478403 

 At row:3, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:3, column:15,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:15,the value of plot_cost is         : 98.31187145346257 

 At row:3, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:3, column:16,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:16,the value of plot_cost is         : 97.9620072725436 

 At row:3, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:3, column:17,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:17,the value of plot_cost is         : 97.61295115202716 

 At row:3, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:3, column:18,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:18,the value of plot_cost is         : 97.26470309191325 

 At row:3, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:3, column:19,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:19,the value of plot_cost is         : 96.91726309220184 

 At row:3, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:3, column:20,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:20,the value of plot_cost is         : 96.57063115289296 

 At row:3, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:3, column:21,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:21,the value of plot_cost is         : 96.22480727398658 

 At row:3, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:3, column:22,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:22,the value of plot_cost is         : 95.8797914554827 

 At row:3, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:3, column:23,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:23,the value of plot_cost is         : 95.53558369738137 

 At row:3, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:3, column:24,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:24,the value of plot_cost is         : 95.19218399968254 

 At row:3, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:3, column:25,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:25,the value of plot_cost is         : 94.84959236238622 

 At row:3, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:3, column:26,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:26,the value of plot_cost is         : 94.5078087854924 

 At row:3, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:3, column:27,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:27,the value of plot_cost is         : 94.16683326900113 

 At row:3, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:3, column:28,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:28,the value of plot_cost is         : 93.82666581291235 

 At row:3, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:3, column:29,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:29,the value of plot_cost is         : 93.4873064172261 

 At row:3, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:3, column:30,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:30,the value of plot_cost is         : 93.14875508194237 

 At row:3, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:3, column:31,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:31,the value of plot_cost is         : 92.81101180706113 

 At row:3, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:3, column:32,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:32,the value of plot_cost is         : 92.47407659258243 

 At row:3, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:3, column:33,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:33,the value of plot_cost is         : 92.13794943850624 

 At row:3, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:3, column:34,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:34,the value of plot_cost is         : 91.80263034483255 

 At row:3, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:3, column:35,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:35,the value of plot_cost is         : 91.4681193115614 

 At row:3, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:3, column:36,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:36,the value of plot_cost is         : 91.13441633869273 

 At row:3, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:3, column:37,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:37,the value of plot_cost is         : 90.8015214262266 

 At row:3, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:3, column:38,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:38,the value of plot_cost is         : 90.46943457416297 

 At row:3, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:3, column:39,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:39,the value of plot_cost is         : 90.13815578250187 

 At row:3, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:3, column:40,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:40,the value of plot_cost is         : 89.80768505124327 

 At row:3, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:3, column:41,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:41,the value of plot_cost is         : 89.4780223803872 

 At row:3, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:3, column:42,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:42,the value of plot_cost is         : 89.14916776993364 

 At row:3, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:3, column:43,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:43,the value of plot_cost is         : 88.8211212198826 

 At row:3, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:3, column:44,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:44,the value of plot_cost is         : 88.49388273023409 

 At row:3, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:3, column:45,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:45,the value of plot_cost is         : 88.16745230098805 

 At row:3, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:3, column:46,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:46,the value of plot_cost is         : 87.84182993214455 

 At row:3, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:3, column:47,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:47,the value of plot_cost is         : 87.51701562370356 

 At row:3, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:3, column:48,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:48,the value of plot_cost is         : 87.1930093756651 

 At row:3, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:3, column:49,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:49,the value of plot_cost is         : 86.86981118802915 

 At row:3, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:3, column:50,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:50,the value of plot_cost is         : 86.54742106079571 

 At row:3, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:3, column:51,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:51,the value of plot_cost is         : 86.22583899396479 

 At row:3, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:3, column:52,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:52,the value of plot_cost is         : 85.90506498753636 

 At row:3, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:3, column:53,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:53,the value of plot_cost is         : 85.5850990415105 

 At row:3, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:3, column:54,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:54,the value of plot_cost is         : 85.2659411558871 

 At row:3, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:3, column:55,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:55,the value of plot_cost is         : 84.94759133066624 

 At row:3, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:3, column:56,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:56,the value of plot_cost is         : 84.6300495658479 

 At row:3, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:3, column:57,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:57,the value of plot_cost is         : 84.31331586143205 

 At row:3, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:3, column:58,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:58,the value of plot_cost is         : 83.99739021741874 

 At row:3, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:3, column:59,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:59,the value of plot_cost is         : 83.68227263380793 

 At row:3, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:3, column:60,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:60,the value of plot_cost is         : 83.36796311059965 

 At row:3, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:3, column:61,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:61,the value of plot_cost is         : 83.05446164779387 

 At row:3, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:3, column:62,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:62,the value of plot_cost is         : 82.74176824539062 

 At row:3, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:3, column:63,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:63,the value of plot_cost is         : 82.42988290338988 

 At row:3, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:3, column:64,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:64,the value of plot_cost is         : 82.11880562179165 

 At row:3, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:3, column:65,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:65,the value of plot_cost is         : 81.80853640059594 

 At row:3, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:3, column:66,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:66,the value of plot_cost is         : 81.49907523980274 

 At row:3, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:3, column:67,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:67,the value of plot_cost is         : 81.19042213941205 

 At row:3, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:3, column:68,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:68,the value of plot_cost is         : 80.88257709942388 

 At row:3, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:3, column:69,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:69,the value of plot_cost is         : 80.57554011983824 

 At row:3, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:3, column:70,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:70,the value of plot_cost is         : 80.26931120065508 

 At row:3, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:3, column:71,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:71,the value of plot_cost is         : 79.96389034187446 

 At row:3, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:3, column:72,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:72,the value of plot_cost is         : 79.65927754349637 

 At row:3, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:3, column:73,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:73,the value of plot_cost is         : 79.35547280552078 

 At row:3, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:3, column:74,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:74,the value of plot_cost is         : 79.0524761279477 

 At row:3, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:3, column:75,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:75,the value of plot_cost is         : 78.75028751077713 

 At row:3, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:3, column:76,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:76,the value of plot_cost is         : 78.44890695400909 

 At row:3, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:3, column:77,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:77,the value of plot_cost is         : 78.14833445764354 

 At row:3, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:3, column:78,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:78,the value of plot_cost is         : 77.84857002168054 

 At row:3, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:3, column:79,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:79,the value of plot_cost is         : 77.54961364612002 

 At row:3, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:3, column:80,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:80,the value of plot_cost is         : 77.25146533096203 

 At row:3, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:3, column:81,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:81,the value of plot_cost is         : 76.95412507620658 

 At row:3, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:3, column:82,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:82,the value of plot_cost is         : 76.65759288185362 

 At row:3, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:3, column:83,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:83,the value of plot_cost is         : 76.36186874790317 

 At row:3, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:3, column:84,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:84,the value of plot_cost is         : 76.06695267435525 

 At row:3, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:3, column:85,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:85,the value of plot_cost is         : 75.77284466120983 

 At row:3, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:3, column:86,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:86,the value of plot_cost is         : 75.47954470846695 

 At row:3, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:3, column:87,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:87,the value of plot_cost is         : 75.18705281612655 

 At row:3, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:3, column:88,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:88,the value of plot_cost is         : 74.89536898418869 

 At row:3, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:3, column:89,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:89,the value of plot_cost is         : 74.60449321265335 

 At row:3, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:3, column:90,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:90,the value of plot_cost is         : 74.31442550152052 

 At row:3, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:3, column:91,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:91,the value of plot_cost is         : 74.02516585079019 

 At row:3, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:3, column:92,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:92,the value of plot_cost is         : 73.73671426046239 

 At row:3, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:3, column:93,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:93,the value of plot_cost is         : 73.44907073053709 

 At row:3, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:3, column:94,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:94,the value of plot_cost is         : 73.16223526101433 

 At row:3, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:3, column:95,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:95,the value of plot_cost is         : 72.87620785189407 

 At row:3, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:3, column:96,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:96,the value of plot_cost is         : 72.59098850317632 

 At row:3, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:3, column:97,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:97,the value of plot_cost is         : 72.30657721486108 

 At row:3, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:3, column:98,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:98,the value of plot_cost is         : 72.02297398694837 

 At row:3, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:3, column:99,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:99,the value of plot_cost is         : 71.74017881943817 

 At row:3, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:3, column:100,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:100,the value of plot_cost is         : 71.45819171233047 

 At row:3, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:3, column:101,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:101,the value of plot_cost is         : 71.17701266562533 

 At row:3, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:3, column:102,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:102,the value of plot_cost is         : 70.89664167932267 

 At row:3, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:3, column:103,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:103,the value of plot_cost is         : 70.61707875342252 

 At row:3, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:3, column:104,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:104,the value of plot_cost is         : 70.3383238879249 

 At row:3, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:3, column:105,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:105,the value of plot_cost is         : 70.06037708282979 

 At row:3, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:3, column:106,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:106,the value of plot_cost is         : 69.7832383381372 

 At row:3, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:3, column:107,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:107,the value of plot_cost is         : 69.50690765384711 

 At row:3, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:3, column:108,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:108,the value of plot_cost is         : 69.23138502995954 

 At row:3, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:3, column:109,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:109,the value of plot_cost is         : 68.9566704664745 

 At row:3, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:3, column:110,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:110,the value of plot_cost is         : 68.68276396339196 

 At row:3, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:3, column:111,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:111,the value of plot_cost is         : 68.40966552071194 

 At row:3, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:3, column:112,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:112,the value of plot_cost is         : 68.13737513843445 

 At row:3, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:3, column:113,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:113,the value of plot_cost is         : 67.86589281655945 

 At row:3, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:3, column:114,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:114,the value of plot_cost is         : 67.59521855508699 

 At row:3, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:3, column:115,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:115,the value of plot_cost is         : 67.32535235401701 

 At row:3, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:3, column:116,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:116,the value of plot_cost is         : 67.05629421334957 

 At row:3, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:3, column:117,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:117,the value of plot_cost is         : 66.78804413308465 

 At row:3, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:3, column:118,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:118,the value of plot_cost is         : 66.52060211322224 

 At row:3, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:3, column:119,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:119,the value of plot_cost is         : 66.25396815376234 

 At row:3, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:3, column:120,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:120,the value of plot_cost is         : 65.98814225470495 

 At row:3, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:3, column:121,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:121,the value of plot_cost is         : 65.7231244160501 

 At row:3, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:3, column:122,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:122,the value of plot_cost is         : 65.45891463779775 

 At row:3, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:3, column:123,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:123,the value of plot_cost is         : 65.1955129199479 

 At row:3, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:3, column:124,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:124,the value of plot_cost is         : 64.93291926250059 

 At row:3, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:3, column:125,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:125,the value of plot_cost is         : 64.67113366545577 

 At row:3, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:3, column:126,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:126,the value of plot_cost is         : 64.41015612881347 

 At row:3, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:3, column:127,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:127,the value of plot_cost is         : 64.1499866525737 

 At row:3, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:3, column:128,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:128,the value of plot_cost is         : 63.89062523673643 

 At row:3, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:3, column:129,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:129,the value of plot_cost is         : 63.63207188130169 

 At row:3, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:3, column:130,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:130,the value of plot_cost is         : 63.374326586269454 

 At row:3, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:3, column:131,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:131,the value of plot_cost is         : 63.11738935163974 

 At row:3, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:3, column:132,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:132,the value of plot_cost is         : 62.86126017741255 

 At row:3, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:3, column:133,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:133,the value of plot_cost is         : 62.60593906358785 

 At row:3, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:3, column:134,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:134,the value of plot_cost is         : 62.35142601016569 

 At row:3, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:3, column:135,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:135,the value of plot_cost is         : 62.097721017146014 

 At row:3, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:3, column:136,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:136,the value of plot_cost is         : 61.84482408452888 

 At row:3, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:3, column:137,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:137,the value of plot_cost is         : 61.59273521231425 

 At row:3, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:3, column:138,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:138,the value of plot_cost is         : 61.341454400502144 

 At row:3, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:3, column:139,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:139,the value of plot_cost is         : 61.09098164909254 

 At row:3, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:3, column:140,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:140,the value of plot_cost is         : 60.841316958085464 

 At row:3, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:3, column:141,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:141,the value of plot_cost is         : 60.5924603274809 

 At row:3, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:3, column:142,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:142,the value of plot_cost is         : 60.34441175727885 

 At row:3, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:3, column:143,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:143,the value of plot_cost is         : 60.09717124747931 

 At row:3, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:3, column:144,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:144,the value of plot_cost is         : 59.85073879808229 

 At row:3, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:3, column:145,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:145,the value of plot_cost is         : 59.60511440908778 

 At row:3, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:3, column:146,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:146,the value of plot_cost is         : 59.360298080495795 

 At row:3, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:3, column:147,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:147,the value of plot_cost is         : 59.11628981230633 

 At row:3, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:3, column:148,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:148,the value of plot_cost is         : 58.87308960451936 

 At row:3, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:3, column:149,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:149,the value of plot_cost is         : 58.63069745713491 

 At row:3, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:3, column:150,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:150,the value of plot_cost is         : 58.38911337015297 

 At row:3, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:3, column:151,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:151,the value of plot_cost is         : 58.14833734357356 

 At row:3, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:3, column:152,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:152,the value of plot_cost is         : 57.90836937739667 

 At row:3, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:3, column:153,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:153,the value of plot_cost is         : 57.66920947162228 

 At row:3, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:3, column:154,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:154,the value of plot_cost is         : 57.430857626250415 

 At row:3, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:3, column:155,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:155,the value of plot_cost is         : 57.19331384128106 

 At row:3, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:3, column:156,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:156,the value of plot_cost is         : 56.956578116714205 

 At row:3, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:3, column:157,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:157,the value of plot_cost is         : 56.72065045254989 

 At row:3, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:3, column:158,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:158,the value of plot_cost is         : 56.48553084878808 

 At row:3, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:3, column:159,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:159,the value of plot_cost is         : 56.25121930542878 

 At row:3, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:3, column:160,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:160,the value of plot_cost is         : 56.017715822472006 

 At row:3, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:3, column:161,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:161,the value of plot_cost is         : 55.78502039991774 

 At row:3, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:3, column:162,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:162,the value of plot_cost is         : 55.553133037765996 

 At row:3, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:3, column:163,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:163,the value of plot_cost is         : 55.322053736016755 

 At row:3, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:3, column:164,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:164,the value of plot_cost is         : 55.09178249467004 

 At row:3, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:3, column:165,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:165,the value of plot_cost is         : 54.862319313725834 

 At row:3, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:3, column:166,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:166,the value of plot_cost is         : 54.633664193184146 

 At row:3, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:3, column:167,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:167,the value of plot_cost is         : 54.40581713304496 

 At row:3, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:3, column:168,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:168,the value of plot_cost is         : 54.17877813330831 

 At row:3, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:3, column:169,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:169,the value of plot_cost is         : 53.95254719397417 

 At row:3, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:3, column:170,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:170,the value of plot_cost is         : 53.727124315042545 

 At row:3, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:3, column:171,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:171,the value of plot_cost is         : 53.502509496513426 

 At row:3, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:3, column:172,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:172,the value of plot_cost is         : 53.27870273838683 

 At row:3, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:3, column:173,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:173,the value of plot_cost is         : 53.05570404066275 

 At row:3, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:3, column:174,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:174,the value of plot_cost is         : 52.833513403341186 

 At row:3, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:3, column:175,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:175,the value of plot_cost is         : 52.612130826422124 

 At row:3, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:3, column:176,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:176,the value of plot_cost is         : 52.39155630990558 

 At row:3, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:3, column:177,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:177,the value of plot_cost is         : 52.17178985379156 

 At row:3, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:3, column:178,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:178,the value of plot_cost is         : 51.952831458080055 

 At row:3, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:3, column:179,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:179,the value of plot_cost is         : 51.734681122771065 

 At row:3, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:3, column:180,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:180,the value of plot_cost is         : 51.51733884786458 

 At row:3, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:3, column:181,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:181,the value of plot_cost is         : 51.30080463336062 

 At row:3, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:3, column:182,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:182,the value of plot_cost is         : 51.085078479259174 

 At row:3, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:3, column:183,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:183,the value of plot_cost is         : 50.87016038556024 

 At row:3, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:3, column:184,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:184,the value of plot_cost is         : 50.65605035226383 

 At row:3, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:3, column:185,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:185,the value of plot_cost is         : 50.44274837936992 

 At row:3, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:3, column:186,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:186,the value of plot_cost is         : 50.23025446687852 

 At row:3, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:3, column:187,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:187,the value of plot_cost is         : 50.01856861478966 

 At row:3, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:3, column:188,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:188,the value of plot_cost is         : 49.8076908231033 

 At row:3, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:3, column:189,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:189,the value of plot_cost is         : 49.59762109181946 

 At row:3, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:3, column:190,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:190,the value of plot_cost is         : 49.38835942093814 

 At row:3, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:3, column:191,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:191,the value of plot_cost is         : 49.17990581045933 

 At row:3, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:3, column:192,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:192,the value of plot_cost is         : 48.972260260383024 

 At row:3, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:3, column:193,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:193,the value of plot_cost is         : 48.76542277070924 

 At row:3, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:3, column:194,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:194,the value of plot_cost is         : 48.55939334143798 

 At row:3, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:3, column:195,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:195,the value of plot_cost is         : 48.354171972569226 

 At row:3, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:3, column:196,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:196,the value of plot_cost is         : 48.149758664102976 

 At row:3, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:3, column:197,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:197,the value of plot_cost is         : 47.946153416039266 

 At row:3, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:3, column:198,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:198,the value of plot_cost is         : 47.74335622837807 

 At row:3, column:199,the value of plot_t0 is           : 3.0
 At row:3, column:199,the value of plot_t1 is           : -0.9396984924623115
 At row:3, column:199,the value of plot_cost is         : 47.54136710111937 

 At row:4, column:0,the value of plot_t0 is           : -1.0
 At row:4, column:0,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:0,the value of plot_cost is         : 102.06328148279083 

 At row:4, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:4, column:1,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:1,the value of plot_cost is         : 101.70397453888249 

 At row:4, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:4, column:2,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:2,the value of plot_cost is         : 101.34547565537666 

 At row:4, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:4, column:3,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:3,the value of plot_cost is         : 100.98778483227335 

 At row:4, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:4, column:4,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:4,the value of plot_cost is         : 100.63090206957254 

 At row:4, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:4, column:5,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:5,the value of plot_cost is         : 100.27482736727427 

 At row:4, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:4, column:6,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:6,the value of plot_cost is         : 99.9195607253785 

 At row:4, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:4, column:7,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:7,the value of plot_cost is         : 99.56510214388524 

 At row:4, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:4, column:8,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:8,the value of plot_cost is         : 99.21145162279451 

 At row:4, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:4, column:9,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:9,the value of plot_cost is         : 98.85860916210629 

 At row:4, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:4, column:10,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:10,the value of plot_cost is         : 98.50657476182059 

 At row:4, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:4, column:11,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:11,the value of plot_cost is         : 98.15534842193738 

 At row:4, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:4, column:12,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:12,the value of plot_cost is         : 97.80493014245671 

 At row:4, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:4, column:13,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:13,the value of plot_cost is         : 97.45531992337855 

 At row:4, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:4, column:14,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:14,the value of plot_cost is         : 97.1065177647029 

 At row:4, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:4, column:15,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:15,the value of plot_cost is         : 96.75852366642977 

 At row:4, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:4, column:16,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:16,the value of plot_cost is         : 96.41133762855915 

 At row:4, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:4, column:17,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:17,the value of plot_cost is         : 96.06495965109106 

 At row:4, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:4, column:18,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:18,the value of plot_cost is         : 95.71938973402547 

 At row:4, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:4, column:19,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:19,the value of plot_cost is         : 95.3746278773624 

 At row:4, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:4, column:20,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:20,the value of plot_cost is         : 95.03067408110184 

 At row:4, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:4, column:21,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:21,the value of plot_cost is         : 94.68752834524379 

 At row:4, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:4, column:22,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:22,the value of plot_cost is         : 94.34519066978828 

 At row:4, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:4, column:23,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:23,the value of plot_cost is         : 94.00366105473526 

 At row:4, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:4, column:24,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:24,the value of plot_cost is         : 93.66293950008476 

 At row:4, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:4, column:25,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:25,the value of plot_cost is         : 93.32302600583678 

 At row:4, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:4, column:26,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:26,the value of plot_cost is         : 92.9839205719913 

 At row:4, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:4, column:27,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:27,the value of plot_cost is         : 92.64562319854838 

 At row:4, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:4, column:28,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:28,the value of plot_cost is         : 92.30813388550794 

 At row:4, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:4, column:29,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:29,the value of plot_cost is         : 91.97145263287001 

 At row:4, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:4, column:30,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:30,the value of plot_cost is         : 91.63557944063461 

 At row:4, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:4, column:31,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:31,the value of plot_cost is         : 91.30051430880171 

 At row:4, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:4, column:32,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:32,the value of plot_cost is         : 90.96625723737135 

 At row:4, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:4, column:33,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:33,the value of plot_cost is         : 90.63280822634347 

 At row:4, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:4, column:34,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:34,the value of plot_cost is         : 90.30016727571812 

 At row:4, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:4, column:35,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:35,the value of plot_cost is         : 89.96833438549531 

 At row:4, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:4, column:36,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:36,the value of plot_cost is         : 89.63730955567499 

 At row:4, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:4, column:37,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:37,the value of plot_cost is         : 89.30709278625719 

 At row:4, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:4, column:38,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:38,the value of plot_cost is         : 88.9776840772419 

 At row:4, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:4, column:39,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:39,the value of plot_cost is         : 88.64908342862913 

 At row:4, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:4, column:40,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:40,the value of plot_cost is         : 88.3212908404189 

 At row:4, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:4, column:41,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:41,the value of plot_cost is         : 87.99430631261114 

 At row:4, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:4, column:42,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:42,the value of plot_cost is         : 87.66812984520591 

 At row:4, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:4, column:43,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:43,the value of plot_cost is         : 87.34276143820323 

 At row:4, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:4, column:44,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:44,the value of plot_cost is         : 87.01820109160302 

 At row:4, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:4, column:45,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:45,the value of plot_cost is         : 86.69444880540533 

 At row:4, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:4, column:46,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:46,the value of plot_cost is         : 86.37150457961017 

 At row:4, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:4, column:47,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:47,the value of plot_cost is         : 86.04936841421753 

 At row:4, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:4, column:48,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:48,the value of plot_cost is         : 85.72804030922738 

 At row:4, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:4, column:49,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:49,the value of plot_cost is         : 85.40752026463977 

 At row:4, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:4, column:50,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:50,the value of plot_cost is         : 85.08780828045467 

 At row:4, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:4, column:51,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:51,the value of plot_cost is         : 84.76890435667207 

 At row:4, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:4, column:52,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:52,the value of plot_cost is         : 84.45080849329202 

 At row:4, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:4, column:53,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:53,the value of plot_cost is         : 84.13352069031446 

 At row:4, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:4, column:54,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:54,the value of plot_cost is         : 83.81704094773941 

 At row:4, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:4, column:55,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:55,the value of plot_cost is         : 83.50136926556688 

 At row:4, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:4, column:56,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:56,the value of plot_cost is         : 83.18650564379686 

 At row:4, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:4, column:57,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:57,the value of plot_cost is         : 82.87245008242938 

 At row:4, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:4, column:58,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:58,the value of plot_cost is         : 82.55920258146439 

 At row:4, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:4, column:59,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:59,the value of plot_cost is         : 82.24676314090192 

 At row:4, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:4, column:60,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:60,the value of plot_cost is         : 81.93513176074197 

 At row:4, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:4, column:61,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:61,the value of plot_cost is         : 81.62430844098452 

 At row:4, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:4, column:62,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:62,the value of plot_cost is         : 81.3142931816296 

 At row:4, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:4, column:63,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:63,the value of plot_cost is         : 81.0050859826772 

 At row:4, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:4, column:64,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:64,the value of plot_cost is         : 80.6966868441273 

 At row:4, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:4, column:65,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:65,the value of plot_cost is         : 80.38909576597992 

 At row:4, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:4, column:66,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:66,the value of plot_cost is         : 80.08231274823505 

 At row:4, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:4, column:67,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:67,the value of plot_cost is         : 79.77633779089273 

 At row:4, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:4, column:68,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:68,the value of plot_cost is         : 79.47117089395289 

 At row:4, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:4, column:69,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:69,the value of plot_cost is         : 79.16681205741557 

 At row:4, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:4, column:70,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:70,the value of plot_cost is         : 78.86326128128077 

 At row:4, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:4, column:71,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:71,the value of plot_cost is         : 78.56051856554849 

 At row:4, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:4, column:72,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:72,the value of plot_cost is         : 78.25858391021872 

 At row:4, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:4, column:73,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:73,the value of plot_cost is         : 77.95745731529145 

 At row:4, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:4, column:74,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:74,the value of plot_cost is         : 77.65713878076672 

 At row:4, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:4, column:75,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:75,the value of plot_cost is         : 77.35762830664449 

 At row:4, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:4, column:76,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:76,the value of plot_cost is         : 77.05892589292478 

 At row:4, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:4, column:77,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:77,the value of plot_cost is         : 76.76103153960757 

 At row:4, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:4, column:78,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:78,the value of plot_cost is         : 76.4639452466929 

 At row:4, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:4, column:79,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:79,the value of plot_cost is         : 76.16766701418072 

 At row:4, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:4, column:80,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:80,the value of plot_cost is         : 75.87219684207108 

 At row:4, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:4, column:81,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:81,the value of plot_cost is         : 75.57753473036395 

 At row:4, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:4, column:82,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:82,the value of plot_cost is         : 75.28368067905933 

 At row:4, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:4, column:83,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:83,the value of plot_cost is         : 74.99063468815723 

 At row:4, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:4, column:84,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:84,the value of plot_cost is         : 74.69839675765763 

 At row:4, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:4, column:85,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:85,the value of plot_cost is         : 74.40696688756056 

 At row:4, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:4, column:86,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:86,the value of plot_cost is         : 74.11634507786599 

 At row:4, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:4, column:87,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:87,the value of plot_cost is         : 73.82653132857395 

 At row:4, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:4, column:88,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:88,the value of plot_cost is         : 73.53752563968442 

 At row:4, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:4, column:89,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:89,the value of plot_cost is         : 73.24932801119739 

 At row:4, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:4, column:90,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:90,the value of plot_cost is         : 72.9619384431129 

 At row:4, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:4, column:91,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:91,the value of plot_cost is         : 72.67535693543091 

 At row:4, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:4, column:92,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:92,the value of plot_cost is         : 72.38958348815144 

 At row:4, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:4, column:93,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:93,the value of plot_cost is         : 72.10461810127448 

 At row:4, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:4, column:94,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:94,the value of plot_cost is         : 71.82046077480005 

 At row:4, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:4, column:95,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:95,the value of plot_cost is         : 71.53711150872813 

 At row:4, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:4, column:96,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:96,the value of plot_cost is         : 71.25457030305871 

 At row:4, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:4, column:97,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:97,the value of plot_cost is         : 70.97283715779182 

 At row:4, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:4, column:98,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:98,the value of plot_cost is         : 70.69191207292745 

 At row:4, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:4, column:99,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:99,the value of plot_cost is         : 70.41179504846558 

 At row:4, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:4, column:100,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:100,the value of plot_cost is         : 70.13248608440622 

 At row:4, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:4, column:101,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:101,the value of plot_cost is         : 69.8539851807494 

 At row:4, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:4, column:102,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:102,the value of plot_cost is         : 69.57629233749508 

 At row:4, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:4, column:103,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:103,the value of plot_cost is         : 69.29940755464327 

 At row:4, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:4, column:104,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:104,the value of plot_cost is         : 69.02333083219399 

 At row:4, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:4, column:105,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:105,the value of plot_cost is         : 68.74806217014721 

 At row:4, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:4, column:106,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:106,the value of plot_cost is         : 68.47360156850294 

 At row:4, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:4, column:107,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:107,the value of plot_cost is         : 68.19994902726121 

 At row:4, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:4, column:108,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:108,the value of plot_cost is         : 67.92710454642197 

 At row:4, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:4, column:109,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:109,the value of plot_cost is         : 67.65506812598527 

 At row:4, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:4, column:110,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:110,the value of plot_cost is         : 67.38383976595107 

 At row:4, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:4, column:111,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:111,the value of plot_cost is         : 67.11341946631939 

 At row:4, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:4, column:112,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:112,the value of plot_cost is         : 66.84380722709022 

 At row:4, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:4, column:113,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:113,the value of plot_cost is         : 66.57500304826357 

 At row:4, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:4, column:114,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:114,the value of plot_cost is         : 66.30700692983942 

 At row:4, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:4, column:115,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:115,the value of plot_cost is         : 66.03981887181779 

 At row:4, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:4, column:116,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:116,the value of plot_cost is         : 65.77343887419869 

 At row:4, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:4, column:117,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:117,the value of plot_cost is         : 65.5078669369821 

 At row:4, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:4, column:118,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:118,the value of plot_cost is         : 65.24310306016802 

 At row:4, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:4, column:119,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:119,the value of plot_cost is         : 64.97914724375646 

 At row:4, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:4, column:120,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:120,the value of plot_cost is         : 64.71599948774741 

 At row:4, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:4, column:121,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:121,the value of plot_cost is         : 64.45365979214087 

 At row:4, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:4, column:122,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:122,the value of plot_cost is         : 64.19212815693687 

 At row:4, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:4, column:123,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:123,the value of plot_cost is         : 63.93140458213538 

 At row:4, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:4, column:124,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:124,the value of plot_cost is         : 63.67148906773639 

 At row:4, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:4, column:125,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:125,the value of plot_cost is         : 63.41238161373991 

 At row:4, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:4, column:126,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:126,the value of plot_cost is         : 63.15408222014595 

 At row:4, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:4, column:127,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:127,the value of plot_cost is         : 62.896590886954506 

 At row:4, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:4, column:128,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:128,the value of plot_cost is         : 62.63990761416559 

 At row:4, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:4, column:129,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:129,the value of plot_cost is         : 62.38403240177917 

 At row:4, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:4, column:130,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:130,the value of plot_cost is         : 62.12896524979527 

 At row:4, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:4, column:131,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:131,the value of plot_cost is         : 61.87470615821389 

 At row:4, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:4, column:132,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:132,the value of plot_cost is         : 61.62125512703503 

 At row:4, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:4, column:133,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:133,the value of plot_cost is         : 61.36861215625868 

 At row:4, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:4, column:134,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:134,the value of plot_cost is         : 61.11677724588483 

 At row:4, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:4, column:135,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:135,the value of plot_cost is         : 60.865750395913516 

 At row:4, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:4, column:136,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:136,the value of plot_cost is         : 60.61553160634471 

 At row:4, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:4, column:137,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:137,the value of plot_cost is         : 60.366120877178425 

 At row:4, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:4, column:138,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:138,the value of plot_cost is         : 60.11751820841464 

 At row:4, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:4, column:139,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:139,the value of plot_cost is         : 59.86972360005339 

 At row:4, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:4, column:140,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:140,the value of plot_cost is         : 59.622737052094635 

 At row:4, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:4, column:141,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:141,the value of plot_cost is         : 59.37655856453841 

 At row:4, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:4, column:142,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:142,the value of plot_cost is         : 59.1311881373847 

 At row:4, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:4, column:143,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:143,the value of plot_cost is         : 58.88662577063349 

 At row:4, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:4, column:144,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:144,the value of plot_cost is         : 58.6428714642848 

 At row:4, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:4, column:145,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:145,the value of plot_cost is         : 58.39992521833864 

 At row:4, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:4, column:146,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:146,the value of plot_cost is         : 58.15778703279498 

 At row:4, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:4, column:147,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:147,the value of plot_cost is         : 57.91645690765384 

 At row:4, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:4, column:148,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:148,the value of plot_cost is         : 57.67593484291522 

 At row:4, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:4, column:149,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:149,the value of plot_cost is         : 57.4362208385791 

 At row:4, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:4, column:150,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:150,the value of plot_cost is         : 57.19731489464551 

 At row:4, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:4, column:151,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:151,the value of plot_cost is         : 56.959217011114426 

 At row:4, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:4, column:152,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:152,the value of plot_cost is         : 56.72192718798586 

 At row:4, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:4, column:153,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:153,the value of plot_cost is         : 56.48544542525982 

 At row:4, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:4, column:154,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:154,the value of plot_cost is         : 56.24977172293628 

 At row:4, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:4, column:155,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:155,the value of plot_cost is         : 56.01490608101526 

 At row:4, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:4, column:156,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:156,the value of plot_cost is         : 55.78084849949676 

 At row:4, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:4, column:157,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:157,the value of plot_cost is         : 55.547598978380776 

 At row:4, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:4, column:158,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:158,the value of plot_cost is         : 55.315157517667295 

 At row:4, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:4, column:159,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:159,the value of plot_cost is         : 55.08352411735634 

 At row:4, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:4, column:160,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:160,the value of plot_cost is         : 54.85269877744789 

 At row:4, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:4, column:161,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:161,the value of plot_cost is         : 54.622681497941954 

 At row:4, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:4, column:162,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:162,the value of plot_cost is         : 54.39347227883856 

 At row:4, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:4, column:163,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:163,the value of plot_cost is         : 54.165071120137654 

 At row:4, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:4, column:164,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:164,the value of plot_cost is         : 53.93747802183927 

 At row:4, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:4, column:165,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:165,the value of plot_cost is         : 53.710692983943396 

 At row:4, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:4, column:166,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:166,the value of plot_cost is         : 53.48471600645005 

 At row:4, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:4, column:167,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:167,the value of plot_cost is         : 53.259547089359216 

 At row:4, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:4, column:168,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:168,the value of plot_cost is         : 53.03518623267089 

 At row:4, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:4, column:169,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:169,the value of plot_cost is         : 52.81163343638509 

 At row:4, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:4, column:170,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:170,the value of plot_cost is         : 52.588888700501776 

 At row:4, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:4, column:171,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:171,the value of plot_cost is         : 52.366952025021 

 At row:4, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:4, column:172,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:172,the value of plot_cost is         : 52.14582340994275 

 At row:4, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:4, column:173,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:173,the value of plot_cost is         : 51.925502855267005 

 At row:4, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:4, column:174,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:174,the value of plot_cost is         : 51.705990360993766 

 At row:4, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:4, column:175,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:175,the value of plot_cost is         : 51.48728592712304 

 At row:4, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:4, column:176,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:176,the value of plot_cost is         : 51.26938955365485 

 At row:4, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:4, column:177,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:177,the value of plot_cost is         : 51.05230124058916 

 At row:4, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:4, column:178,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:178,the value of plot_cost is         : 50.83602098792599 

 At row:4, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:4, column:179,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:179,the value of plot_cost is         : 50.62054879566532 

 At row:4, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:4, column:180,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:180,the value of plot_cost is         : 50.405884663807186 

 At row:4, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:4, column:181,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:181,the value of plot_cost is         : 50.19202859235156 

 At row:4, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:4, column:182,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:182,the value of plot_cost is         : 49.978980581298444 

 At row:4, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:4, column:183,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:183,the value of plot_cost is         : 49.76674063064786 

 At row:4, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:4, column:184,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:184,the value of plot_cost is         : 49.555308740399774 

 At row:4, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:4, column:185,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:185,the value of plot_cost is         : 49.3446849105542 

 At row:4, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:4, column:186,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:186,the value of plot_cost is         : 49.13486914111115 

 At row:4, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:4, column:187,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:187,the value of plot_cost is         : 48.92586143207061 

 At row:4, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:4, column:188,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:188,the value of plot_cost is         : 48.7176617834326 

 At row:4, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:4, column:189,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:189,the value of plot_cost is         : 48.51027019519709 

 At row:4, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:4, column:190,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:190,the value of plot_cost is         : 48.30368666736408 

 At row:4, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:4, column:191,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:191,the value of plot_cost is         : 48.09791119993362 

 At row:4, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:4, column:192,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:192,the value of plot_cost is         : 47.892943792905655 

 At row:4, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:4, column:193,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:193,the value of plot_cost is         : 47.68878444628021 

 At row:4, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:4, column:194,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:194,the value of plot_cost is         : 47.48543316005728 

 At row:4, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:4, column:195,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:195,the value of plot_cost is         : 47.282889934236856 

 At row:4, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:4, column:196,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:196,the value of plot_cost is         : 47.08115476881896 

 At row:4, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:4, column:197,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:197,the value of plot_cost is         : 46.88022766380358 

 At row:4, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:4, column:198,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:198,the value of plot_cost is         : 46.68010861919072 

 At row:4, column:199,the value of plot_t0 is           : 3.0
 At row:4, column:199,the value of plot_t1 is           : -0.9195979899497487
 At row:4, column:199,the value of plot_cost is         : 46.480797634980355 

 At row:5, column:0,the value of plot_t0 is           : -1.0
 At row:5, column:0,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:0,the value of plot_cost is         : 100.48234420487216 

 At row:5, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:5, column:1,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:1,the value of plot_cost is         : 100.12571540401217 

 At row:5, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:5, column:2,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:2,the value of plot_cost is         : 99.76989466355468 

 At row:5, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:5, column:3,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:3,the value of plot_cost is         : 99.4148819834997 

 At row:5, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:5, column:4,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:4,the value of plot_cost is         : 99.06067736384722 

 At row:5, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:5, column:5,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:5,the value of plot_cost is         : 98.70728080459726 

 At row:5, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:5, column:6,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:6,the value of plot_cost is         : 98.35469230574985 

 At row:5, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:5, column:7,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:7,the value of plot_cost is         : 98.00291186730492 

 At row:5, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:5, column:8,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:8,the value of plot_cost is         : 97.65193948926253 

 At row:5, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:5, column:9,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:9,the value of plot_cost is         : 97.30177517162264 

 At row:5, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:5, column:10,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:10,the value of plot_cost is         : 96.95241891438528 

 At row:5, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:5, column:11,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:11,the value of plot_cost is         : 96.60387071755044 

 At row:5, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:5, column:12,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:12,the value of plot_cost is         : 96.25613058111807 

 At row:5, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:5, column:13,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:13,the value of plot_cost is         : 95.90919850508824 

 At row:5, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:5, column:14,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:14,the value of plot_cost is         : 95.56307448946093 

 At row:5, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:5, column:15,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:15,the value of plot_cost is         : 95.21775853423613 

 At row:5, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:5, column:16,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:16,the value of plot_cost is         : 94.87325063941387 

 At row:5, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:5, column:17,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:17,the value of plot_cost is         : 94.52955080499409 

 At row:5, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:5, column:18,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:18,the value of plot_cost is         : 94.18665903097683 

 At row:5, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:5, column:19,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:19,the value of plot_cost is         : 93.84457531736211 

 At row:5, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:5, column:20,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:20,the value of plot_cost is         : 93.50329966414989 

 At row:5, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:5, column:21,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:21,the value of plot_cost is         : 93.16283207134019 

 At row:5, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:5, column:22,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:22,the value of plot_cost is         : 92.823172538933 

 At row:5, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:5, column:23,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:23,the value of plot_cost is         : 92.48432106692832 

 At row:5, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:5, column:24,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:24,the value of plot_cost is         : 92.14627765532616 

 At row:5, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:5, column:25,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:25,the value of plot_cost is         : 91.8090423041265 

 At row:5, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:5, column:26,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:26,the value of plot_cost is         : 91.47261501332939 

 At row:5, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:5, column:27,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:27,the value of plot_cost is         : 91.13699578293476 

 At row:5, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:5, column:28,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:28,the value of plot_cost is         : 90.80218461294267 

 At row:5, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:5, column:29,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:29,the value of plot_cost is         : 90.4681815033531 

 At row:5, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:5, column:30,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:30,the value of plot_cost is         : 90.13498645416601 

 At row:5, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:5, column:31,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:31,the value of plot_cost is         : 89.80259946538145 

 At row:5, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:5, column:32,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:32,the value of plot_cost is         : 89.47102053699943 

 At row:5, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:5, column:33,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:33,the value of plot_cost is         : 89.14024966901991 

 At row:5, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:5, column:34,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:34,the value of plot_cost is         : 88.81028686144288 

 At row:5, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:5, column:35,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:35,the value of plot_cost is         : 88.48113211426839 

 At row:5, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:5, column:36,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:36,the value of plot_cost is         : 88.15278542749641 

 At row:5, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:5, column:37,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:37,the value of plot_cost is         : 87.82524680112695 

 At row:5, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:5, column:38,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:38,the value of plot_cost is         : 87.49851623516 

 At row:5, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:5, column:39,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:39,the value of plot_cost is         : 87.17259372959558 

 At row:5, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:5, column:40,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:40,the value of plot_cost is         : 86.84747928443365 

 At row:5, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:5, column:41,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:41,the value of plot_cost is         : 86.52317289967425 

 At row:5, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:5, column:42,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:42,the value of plot_cost is         : 86.19967457531736 

 At row:5, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:5, column:43,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:43,the value of plot_cost is         : 85.876984311363 

 At row:5, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:5, column:44,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:44,the value of plot_cost is         : 85.55510210781111 

 At row:5, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:5, column:45,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:45,the value of plot_cost is         : 85.23402796466178 

 At row:5, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:5, column:46,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:46,the value of plot_cost is         : 84.91376188191497 

 At row:5, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:5, column:47,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:47,the value of plot_cost is         : 84.59430385957063 

 At row:5, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:5, column:48,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:48,the value of plot_cost is         : 84.27565389762884 

 At row:5, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:5, column:49,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:49,the value of plot_cost is         : 83.95781199608956 

 At row:5, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:5, column:50,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:50,the value of plot_cost is         : 83.6407781549528 

 At row:5, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:5, column:51,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:51,the value of plot_cost is         : 83.32455237421856 

 At row:5, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:5, column:52,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:52,the value of plot_cost is         : 83.0091346538868 

 At row:5, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:5, column:53,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:53,the value of plot_cost is         : 82.69452499395759 

 At row:5, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:5, column:54,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:54,the value of plot_cost is         : 82.38072339443086 

 At row:5, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:5, column:55,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:55,the value of plot_cost is         : 82.06772985530668 

 At row:5, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:5, column:56,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:56,the value of plot_cost is         : 81.75554437658501 

 At row:5, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:5, column:57,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:57,the value of plot_cost is         : 81.44416695826584 

 At row:5, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:5, column:58,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:58,the value of plot_cost is         : 81.13359760034918 

 At row:5, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:5, column:59,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:59,the value of plot_cost is         : 80.82383630283506 

 At row:5, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:5, column:60,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:60,the value of plot_cost is         : 80.51488306572345 

 At row:5, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:5, column:61,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:61,the value of plot_cost is         : 80.20673788901435 

 At row:5, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:5, column:62,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:62,the value of plot_cost is         : 79.89940077270775 

 At row:5, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:5, column:63,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:63,the value of plot_cost is         : 79.59287171680369 

 At row:5, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:5, column:64,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:64,the value of plot_cost is         : 79.28715072130211 

 At row:5, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:5, column:65,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:65,the value of plot_cost is         : 78.98223778620309 

 At row:5, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:5, column:66,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:66,the value of plot_cost is         : 78.67813291150657 

 At row:5, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:5, column:67,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:67,the value of plot_cost is         : 78.37483609721255 

 At row:5, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:5, column:68,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:68,the value of plot_cost is         : 78.07234734332104 

 At row:5, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:5, column:69,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:69,the value of plot_cost is         : 77.77066664983207 

 At row:5, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:5, column:70,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:70,the value of plot_cost is         : 77.46979401674561 

 At row:5, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:5, column:71,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:71,the value of plot_cost is         : 77.16972944406166 

 At row:5, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:5, column:72,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:72,the value of plot_cost is         : 76.87047293178023 

 At row:5, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:5, column:73,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:73,the value of plot_cost is         : 76.5720244799013 

 At row:5, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:5, column:74,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:74,the value of plot_cost is         : 76.27438408842488 

 At row:5, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:5, column:75,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:75,the value of plot_cost is         : 75.97755175735101 

 At row:5, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:5, column:76,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:76,the value of plot_cost is         : 75.68152748667963 

 At row:5, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:5, column:77,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:77,the value of plot_cost is         : 75.38631127641077 

 At row:5, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:5, column:78,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:78,the value of plot_cost is         : 75.09190312654441 

 At row:5, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:5, column:79,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:79,the value of plot_cost is         : 74.7983030370806 

 At row:5, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:5, column:80,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:80,the value of plot_cost is         : 74.50551100801927 

 At row:5, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:5, column:81,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:81,the value of plot_cost is         : 74.21352703936047 

 At row:5, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:5, column:82,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:82,the value of plot_cost is         : 73.9223511311042 

 At row:5, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:5, column:83,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:83,the value of plot_cost is         : 73.63198328325042 

 At row:5, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:5, column:84,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:84,the value of plot_cost is         : 73.34242349579917 

 At row:5, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:5, column:85,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:85,the value of plot_cost is         : 73.05367176875042 

 At row:5, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:5, column:86,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:86,the value of plot_cost is         : 72.7657281021042 

 At row:5, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:5, column:87,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:87,the value of plot_cost is         : 72.47859249586048 

 At row:5, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:5, column:88,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:88,the value of plot_cost is         : 72.1922649500193 

 At row:5, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:5, column:89,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:89,the value of plot_cost is         : 71.90674546458061 

 At row:5, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:5, column:90,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:90,the value of plot_cost is         : 71.62203403954446 

 At row:5, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:5, column:91,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:91,the value of plot_cost is         : 71.3381306749108 

 At row:5, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:5, column:92,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:92,the value of plot_cost is         : 71.05503537067968 

 At row:5, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:5, column:93,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:93,the value of plot_cost is         : 70.77274812685106 

 At row:5, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:5, column:94,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:94,the value of plot_cost is         : 70.49126894342493 

 At row:5, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:5, column:95,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:95,the value of plot_cost is         : 70.21059782040135 

 At row:5, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:5, column:96,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:96,the value of plot_cost is         : 69.93073475778027 

 At row:5, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:5, column:97,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:97,the value of plot_cost is         : 69.65167975556172 

 At row:5, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:5, column:98,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:98,the value of plot_cost is         : 69.37343281374568 

 At row:5, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:5, column:99,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:99,the value of plot_cost is         : 69.09599393233216 

 At row:5, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:5, column:100,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:100,the value of plot_cost is         : 68.81936311132114 

 At row:5, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:5, column:101,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:101,the value of plot_cost is         : 68.54354035071265 

 At row:5, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:5, column:102,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:102,the value of plot_cost is         : 68.26852565050666 

 At row:5, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:5, column:103,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:103,the value of plot_cost is         : 67.99431901070318 

 At row:5, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:5, column:104,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:104,the value of plot_cost is         : 67.72092043130223 

 At row:5, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:5, column:105,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:105,the value of plot_cost is         : 67.44832991230379 

 At row:5, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:5, column:106,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:106,the value of plot_cost is         : 67.17654745370787 

 At row:5, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:5, column:107,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:107,the value of plot_cost is         : 66.90557305551447 

 At row:5, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:5, column:108,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:108,the value of plot_cost is         : 66.63540671772357 

 At row:5, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:5, column:109,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:109,the value of plot_cost is         : 66.36604844033519 

 At row:5, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:5, column:110,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:110,the value of plot_cost is         : 66.09749822334935 

 At row:5, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:5, column:111,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:111,the value of plot_cost is         : 65.82975606676598 

 At row:5, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:5, column:112,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:112,the value of plot_cost is         : 65.56282197058516 

 At row:5, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:5, column:113,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:113,the value of plot_cost is         : 65.29669593480683 

 At row:5, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:5, column:114,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:114,the value of plot_cost is         : 65.03137795943103 

 At row:5, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:5, column:115,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:115,the value of plot_cost is         : 64.76686804445775 

 At row:5, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:5, column:116,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:116,the value of plot_cost is         : 64.50316618988698 

 At row:5, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:5, column:117,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:117,the value of plot_cost is         : 64.2402723957187 

 At row:5, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:5, column:118,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:118,the value of plot_cost is         : 63.97818666195298 

 At row:5, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:5, column:119,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:119,the value of plot_cost is         : 63.71690898858976 

 At row:5, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:5, column:120,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:120,the value of plot_cost is         : 63.45643937562903 

 At row:5, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:5, column:121,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:121,the value of plot_cost is         : 63.19677782307084 

 At row:5, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:5, column:122,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:122,the value of plot_cost is         : 62.937924330915166 

 At row:5, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:5, column:123,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:123,the value of plot_cost is         : 62.67987889916199 

 At row:5, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:5, column:124,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:124,the value of plot_cost is         : 62.422641527811344 

 At row:5, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:5, column:125,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:125,the value of plot_cost is         : 62.1662122168632 

 At row:5, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:5, column:126,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:126,the value of plot_cost is         : 61.91059096631759 

 At row:5, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:5, column:127,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:127,the value of plot_cost is         : 61.655777776174475 

 At row:5, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:5, column:128,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:128,the value of plot_cost is         : 61.40177264643389 

 At row:5, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:5, column:129,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:129,the value of plot_cost is         : 61.14857557709582 

 At row:5, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:5, column:130,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:130,the value of plot_cost is         : 60.896186568160246 

 At row:5, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:5, column:131,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:131,the value of plot_cost is         : 60.644605619627214 

 At row:5, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:5, column:132,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:132,the value of plot_cost is         : 60.39383273149669 

 At row:5, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:5, column:133,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:133,the value of plot_cost is         : 60.143867903768665 

 At row:5, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:5, column:134,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:134,the value of plot_cost is         : 59.89471113644315 

 At row:5, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:5, column:135,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:135,the value of plot_cost is         : 59.646362429520174 

 At row:5, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:5, column:136,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:136,the value of plot_cost is         : 59.398821782999704 

 At row:5, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:5, column:137,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:137,the value of plot_cost is         : 59.15208919688174 

 At row:5, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:5, column:138,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:138,the value of plot_cost is         : 58.90616467116631 

 At row:5, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:5, column:139,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:139,the value of plot_cost is         : 58.66104820585339 

 At row:5, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:5, column:140,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:140,the value of plot_cost is         : 58.41673980094297 

 At row:5, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:5, column:141,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:141,the value of plot_cost is         : 58.17323945643508 

 At row:5, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:5, column:142,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:142,the value of plot_cost is         : 57.9305471723297 

 At row:5, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:5, column:143,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:143,the value of plot_cost is         : 57.688662948626835 

 At row:5, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:5, column:144,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:144,the value of plot_cost is         : 57.447586785326486 

 At row:5, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:5, column:145,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:145,the value of plot_cost is         : 57.20731868242865 

 At row:5, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:5, column:146,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:146,the value of plot_cost is         : 56.96785863993333 

 At row:5, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:5, column:147,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:147,the value of plot_cost is         : 56.72920665784053 

 At row:5, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:5, column:148,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:148,the value of plot_cost is         : 56.491362736150236 

 At row:5, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:5, column:149,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:149,the value of plot_cost is         : 56.254326874862464 

 At row:5, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:5, column:150,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:150,the value of plot_cost is         : 56.0180990739772 

 At row:5, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:5, column:151,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:151,the value of plot_cost is         : 55.782679333494464 

 At row:5, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:5, column:152,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:152,the value of plot_cost is         : 55.548067653414236 

 At row:5, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:5, column:153,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:153,the value of plot_cost is         : 55.314264033736514 

 At row:5, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:5, column:154,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:154,the value of plot_cost is         : 55.08126847446132 

 At row:5, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:5, column:155,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:155,the value of plot_cost is         : 54.84908097558863 

 At row:5, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:5, column:156,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:156,the value of plot_cost is         : 54.61770153711846 

 At row:5, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:5, column:157,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:157,the value of plot_cost is         : 54.38713015905081 

 At row:5, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:5, column:158,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:158,the value of plot_cost is         : 54.15736684138567 

 At row:5, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:5, column:159,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:159,the value of plot_cost is         : 53.92841158412305 

 At row:5, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:5, column:160,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:160,the value of plot_cost is         : 53.70026438726295 

 At row:5, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:5, column:161,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:161,the value of plot_cost is         : 53.47292525080536 

 At row:5, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:5, column:162,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:162,the value of plot_cost is         : 53.24639417475028 

 At row:5, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:5, column:163,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:163,the value of plot_cost is         : 53.0206711590977 

 At row:5, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:5, column:164,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:164,the value of plot_cost is         : 52.79575620384766 

 At row:5, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:5, column:165,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:165,the value of plot_cost is         : 52.571649309000136 

 At row:5, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:5, column:166,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:166,the value of plot_cost is         : 52.34835047455511 

 At row:5, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:5, column:167,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:167,the value of plot_cost is         : 52.125859700512606 

 At row:5, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:5, column:168,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:168,the value of plot_cost is         : 51.90417698687262 

 At row:5, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:5, column:169,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:169,the value of plot_cost is         : 51.683302333635154 

 At row:5, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:5, column:170,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:170,the value of plot_cost is         : 51.4632357408002 

 At row:5, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:5, column:171,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:171,the value of plot_cost is         : 51.24397720836775 

 At row:5, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:5, column:172,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:172,the value of plot_cost is         : 51.02552673633782 

 At row:5, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:5, column:173,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:173,the value of plot_cost is         : 50.807884324710415 

 At row:5, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:5, column:174,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:174,the value of plot_cost is         : 50.59104997348551 

 At row:5, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:5, column:175,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:175,the value of plot_cost is         : 50.37502368266313 

 At row:5, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:5, column:176,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:176,the value of plot_cost is         : 50.15980545224326 

 At row:5, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:5, column:177,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:177,the value of plot_cost is         : 49.94539528222591 

 At row:5, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:5, column:178,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:178,the value of plot_cost is         : 49.73179317261108 

 At row:5, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:5, column:179,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:179,the value of plot_cost is         : 49.51899912339876 

 At row:5, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:5, column:180,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:180,the value of plot_cost is         : 49.30701313458895 

 At row:5, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:5, column:181,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:181,the value of plot_cost is         : 49.09583520618166 

 At row:5, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:5, column:182,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:182,the value of plot_cost is         : 48.885465338176886 

 At row:5, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:5, column:183,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:183,the value of plot_cost is         : 48.67590353057462 

 At row:5, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:5, column:184,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:184,the value of plot_cost is         : 48.46714978337487 

 At row:5, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:5, column:185,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:185,the value of plot_cost is         : 48.25920409657765 

 At row:5, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:5, column:186,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:186,the value of plot_cost is         : 48.05206647018292 

 At row:5, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:5, column:187,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:187,the value of plot_cost is         : 47.84573690419072 

 At row:5, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:5, column:188,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:188,the value of plot_cost is         : 47.640215398601036 

 At row:5, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:5, column:189,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:189,the value of plot_cost is         : 47.435501953413876 

 At row:5, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:5, column:190,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:190,the value of plot_cost is         : 47.231596568629215 

 At row:5, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:5, column:191,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:191,the value of plot_cost is         : 47.02849924424707 

 At row:5, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:5, column:192,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:192,the value of plot_cost is         : 46.82620998026746 

 At row:5, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:5, column:193,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:193,the value of plot_cost is         : 46.62472877669035 

 At row:5, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:5, column:194,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:194,the value of plot_cost is         : 46.42405563351574 

 At row:5, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:5, column:195,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:195,the value of plot_cost is         : 46.22419055074366 

 At row:5, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:5, column:196,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:196,the value of plot_cost is         : 46.02513352837409 

 At row:5, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:5, column:197,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:197,the value of plot_cost is         : 45.82688456640705 

 At row:5, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:5, column:198,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:198,the value of plot_cost is         : 45.62944366484251 

 At row:5, column:199,the value of plot_t0 is           : 3.0
 At row:5, column:199,the value of plot_t1 is           : -0.8994974874371859
 At row:5, column:199,the value of plot_cost is         : 45.4328108236805 

 At row:6, column:0,the value of plot_t0 is           : -1.0
 At row:6, column:0,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:0,the value of plot_cost is         : 98.91398958179266 

 At row:6, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:6, column:1,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:1,the value of plot_cost is         : 98.56003892398098 

 At row:6, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:6, column:2,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:2,the value of plot_cost is         : 98.20689632657185 

 At row:6, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:6, column:3,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:3,the value of plot_cost is         : 97.8545617895652 

 At row:6, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:6, column:4,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:4,the value of plot_cost is         : 97.50303531296107 

 At row:6, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:6, column:5,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:5,the value of plot_cost is         : 97.15231689675946 

 At row:6, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:6, column:6,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:6,the value of plot_cost is         : 96.80240654096036 

 At row:6, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:6, column:7,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:7,the value of plot_cost is         : 96.45330424556377 

 At row:6, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:6, column:8,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:8,the value of plot_cost is         : 96.10501001056971 

 At row:6, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:6, column:9,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:9,the value of plot_cost is         : 95.75752383597815 

 At row:6, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:6, column:10,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:10,the value of plot_cost is         : 95.41084572178912 

 At row:6, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:6, column:11,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:11,the value of plot_cost is         : 95.06497566800262 

 At row:6, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:6, column:12,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:12,the value of plot_cost is         : 94.7199136746186 

 At row:6, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:6, column:13,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:13,the value of plot_cost is         : 94.37565974163712 

 At row:6, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:6, column:14,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:14,the value of plot_cost is         : 94.03221386905814 

 At row:6, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:6, column:15,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:15,the value of plot_cost is         : 93.68957605688168 

 At row:6, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:6, column:16,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:16,the value of plot_cost is         : 93.34774630510772 

 At row:6, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:6, column:17,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:17,the value of plot_cost is         : 93.00672461373631 

 At row:6, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:6, column:18,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:18,the value of plot_cost is         : 92.66651098276739 

 At row:6, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:6, column:19,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:19,the value of plot_cost is         : 92.32710541220096 

 At row:6, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:6, column:20,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:20,the value of plot_cost is         : 91.9885079020371 

 At row:6, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:6, column:21,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:21,the value of plot_cost is         : 91.65071845227573 

 At row:6, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:6, column:22,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:22,the value of plot_cost is         : 91.31373706291689 

 At row:6, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:6, column:23,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:23,the value of plot_cost is         : 90.97756373396055 

 At row:6, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:6, column:24,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:24,the value of plot_cost is         : 90.64219846540674 

 At row:6, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:6, column:25,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:25,the value of plot_cost is         : 90.30764125725541 

 At row:6, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:6, column:26,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:26,the value of plot_cost is         : 89.97389210950661 

 At row:6, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:6, column:27,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:27,the value of plot_cost is         : 89.64095102216032 

 At row:6, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:6, column:28,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:28,the value of plot_cost is         : 89.30881799521659 

 At row:6, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:6, column:29,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:29,the value of plot_cost is         : 88.97749302867533 

 At row:6, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:6, column:30,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:30,the value of plot_cost is         : 88.64697612253657 

 At row:6, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:6, column:31,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:31,the value of plot_cost is         : 88.31726727680037 

 At row:6, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:6, column:32,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:32,the value of plot_cost is         : 87.98836649146666 

 At row:6, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:6, column:33,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:33,the value of plot_cost is         : 87.66027376653547 

 At row:6, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:6, column:34,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:34,the value of plot_cost is         : 87.3329891020068 

 At row:6, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:6, column:35,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:35,the value of plot_cost is         : 87.00651249788065 

 At row:6, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:6, column:36,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:36,the value of plot_cost is         : 86.680843954157 

 At row:6, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:6, column:37,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:37,the value of plot_cost is         : 86.35598347083588 

 At row:6, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:6, column:38,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:38,the value of plot_cost is         : 86.03193104791727 

 At row:6, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:6, column:39,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:39,the value of plot_cost is         : 85.70868668540116 

 At row:6, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:6, column:40,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:40,the value of plot_cost is         : 85.38625038328757 

 At row:6, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:6, column:41,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:41,the value of plot_cost is         : 85.0646221415765 

 At row:6, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:6, column:42,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:42,the value of plot_cost is         : 84.74380196026796 

 At row:6, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:6, column:43,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:43,the value of plot_cost is         : 84.42378983936193 

 At row:6, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:6, column:44,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:44,the value of plot_cost is         : 84.1045857788584 

 At row:6, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:6, column:45,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:45,the value of plot_cost is         : 83.78618977875739 

 At row:6, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:6, column:46,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:46,the value of plot_cost is         : 83.46860183905888 

 At row:6, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:6, column:47,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:47,the value of plot_cost is         : 83.15182195976291 

 At row:6, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:6, column:48,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:48,the value of plot_cost is         : 82.83585014086945 

 At row:6, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:6, column:49,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:49,the value of plot_cost is         : 82.5206863823785 

 At row:6, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:6, column:50,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:50,the value of plot_cost is         : 82.20633068429007 

 At row:6, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:6, column:51,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:51,the value of plot_cost is         : 81.89278304660415 

 At row:6, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:6, column:52,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:52,the value of plot_cost is         : 81.58004346932076 

 At row:6, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:6, column:53,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:53,the value of plot_cost is         : 81.26811195243988 

 At row:6, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:6, column:54,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:54,the value of plot_cost is         : 80.9569884959615 

 At row:6, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:6, column:55,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:55,the value of plot_cost is         : 80.64667309988566 

 At row:6, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:6, column:56,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:56,the value of plot_cost is         : 80.3371657642123 

 At row:6, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:6, column:57,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:57,the value of plot_cost is         : 80.02846648894148 

 At row:6, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:6, column:58,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:58,the value of plot_cost is         : 79.72057527407316 

 At row:6, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:6, column:59,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:59,the value of plot_cost is         : 79.41349211960735 

 At row:6, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:6, column:60,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:60,the value of plot_cost is         : 79.10721702554409 

 At row:6, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:6, column:61,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:61,the value of plot_cost is         : 78.80174999188333 

 At row:6, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:6, column:62,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:62,the value of plot_cost is         : 78.49709101862507 

 At row:6, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:6, column:63,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:63,the value of plot_cost is         : 78.19324010576933 

 At row:6, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:6, column:64,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:64,the value of plot_cost is         : 77.89019725331612 

 At row:6, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:6, column:65,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:65,the value of plot_cost is         : 77.58796246126542 

 At row:6, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:6, column:66,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:66,the value of plot_cost is         : 77.28653572961721 

 At row:6, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:6, column:67,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:67,the value of plot_cost is         : 76.98591705837153 

 At row:6, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:6, column:68,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:68,the value of plot_cost is         : 76.68610644752839 

 At row:6, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:6, column:69,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:69,the value of plot_cost is         : 76.38710389708773 

 At row:6, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:6, column:70,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:70,the value of plot_cost is         : 76.08890940704958 

 At row:6, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:6, column:71,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:71,the value of plot_cost is         : 75.79152297741399 

 At row:6, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:6, column:72,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:72,the value of plot_cost is         : 75.49494460818089 

 At row:6, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:6, column:73,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:73,the value of plot_cost is         : 75.1991742993503 

 At row:6, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:6, column:74,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:74,the value of plot_cost is         : 74.90421205092224 

 At row:6, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:6, column:75,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:75,the value of plot_cost is         : 74.61005786289668 

 At row:6, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:6, column:76,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:76,the value of plot_cost is         : 74.31671173527364 

 At row:6, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:6, column:77,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:77,the value of plot_cost is         : 74.02417366805311 

 At row:6, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:6, column:78,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:78,the value of plot_cost is         : 73.7324436612351 

 At row:6, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:6, column:79,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:79,the value of plot_cost is         : 73.4415217148196 

 At row:6, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:6, column:80,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:80,the value of plot_cost is         : 73.15140782880663 

 At row:6, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:6, column:81,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:81,the value of plot_cost is         : 72.86210200319617 

 At row:6, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:6, column:82,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:82,the value of plot_cost is         : 72.57360423798822 

 At row:6, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:6, column:83,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:83,the value of plot_cost is         : 72.28591453318278 

 At row:6, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:6, column:84,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:84,the value of plot_cost is         : 71.99903288877987 

 At row:6, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:6, column:85,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:85,the value of plot_cost is         : 71.71295930477947 

 At row:6, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:6, column:86,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:86,the value of plot_cost is         : 71.42769378118157 

 At row:6, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:6, column:87,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:87,the value of plot_cost is         : 71.1432363179862 

 At row:6, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:6, column:88,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:88,the value of plot_cost is         : 70.85958691519333 

 At row:6, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:6, column:89,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:89,the value of plot_cost is         : 70.57674557280298 

 At row:6, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:6, column:90,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:90,the value of plot_cost is         : 70.29471229081516 

 At row:6, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:6, column:91,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:91,the value of plot_cost is         : 70.01348706922987 

 At row:6, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:6, column:92,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:92,the value of plot_cost is         : 69.73306990804706 

 At row:6, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:6, column:93,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:93,the value of plot_cost is         : 69.45346080726677 

 At row:6, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:6, column:94,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:94,the value of plot_cost is         : 69.17465976688901 

 At row:6, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:6, column:95,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:95,the value of plot_cost is         : 68.89666678691376 

 At row:6, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:6, column:96,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:96,the value of plot_cost is         : 68.61948186734101 

 At row:6, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:6, column:97,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:97,the value of plot_cost is         : 68.34310500817078 

 At row:6, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:6, column:98,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:98,the value of plot_cost is         : 68.06753620940309 

 At row:6, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:6, column:99,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:99,the value of plot_cost is         : 67.79277547103788 

 At row:6, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:6, column:100,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:100,the value of plot_cost is         : 67.5188227930752 

 At row:6, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:6, column:101,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:101,the value of plot_cost is         : 67.24567817551504 

 At row:6, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:6, column:102,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:102,the value of plot_cost is         : 66.9733416183574 

 At row:6, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:6, column:103,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:103,the value of plot_cost is         : 66.70181312160226 

 At row:6, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:6, column:104,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:104,the value of plot_cost is         : 66.43109268524965 

 At row:6, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:6, column:105,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:105,the value of plot_cost is         : 66.16118030929955 

 At row:6, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:6, column:106,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:106,the value of plot_cost is         : 65.89207599375196 

 At row:6, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:6, column:107,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:107,the value of plot_cost is         : 65.62377973860688 

 At row:6, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:6, column:108,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:108,the value of plot_cost is         : 65.35629154386433 

 At row:6, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:6, column:109,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:109,the value of plot_cost is         : 65.08961140952428 

 At row:6, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:6, column:110,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:110,the value of plot_cost is         : 64.82373933558677 

 At row:6, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:6, column:111,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:111,the value of plot_cost is         : 64.55867532205176 

 At row:6, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:6, column:112,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:112,the value of plot_cost is         : 64.29441936891925 

 At row:6, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:6, column:113,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:113,the value of plot_cost is         : 64.03097147618928 

 At row:6, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:6, column:114,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:114,the value of plot_cost is         : 63.76833164386181 

 At row:6, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:6, column:115,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:115,the value of plot_cost is         : 63.50649987193685 

 At row:6, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:6, column:116,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:116,the value of plot_cost is         : 63.24547616041442 

 At row:6, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:6, column:117,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:117,the value of plot_cost is         : 62.98526050929449 

 At row:6, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:6, column:118,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:118,the value of plot_cost is         : 62.7258529185771 

 At row:6, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:6, column:119,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:119,the value of plot_cost is         : 62.46725338826219 

 At row:6, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:6, column:120,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:120,the value of plot_cost is         : 62.20946191834982 

 At row:6, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:6, column:121,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:121,the value of plot_cost is         : 61.95247850883996 

 At row:6, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:6, column:122,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:122,the value of plot_cost is         : 61.69630315973262 

 At row:6, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:6, column:123,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:123,the value of plot_cost is         : 61.44093587102779 

 At row:6, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:6, column:124,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:124,the value of plot_cost is         : 61.18637664272548 

 At row:6, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:6, column:125,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:125,the value of plot_cost is         : 60.932625474825656 

 At row:6, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:6, column:126,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:126,the value of plot_cost is         : 60.67968236732839 

 At row:6, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:6, column:127,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:127,the value of plot_cost is         : 60.42754732023361 

 At row:6, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:6, column:128,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:128,the value of plot_cost is         : 60.176220333541366 

 At row:6, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:6, column:129,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:129,the value of plot_cost is         : 59.92570140725161 

 At row:6, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:6, column:130,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:130,the value of plot_cost is         : 59.6759905413644 

 At row:6, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:6, column:131,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:131,the value of plot_cost is         : 59.42708773587968 

 At row:6, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:6, column:132,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:132,the value of plot_cost is         : 59.1789929907975 

 At row:6, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:6, column:133,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:133,the value of plot_cost is         : 58.93170630611782 

 At row:6, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:6, column:134,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:134,the value of plot_cost is         : 58.68522768184065 

 At row:6, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:6, column:135,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:135,the value of plot_cost is         : 58.439557117966 

 At row:6, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:6, column:136,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:136,the value of plot_cost is         : 58.19469461449387 

 At row:6, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:6, column:137,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:137,the value of plot_cost is         : 57.950640171424254 

 At row:6, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:6, column:138,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:138,the value of plot_cost is         : 57.707393788757145 

 At row:6, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:6, column:139,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:139,the value of plot_cost is         : 57.46495546649254 

 At row:6, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:6, column:140,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:140,the value of plot_cost is         : 57.22332520463047 

 At row:6, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:6, column:141,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:141,the value of plot_cost is         : 56.98250300317092 

 At row:6, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:6, column:142,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:142,the value of plot_cost is         : 56.74248886211387 

 At row:6, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:6, column:143,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:143,the value of plot_cost is         : 56.50328278145935 

 At row:6, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:6, column:144,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:144,the value of plot_cost is         : 56.264884761207334 

 At row:6, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:6, column:145,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:145,the value of plot_cost is         : 56.027294801357826 

 At row:6, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:6, column:146,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:146,the value of plot_cost is         : 55.790512901910844 

 At row:6, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:6, column:147,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:147,the value of plot_cost is         : 55.554539062866375 

 At row:6, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:6, column:148,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:148,the value of plot_cost is         : 55.319373284224426 

 At row:6, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:6, column:149,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:149,the value of plot_cost is         : 55.08501556598498 

 At row:6, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:6, column:150,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:150,the value of plot_cost is         : 54.85146590814806 

 At row:6, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:6, column:151,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:151,the value of plot_cost is         : 54.618724310713645 

 At row:6, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:6, column:152,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:152,the value of plot_cost is         : 54.38679077368176 

 At row:6, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:6, column:153,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:153,the value of plot_cost is         : 54.15566529705238 

 At row:6, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:6, column:154,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:154,the value of plot_cost is         : 53.92534788082553 

 At row:6, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:6, column:155,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:155,the value of plot_cost is         : 53.695838525001164 

 At row:6, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:6, column:156,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:156,the value of plot_cost is         : 53.467137229579336 

 At row:6, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:6, column:157,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:157,the value of plot_cost is         : 53.23924399456002 

 At row:6, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:6, column:158,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:158,the value of plot_cost is         : 53.01215881994322 

 At row:6, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:6, column:159,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:159,the value of plot_cost is         : 52.785881705728926 

 At row:6, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:6, column:160,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:160,the value of plot_cost is         : 52.560412651917154 

 At row:6, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:6, column:161,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:161,the value of plot_cost is         : 52.3357516585079 

 At row:6, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:6, column:162,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:162,the value of plot_cost is         : 52.111898725501156 

 At row:6, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:6, column:163,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:163,the value of plot_cost is         : 51.88885385289693 

 At row:6, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:6, column:164,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:164,the value of plot_cost is         : 51.66661704069522 

 At row:6, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:6, column:165,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:165,the value of plot_cost is         : 51.44518828889602 

 At row:6, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:6, column:166,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:166,the value of plot_cost is         : 51.224567597499345 

 At row:6, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:6, column:167,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:167,the value of plot_cost is         : 51.004754966505175 

 At row:6, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:6, column:168,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:168,the value of plot_cost is         : 50.785750395913524 

 At row:6, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:6, column:169,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:169,the value of plot_cost is         : 50.56755388572438 

 At row:6, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:6, column:170,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:170,the value of plot_cost is         : 50.35016543593776 

 At row:6, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:6, column:171,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:171,the value of plot_cost is         : 50.13358504655365 

 At row:6, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:6, column:172,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:172,the value of plot_cost is         : 49.91781271757206 

 At row:6, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:6, column:173,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:173,the value of plot_cost is         : 49.702848448992995 

 At row:6, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:6, column:174,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:174,the value of plot_cost is         : 49.488692240816434 

 At row:6, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:6, column:175,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:175,the value of plot_cost is         : 49.27534409304238 

 At row:6, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:6, column:176,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:176,the value of plot_cost is         : 49.062804005670856 

 At row:6, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:6, column:177,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:177,the value of plot_cost is         : 48.85107197870184 

 At row:6, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:6, column:178,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:178,the value of plot_cost is         : 48.64014801213534 

 At row:6, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:6, column:179,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:179,the value of plot_cost is         : 48.43003210597135 

 At row:6, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:6, column:180,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:180,the value of plot_cost is         : 48.22072426020988 

 At row:6, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:6, column:181,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:181,the value of plot_cost is         : 48.01222447485092 

 At row:6, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:6, column:182,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:182,the value of plot_cost is         : 47.804532749894484 

 At row:6, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:6, column:183,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:183,the value of plot_cost is         : 47.59764908534056 

 At row:6, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:6, column:184,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:184,the value of plot_cost is         : 47.391573481189155 

 At row:6, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:6, column:185,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:185,the value of plot_cost is         : 47.18630593744025 

 At row:6, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:6, column:186,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:186,the value of plot_cost is         : 46.98184645409387 

 At row:6, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:6, column:187,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:187,the value of plot_cost is         : 46.77819503115001 

 At row:6, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:6, column:188,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:188,the value of plot_cost is         : 46.57535166860866 

 At row:6, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:6, column:189,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:189,the value of plot_cost is         : 46.373316366469815 

 At row:6, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:6, column:190,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:190,the value of plot_cost is         : 46.172089124733496 

 At row:6, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:6, column:191,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:191,the value of plot_cost is         : 45.9716699433997 

 At row:6, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:6, column:192,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:192,the value of plot_cost is         : 45.77205882246841 

 At row:6, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:6, column:193,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:193,the value of plot_cost is         : 45.573255761939635 

 At row:6, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:6, column:194,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:194,the value of plot_cost is         : 45.37526076181338 

 At row:6, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:6, column:195,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:195,the value of plot_cost is         : 45.17807382208963 

 At row:6, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:6, column:196,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:196,the value of plot_cost is         : 44.9816949427684 

 At row:6, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:6, column:197,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:197,the value of plot_cost is         : 44.78612412384969 

 At row:6, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:6, column:198,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:198,the value of plot_cost is         : 44.59136136533349 

 At row:6, column:199,the value of plot_t0 is           : 3.0
 At row:6, column:199,the value of plot_t1 is           : -0.8793969849246231
 At row:6, column:199,the value of plot_cost is         : 44.3974066672198 

 At row:7, column:0,the value of plot_t0 is           : -1.0
 At row:7, column:0,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:0,the value of plot_cost is         : 97.35821761355231 

 At row:7, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:7, column:1,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:1,the value of plot_cost is         : 97.006945098789 

 At row:7, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:7, column:2,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:2,the value of plot_cost is         : 96.65648064442816 

 At row:7, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:7, column:3,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:3,the value of plot_cost is         : 96.30682425046986 

 At row:7, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:7, column:4,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:4,the value of plot_cost is         : 95.95797591691407 

 At row:7, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:7, column:5,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:5,the value of plot_cost is         : 95.60993564376079 

 At row:7, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:7, column:6,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:6,the value of plot_cost is         : 95.26270343101004 

 At row:7, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:7, column:7,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:7,the value of plot_cost is         : 94.91627927866179 

 At row:7, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:7, column:8,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:8,the value of plot_cost is         : 94.57066318671608 

 At row:7, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:7, column:9,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:9,the value of plot_cost is         : 94.22585515517285 

 At row:7, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:7, column:10,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:10,the value of plot_cost is         : 93.88185518403215 

 At row:7, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:7, column:11,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:11,the value of plot_cost is         : 93.53866327329396 

 At row:7, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:7, column:12,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:12,the value of plot_cost is         : 93.19627942295828 

 At row:7, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:7, column:13,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:13,the value of plot_cost is         : 92.85470363302514 

 At row:7, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:7, column:14,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:14,the value of plot_cost is         : 92.5139359034945 

 At row:7, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:7, column:15,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:15,the value of plot_cost is         : 92.17397623436636 

 At row:7, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:7, column:16,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:16,the value of plot_cost is         : 91.83482462564078 

 At row:7, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:7, column:17,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:17,the value of plot_cost is         : 91.49648107731767 

 At row:7, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:7, column:18,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:18,the value of plot_cost is         : 91.15894558939709 

 At row:7, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:7, column:19,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:19,the value of plot_cost is         : 90.82221816187904 

 At row:7, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:7, column:20,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:20,the value of plot_cost is         : 90.48629879476348 

 At row:7, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:7, column:21,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:21,the value of plot_cost is         : 90.15118748805044 

 At row:7, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:7, column:22,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:22,the value of plot_cost is         : 89.81688424173991 

 At row:7, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:7, column:23,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:23,the value of plot_cost is         : 89.48338905583192 

 At row:7, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:7, column:24,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:24,the value of plot_cost is         : 89.15070193032642 

 At row:7, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:7, column:25,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:25,the value of plot_cost is         : 88.81882286522345 

 At row:7, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:7, column:26,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:26,the value of plot_cost is         : 88.487751860523 

 At row:7, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:7, column:27,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:27,the value of plot_cost is         : 88.15748891622506 

 At row:7, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:7, column:28,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:28,the value of plot_cost is         : 87.82803403232963 

 At row:7, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:7, column:29,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:29,the value of plot_cost is         : 87.49938720883671 

 At row:7, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:7, column:30,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:30,the value of plot_cost is         : 87.17154844574632 

 At row:7, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:7, column:31,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:31,the value of plot_cost is         : 86.84451774305843 

 At row:7, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:7, column:32,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:32,the value of plot_cost is         : 86.51829510077306 

 At row:7, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:7, column:33,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:33,the value of plot_cost is         : 86.19288051889022 

 At row:7, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:7, column:34,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:34,the value of plot_cost is         : 85.86827399740987 

 At row:7, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:7, column:35,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:35,the value of plot_cost is         : 85.54447553633206 

 At row:7, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:7, column:36,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:36,the value of plot_cost is         : 85.22148513565675 

 At row:7, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:7, column:37,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:37,the value of plot_cost is         : 84.89930279538396 

 At row:7, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:7, column:38,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:38,the value of plot_cost is         : 84.57792851551369 

 At row:7, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:7, column:39,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:39,the value of plot_cost is         : 84.25736229604591 

 At row:7, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:7, column:40,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:40,the value of plot_cost is         : 83.93760413698068 

 At row:7, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:7, column:41,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:41,the value of plot_cost is         : 83.61865403831794 

 At row:7, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:7, column:42,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:42,the value of plot_cost is         : 83.30051200005771 

 At row:7, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:7, column:43,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:43,the value of plot_cost is         : 82.98317802220002 

 At row:7, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:7, column:44,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:44,the value of plot_cost is         : 82.66665210474483 

 At row:7, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:7, column:45,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:45,the value of plot_cost is         : 82.35093424769217 

 At row:7, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:7, column:46,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:46,the value of plot_cost is         : 82.036024451042 

 At row:7, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:7, column:47,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:47,the value of plot_cost is         : 81.72192271479436 

 At row:7, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:7, column:48,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:48,the value of plot_cost is         : 81.40862903894924 

 At row:7, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:7, column:49,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:49,the value of plot_cost is         : 81.0961434235066 

 At row:7, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:7, column:50,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:50,the value of plot_cost is         : 80.78446586846654 

 At row:7, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:7, column:51,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:51,the value of plot_cost is         : 80.47359637382895 

 At row:7, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:7, column:52,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:52,the value of plot_cost is         : 80.16353493959387 

 At row:7, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:7, column:53,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:53,the value of plot_cost is         : 79.85428156576133 

 At row:7, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:7, column:54,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:54,the value of plot_cost is         : 79.54583625233128 

 At row:7, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:7, column:55,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:55,the value of plot_cost is         : 79.23819899930378 

 At row:7, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:7, column:56,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:56,the value of plot_cost is         : 78.93136980667876 

 At row:7, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:7, column:57,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:57,the value of plot_cost is         : 78.62534867445628 

 At row:7, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:7, column:58,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:58,the value of plot_cost is         : 78.3201356026363 

 At row:7, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:7, column:59,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:59,the value of plot_cost is         : 78.01573059121883 

 At row:7, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:7, column:60,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:60,the value of plot_cost is         : 77.7121336402039 

 At row:7, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:7, column:61,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:61,the value of plot_cost is         : 77.40934474959147 

 At row:7, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:7, column:62,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:62,the value of plot_cost is         : 77.10736391938154 

 At row:7, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:7, column:63,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:63,the value of plot_cost is         : 76.80619114957413 

 At row:7, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:7, column:64,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:64,the value of plot_cost is         : 76.50582644016926 

 At row:7, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:7, column:65,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:65,the value of plot_cost is         : 76.20626979116689 

 At row:7, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:7, column:66,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:66,the value of plot_cost is         : 75.90752120256705 

 At row:7, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:7, column:67,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:67,the value of plot_cost is         : 75.60958067436971 

 At row:7, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:7, column:68,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:68,the value of plot_cost is         : 75.31244820657487 

 At row:7, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:7, column:69,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:69,the value of plot_cost is         : 75.01612379918255 

 At row:7, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:7, column:70,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:70,the value of plot_cost is         : 74.72060745219277 

 At row:7, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:7, column:71,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:71,the value of plot_cost is         : 74.42589916560549 

 At row:7, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:7, column:72,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:72,the value of plot_cost is         : 74.13199893942071 

 At row:7, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:7, column:73,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:73,the value of plot_cost is         : 73.83890677363847 

 At row:7, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:7, column:74,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:74,the value of plot_cost is         : 73.54662266825873 

 At row:7, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:7, column:75,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:75,the value of plot_cost is         : 73.25514662328152 

 At row:7, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:7, column:76,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:76,the value of plot_cost is         : 72.96447863870681 

 At row:7, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:7, column:77,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:77,the value of plot_cost is         : 72.67461871453463 

 At row:7, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:7, column:78,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:78,the value of plot_cost is         : 72.38556685076495 

 At row:7, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:7, column:79,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:79,the value of plot_cost is         : 72.09732304739778 

 At row:7, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:7, column:80,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:80,the value of plot_cost is         : 71.80988730443315 

 At row:7, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:7, column:81,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:81,the value of plot_cost is         : 71.52325962187102 

 At row:7, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:7, column:82,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:82,the value of plot_cost is         : 71.2374399997114 

 At row:7, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:7, column:83,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:83,the value of plot_cost is         : 70.9524284379543 

 At row:7, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:7, column:84,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:84,the value of plot_cost is         : 70.66822493659971 

 At row:7, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:7, column:85,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:85,the value of plot_cost is         : 70.38482949564765 

 At row:7, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:7, column:86,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:86,the value of plot_cost is         : 70.10224211509811 

 At row:7, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:7, column:87,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:87,the value of plot_cost is         : 69.82046279495107 

 At row:7, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:7, column:88,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:88,the value of plot_cost is         : 69.53949153520654 

 At row:7, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:7, column:89,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:89,the value of plot_cost is         : 69.25932833586454 

 At row:7, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:7, column:90,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:90,the value of plot_cost is         : 68.97997319692504 

 At row:7, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:7, column:91,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:91,the value of plot_cost is         : 68.70142611838806 

 At row:7, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:7, column:92,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:92,the value of plot_cost is         : 68.42368710025359 

 At row:7, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:7, column:93,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:93,the value of plot_cost is         : 68.14675614252165 

 At row:7, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:7, column:94,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:94,the value of plot_cost is         : 67.87063324519222 

 At row:7, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:7, column:95,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:95,the value of plot_cost is         : 67.5953184082653 

 At row:7, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:7, column:96,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:96,the value of plot_cost is         : 67.32081163174091 

 At row:7, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:7, column:97,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:97,the value of plot_cost is         : 67.04711291561902 

 At row:7, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:7, column:98,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:98,the value of plot_cost is         : 66.77422225989963 

 At row:7, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:7, column:99,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:99,the value of plot_cost is         : 66.50213966458278 

 At row:7, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:7, column:100,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:100,the value of plot_cost is         : 66.23086512966843 

 At row:7, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:7, column:101,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:101,the value of plot_cost is         : 65.96039865515662 

 At row:7, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:7, column:102,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:102,the value of plot_cost is         : 65.6907402410473 

 At row:7, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:7, column:103,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:103,the value of plot_cost is         : 65.4218898873405 

 At row:7, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:7, column:104,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:104,the value of plot_cost is         : 65.15384759403622 

 At row:7, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:7, column:105,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:105,the value of plot_cost is         : 64.88661336113447 

 At row:7, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:7, column:106,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:106,the value of plot_cost is         : 64.62018718863521 

 At row:7, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:7, column:107,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:107,the value of plot_cost is         : 64.35456907653848 

 At row:7, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:7, column:108,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:108,the value of plot_cost is         : 64.08975902484424 

 At row:7, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:7, column:109,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:109,the value of plot_cost is         : 63.82575703355254 

 At row:7, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:7, column:110,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:110,the value of plot_cost is         : 63.56256310266335 

 At row:7, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:7, column:111,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:111,the value of plot_cost is         : 63.30017723217668 

 At row:7, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:7, column:112,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:112,the value of plot_cost is         : 63.0385994220925 

 At row:7, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:7, column:113,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:113,the value of plot_cost is         : 62.77782967241087 

 At row:7, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:7, column:114,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:114,the value of plot_cost is         : 62.51786798313174 

 At row:7, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:7, column:115,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:115,the value of plot_cost is         : 62.258714354255126 

 At row:7, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:7, column:116,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:116,the value of plot_cost is         : 62.00036878578103 

 At row:7, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:7, column:117,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:117,the value of plot_cost is         : 61.74283127770944 

 At row:7, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:7, column:118,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:118,the value of plot_cost is         : 61.48610183004036 

 At row:7, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:7, column:119,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:119,the value of plot_cost is         : 61.230180442773815 

 At row:7, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:7, column:120,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:120,the value of plot_cost is         : 60.975067115909766 

 At row:7, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:7, column:121,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:121,the value of plot_cost is         : 60.72076184944825 

 At row:7, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:7, column:122,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:122,the value of plot_cost is         : 60.46726464338923 

 At row:7, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:7, column:123,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:123,the value of plot_cost is         : 60.21457549773273 

 At row:7, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:7, column:124,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:124,the value of plot_cost is         : 59.962694412478754 

 At row:7, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:7, column:125,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:125,the value of plot_cost is         : 59.711621387627304 

 At row:7, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:7, column:126,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:126,the value of plot_cost is         : 59.46135642317836 

 At row:7, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:7, column:127,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:127,the value of plot_cost is         : 59.21189951913192 

 At row:7, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:7, column:128,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:128,the value of plot_cost is         : 58.963250675487984 

 At row:7, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:7, column:129,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:129,the value of plot_cost is         : 58.71540989224659 

 At row:7, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:7, column:130,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:130,the value of plot_cost is         : 58.468377169407695 

 At row:7, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:7, column:131,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:131,the value of plot_cost is         : 58.222152506971334 

 At row:7, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:7, column:132,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:132,the value of plot_cost is         : 57.976735904937456 

 At row:7, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:7, column:133,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:133,the value of plot_cost is         : 57.732127363306105 

 At row:7, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:7, column:134,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:134,the value of plot_cost is         : 57.488326882077295 

 At row:7, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:7, column:135,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:135,the value of plot_cost is         : 57.24533446125097 

 At row:7, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:7, column:136,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:136,the value of plot_cost is         : 57.003150100827185 

 At row:7, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:7, column:137,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:137,the value of plot_cost is         : 56.761773800805905 

 At row:7, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:7, column:138,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:138,the value of plot_cost is         : 56.52120556118713 

 At row:7, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:7, column:139,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:139,the value of plot_cost is         : 56.281445381970876 

 At row:7, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:7, column:140,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:140,the value of plot_cost is         : 56.042493263157134 

 At row:7, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:7, column:141,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:141,the value of plot_cost is         : 55.80434920474592 

 At row:7, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:7, column:142,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:142,the value of plot_cost is         : 55.567013206737194 

 At row:7, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:7, column:143,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:143,the value of plot_cost is         : 55.330485269131 

 At row:7, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:7, column:144,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:144,the value of plot_cost is         : 55.09476539192733 

 At row:7, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:7, column:145,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:145,the value of plot_cost is         : 54.859853575126166 

 At row:7, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:7, column:146,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:146,the value of plot_cost is         : 54.62574981872753 

 At row:7, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:7, column:147,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:147,the value of plot_cost is         : 54.392454122731394 

 At row:7, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:7, column:148,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:148,the value of plot_cost is         : 54.15996648713777 

 At row:7, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:7, column:149,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:149,the value of plot_cost is         : 53.92828691194667 

 At row:7, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:7, column:150,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:150,the value of plot_cost is         : 53.69741539715808 

 At row:7, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:7, column:151,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:151,the value of plot_cost is         : 53.467351942772 

 At row:7, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:7, column:152,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:152,the value of plot_cost is         : 53.23809654878844 

 At row:7, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:7, column:153,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:153,the value of plot_cost is         : 53.0096492152074 

 At row:7, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:7, column:154,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:154,the value of plot_cost is         : 52.78200994202888 

 At row:7, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:7, column:155,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:155,the value of plot_cost is         : 52.55517872925286 

 At row:7, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:7, column:156,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:156,the value of plot_cost is         : 52.32915557687938 

 At row:7, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:7, column:157,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:157,the value of plot_cost is         : 52.10394048490839 

 At row:7, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:7, column:158,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:158,the value of plot_cost is         : 51.87953345333992 

 At row:7, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:7, column:159,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:159,the value of plot_cost is         : 51.655934482173976 

 At row:7, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:7, column:160,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:160,the value of plot_cost is         : 51.43314357141054 

 At row:7, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:7, column:161,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:161,the value of plot_cost is         : 51.2111607210496 

 At row:7, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:7, column:162,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:162,the value of plot_cost is         : 50.9899859310912 

 At row:7, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:7, column:163,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:163,the value of plot_cost is         : 50.769619201535306 

 At row:7, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:7, column:164,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:164,the value of plot_cost is         : 50.550060532381934 

 At row:7, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:7, column:165,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:165,the value of plot_cost is         : 50.33130992363108 

 At row:7, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:7, column:166,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:166,the value of plot_cost is         : 50.113367375282735 

 At row:7, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:7, column:167,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:167,the value of plot_cost is         : 49.896232887336915 

 At row:7, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:7, column:168,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:168,the value of plot_cost is         : 49.67990645979357 

 At row:7, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:7, column:169,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:169,the value of plot_cost is         : 49.464388092652776 

 At row:7, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:7, column:170,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:170,the value of plot_cost is         : 49.24967778591449 

 At row:7, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:7, column:171,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:171,the value of plot_cost is         : 49.03577553957872 

 At row:7, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:7, column:172,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:172,the value of plot_cost is         : 48.82268135364547 

 At row:7, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:7, column:173,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:173,the value of plot_cost is         : 48.610395228114726 

 At row:7, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:7, column:174,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:174,the value of plot_cost is         : 48.39891716298651 

 At row:7, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:7, column:175,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:175,the value of plot_cost is         : 48.18824715826079 

 At row:7, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:7, column:176,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:176,the value of plot_cost is         : 47.9783852139376 

 At row:7, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:7, column:177,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:177,the value of plot_cost is         : 47.76933133001692 

 At row:7, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:7, column:178,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:178,the value of plot_cost is         : 47.56108550649875 

 At row:7, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:7, column:179,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:179,the value of plot_cost is         : 47.3536477433831 

 At row:7, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:7, column:180,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:180,the value of plot_cost is         : 47.14701804066997 

 At row:7, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:7, column:181,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:181,the value of plot_cost is         : 46.94119639835934 

 At row:7, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:7, column:182,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:182,the value of plot_cost is         : 46.73618281645124 

 At row:7, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:7, column:183,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:183,the value of plot_cost is         : 46.53197729494565 

 At row:7, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:7, column:184,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:184,the value of plot_cost is         : 46.32857983384258 

 At row:7, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:7, column:185,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:185,the value of plot_cost is         : 46.12599043314203 

 At row:7, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:7, column:186,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:186,the value of plot_cost is         : 45.92420909284398 

 At row:7, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:7, column:187,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:187,the value of plot_cost is         : 45.723235812948445 

 At row:7, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:7, column:188,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:188,the value of plot_cost is         : 45.52307059345543 

 At row:7, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:7, column:189,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:189,the value of plot_cost is         : 45.32371343436494 

 At row:7, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:7, column:190,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:190,the value of plot_cost is         : 45.12516433567695 

 At row:7, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:7, column:191,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:191,the value of plot_cost is         : 44.92742329739147 

 At row:7, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:7, column:192,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:192,the value of plot_cost is         : 44.730490319508526 

 At row:7, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:7, column:193,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:193,the value of plot_cost is         : 44.53436540202808 

 At row:7, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:7, column:194,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:194,the value of plot_cost is         : 44.33904854495015 

 At row:7, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:7, column:195,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:195,the value of plot_cost is         : 44.14453974827475 

 At row:7, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:7, column:196,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:196,the value of plot_cost is         : 43.95083901200186 

 At row:7, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:7, column:197,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:197,the value of plot_cost is         : 43.75794633613148 

 At row:7, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:7, column:198,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:198,the value of plot_cost is         : 43.56586172066361 

 At row:7, column:199,the value of plot_t0 is           : 3.0
 At row:7, column:199,the value of plot_t1 is           : -0.8592964824120604
 At row:7, column:199,the value of plot_cost is         : 43.37458516559827 

 At row:8, column:0,the value of plot_t0 is           : -1.0
 At row:8, column:0,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:0,the value of plot_cost is         : 95.81502830015114 

 At row:8, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:8, column:1,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:1,the value of plot_cost is         : 95.46643392843615 

 At row:8, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:8, column:2,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:2,the value of plot_cost is         : 95.11864761712366 

 At row:8, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:8, column:3,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:3,the value of plot_cost is         : 94.77166936621367 

 At row:8, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:8, column:4,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:4,the value of plot_cost is         : 94.42549917570622 

 At row:8, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:8, column:5,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:5,the value of plot_cost is         : 94.0801370456013 

 At row:8, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:8, column:6,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:6,the value of plot_cost is         : 93.73558297589886 

 At row:8, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:8, column:7,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:7,the value of plot_cost is         : 93.39183696659896 

 At row:8, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:8, column:8,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:8,the value of plot_cost is         : 93.04889901770156 

 At row:8, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:8, column:9,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:9,the value of plot_cost is         : 92.70676912920669 

 At row:8, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:8, column:10,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:10,the value of plot_cost is         : 92.36544730111433 

 At row:8, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:8, column:11,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:11,the value of plot_cost is         : 92.02493353342447 

 At row:8, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:8, column:12,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:12,the value of plot_cost is         : 91.68522782613714 

 At row:8, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:8, column:13,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:13,the value of plot_cost is         : 91.34633017925232 

 At row:8, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:8, column:14,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:14,the value of plot_cost is         : 91.00824059277001 

 At row:8, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:8, column:15,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:15,the value of plot_cost is         : 90.67095906669023 

 At row:8, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:8, column:16,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:16,the value of plot_cost is         : 90.33448560101296 

 At row:8, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:8, column:17,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:17,the value of plot_cost is         : 89.99882019573819 

 At row:8, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:8, column:18,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:18,the value of plot_cost is         : 89.66396285086596 

 At row:8, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:8, column:19,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:19,the value of plot_cost is         : 89.32991356639621 

 At row:8, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:8, column:20,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:20,the value of plot_cost is         : 88.99667234232902 

 At row:8, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:8, column:21,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:21,the value of plot_cost is         : 88.6642391786643 

 At row:8, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:8, column:22,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:22,the value of plot_cost is         : 88.33261407540213 

 At row:8, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:8, column:23,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:23,the value of plot_cost is         : 88.00179703254246 

 At row:8, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:8, column:24,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:24,the value of plot_cost is         : 87.6717880500853 

 At row:8, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:8, column:25,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:25,the value of plot_cost is         : 87.34258712803067 

 At row:8, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:8, column:26,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:26,the value of plot_cost is         : 87.01419426637854 

 At row:8, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:8, column:27,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:27,the value of plot_cost is         : 86.68660946512894 

 At row:8, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:8, column:28,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:28,the value of plot_cost is         : 86.35983272428184 

 At row:8, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:8, column:29,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:29,the value of plot_cost is         : 86.03386404383728 

 At row:8, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:8, column:30,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:30,the value of plot_cost is         : 85.70870342379521 

 At row:8, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:8, column:31,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:31,the value of plot_cost is         : 85.38435086415566 

 At row:8, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:8, column:32,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:32,the value of plot_cost is         : 85.06080636491862 

 At row:8, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:8, column:33,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:33,the value of plot_cost is         : 84.73806992608411 

 At row:8, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:8, column:34,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:34,the value of plot_cost is         : 84.41614154765209 

 At row:8, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:8, column:35,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:35,the value of plot_cost is         : 84.09502122962262 

 At row:8, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:8, column:36,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:36,the value of plot_cost is         : 83.77470897199565 

 At row:8, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:8, column:37,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:37,the value of plot_cost is         : 83.45520477477119 

 At row:8, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:8, column:38,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:38,the value of plot_cost is         : 83.13650863794925 

 At row:8, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:8, column:39,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:39,the value of plot_cost is         : 82.81862056152983 

 At row:8, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:8, column:40,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:40,the value of plot_cost is         : 82.50154054551291 

 At row:8, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:8, column:41,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:41,the value of plot_cost is         : 82.18526858989851 

 At row:8, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:8, column:42,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:42,the value of plot_cost is         : 81.86980469468664 

 At row:8, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:8, column:43,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:43,the value of plot_cost is         : 81.55514885987726 

 At row:8, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:8, column:44,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:44,the value of plot_cost is         : 81.2413010854704 

 At row:8, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:8, column:45,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:45,the value of plot_cost is         : 80.92826137146608 

 At row:8, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:8, column:46,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:46,the value of plot_cost is         : 80.61602971786425 

 At row:8, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:8, column:47,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:47,the value of plot_cost is         : 80.30460612466494 

 At row:8, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:8, column:48,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:48,the value of plot_cost is         : 79.99399059186817 

 At row:8, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:8, column:49,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:49,the value of plot_cost is         : 79.6841831194739 

 At row:8, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:8, column:50,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:50,the value of plot_cost is         : 79.37518370748212 

 At row:8, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:8, column:51,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:51,the value of plot_cost is         : 79.06699235589286 

 At row:8, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:8, column:52,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:52,the value of plot_cost is         : 78.75960906470614 

 At row:8, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:8, column:53,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:53,the value of plot_cost is         : 78.45303383392194 

 At row:8, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:8, column:54,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:54,the value of plot_cost is         : 78.14726666354022 

 At row:8, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:8, column:55,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:55,the value of plot_cost is         : 77.84230755356104 

 At row:8, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:8, column:56,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:56,the value of plot_cost is         : 77.53815650398438 

 At row:8, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:8, column:57,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:57,the value of plot_cost is         : 77.23481351481023 

 At row:8, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:8, column:58,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:58,the value of plot_cost is         : 76.93227858603859 

 At row:8, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:8, column:59,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:59,the value of plot_cost is         : 76.63055171766946 

 At row:8, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:8, column:60,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:60,the value of plot_cost is         : 76.32963290970285 

 At row:8, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:8, column:61,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:61,the value of plot_cost is         : 76.02952216213875 

 At row:8, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:8, column:62,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:62,the value of plot_cost is         : 75.73021947497716 

 At row:8, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:8, column:63,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:63,the value of plot_cost is         : 75.43172484821811 

 At row:8, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:8, column:64,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:64,the value of plot_cost is         : 75.13403828186155 

 At row:8, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:8, column:65,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:65,the value of plot_cost is         : 74.83715977590752 

 At row:8, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:8, column:66,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:66,the value of plot_cost is         : 74.541089330356 

 At row:8, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:8, column:67,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:67,the value of plot_cost is         : 74.245826945207 

 At row:8, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:8, column:68,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:68,the value of plot_cost is         : 73.95137262046052 

 At row:8, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:8, column:69,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:69,the value of plot_cost is         : 73.65772635611656 

 At row:8, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:8, column:70,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:70,the value of plot_cost is         : 73.36488815217508 

 At row:8, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:8, column:71,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:71,the value of plot_cost is         : 73.07285800863613 

 At row:8, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:8, column:72,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:72,the value of plot_cost is         : 72.7816359254997 

 At row:8, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:8, column:73,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:73,the value of plot_cost is         : 72.4912219027658 

 At row:8, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:8, column:74,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:74,the value of plot_cost is         : 72.2016159404344 

 At row:8, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:8, column:75,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:75,the value of plot_cost is         : 71.9128180385055 

 At row:8, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:8, column:76,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:76,the value of plot_cost is         : 71.62482819697914 

 At row:8, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:8, column:77,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:77,the value of plot_cost is         : 71.3376464158553 

 At row:8, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:8, column:78,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:78,the value of plot_cost is         : 71.05127269513395 

 At row:8, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:8, column:79,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:79,the value of plot_cost is         : 70.76570703481514 

 At row:8, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:8, column:80,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:80,the value of plot_cost is         : 70.48094943489883 

 At row:8, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:8, column:81,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:81,the value of plot_cost is         : 70.19699989538503 

 At row:8, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:8, column:82,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:82,the value of plot_cost is         : 69.91385841627374 

 At row:8, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:8, column:83,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:83,the value of plot_cost is         : 69.63152499756498 

 At row:8, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:8, column:84,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:84,the value of plot_cost is         : 69.34999963925874 

 At row:8, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:8, column:85,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:85,the value of plot_cost is         : 69.069282341355 

 At row:8, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:8, column:86,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:86,the value of plot_cost is         : 68.78937310385379 

 At row:8, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:8, column:87,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:87,the value of plot_cost is         : 68.5102719267551 

 At row:8, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:8, column:88,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:88,the value of plot_cost is         : 68.2319788100589 

 At row:8, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:8, column:89,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:89,the value of plot_cost is         : 67.95449375376522 

 At row:8, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:8, column:90,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:90,the value of plot_cost is         : 67.67781675787408 

 At row:8, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:8, column:91,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:91,the value of plot_cost is         : 67.40194782238542 

 At row:8, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:8, column:92,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:92,the value of plot_cost is         : 67.1268869472993 

 At row:8, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:8, column:93,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:93,the value of plot_cost is         : 66.85263413261569 

 At row:8, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:8, column:94,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:94,the value of plot_cost is         : 66.57918937833459 

 At row:8, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:8, column:95,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:95,the value of plot_cost is         : 66.306552684456 

 At row:8, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:8, column:96,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:96,the value of plot_cost is         : 66.03472405097995 

 At row:8, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:8, column:97,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:97,the value of plot_cost is         : 65.76370347790639 

 At row:8, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:8, column:98,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:98,the value of plot_cost is         : 65.49349096523535 

 At row:8, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:8, column:99,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:99,the value of plot_cost is         : 65.22408651296684 

 At row:8, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:8, column:100,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:100,the value of plot_cost is         : 64.95549012110085 

 At row:8, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:8, column:101,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:101,the value of plot_cost is         : 64.68770178963734 

 At row:8, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:8, column:102,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:102,the value of plot_cost is         : 64.42072151857636 

 At row:8, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:8, column:103,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:103,the value of plot_cost is         : 64.15454930791789 

 At row:8, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:8, column:104,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:104,the value of plot_cost is         : 63.88918515766195 

 At row:8, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:8, column:105,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:105,the value of plot_cost is         : 63.62462906780853 

 At row:8, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:8, column:106,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:106,the value of plot_cost is         : 63.36088103835761 

 At row:8, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:8, column:107,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:107,the value of plot_cost is         : 63.097941069309215 

 At row:8, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:8, column:108,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:108,the value of plot_cost is         : 62.83580916066333 

 At row:8, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:8, column:109,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:109,the value of plot_cost is         : 62.57448531241995 

 At row:8, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:8, column:110,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:110,the value of plot_cost is         : 62.31396952457909 

 At row:8, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:8, column:111,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:111,the value of plot_cost is         : 62.05426179714077 

 At row:8, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:8, column:112,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:112,the value of plot_cost is         : 61.79536213010492 

 At row:8, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:8, column:113,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:113,the value of plot_cost is         : 61.53727052347162 

 At row:8, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:8, column:114,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:114,the value of plot_cost is         : 61.279986977240824 

 At row:8, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:8, column:115,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:115,the value of plot_cost is         : 61.02351149141254 

 At row:8, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:8, column:116,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:116,the value of plot_cost is         : 60.76784406598678 

 At row:8, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:8, column:117,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:117,the value of plot_cost is         : 60.512984700963536 

 At row:8, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:8, column:118,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:118,the value of plot_cost is         : 60.258933396342805 

 At row:8, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:8, column:119,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:119,the value of plot_cost is         : 60.00569015212457 

 At row:8, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:8, column:120,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:120,the value of plot_cost is         : 59.75325496830888 

 At row:8, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:8, column:121,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:121,the value of plot_cost is         : 59.501627844895694 

 At row:8, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:8, column:122,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:122,the value of plot_cost is         : 59.25080878188501 

 At row:8, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:8, column:123,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:123,the value of plot_cost is         : 59.00079777927685 

 At row:8, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:8, column:124,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:124,the value of plot_cost is         : 58.7515948370712 

 At row:8, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:8, column:125,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:125,the value of plot_cost is         : 58.503199955268066 

 At row:8, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:8, column:126,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:126,the value of plot_cost is         : 58.25561313386746 

 At row:8, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:8, column:127,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:127,the value of plot_cost is         : 58.008834372869366 

 At row:8, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:8, column:128,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:128,the value of plot_cost is         : 57.762863672273774 

 At row:8, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:8, column:129,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:129,the value of plot_cost is         : 57.51770103208072 

 At row:8, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:8, column:130,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:130,the value of plot_cost is         : 57.273346452290156 

 At row:8, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:8, column:131,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:131,the value of plot_cost is         : 57.02979993290213 

 At row:8, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:8, column:132,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:132,the value of plot_cost is         : 56.787061473916594 

 At row:8, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:8, column:133,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:133,the value of plot_cost is         : 56.54513107533359 

 At row:8, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:8, column:134,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:134,the value of plot_cost is         : 56.30400873715309 

 At row:8, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:8, column:135,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:135,the value of plot_cost is         : 56.063694459375114 

 At row:8, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:8, column:136,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:136,the value of plot_cost is         : 55.82418824199966 

 At row:8, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:8, column:137,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:137,the value of plot_cost is         : 55.585490085026706 

 At row:8, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:8, column:138,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:138,the value of plot_cost is         : 55.347599988456274 

 At row:8, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:8, column:139,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:139,the value of plot_cost is         : 55.110517952288355 

 At row:8, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:8, column:140,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:140,the value of plot_cost is         : 54.87424397652295 

 At row:8, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:8, column:141,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:141,the value of plot_cost is         : 54.63877806116006 

 At row:8, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:8, column:142,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:142,the value of plot_cost is         : 54.404120206199686 

 At row:8, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:8, column:143,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:143,the value of plot_cost is         : 54.17027041164184 

 At row:8, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:8, column:144,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:144,the value of plot_cost is         : 53.93722867748649 

 At row:8, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:8, column:145,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:145,the value of plot_cost is         : 53.704995003733664 

 At row:8, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:8, column:146,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:146,the value of plot_cost is         : 53.473569390383346 

 At row:8, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:8, column:147,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:147,the value of plot_cost is         : 53.24295183743556 

 At row:8, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:8, column:148,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:148,the value of plot_cost is         : 53.01314234489028 

 At row:8, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:8, column:149,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:149,the value of plot_cost is         : 52.78414091274751 

 At row:8, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:8, column:150,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:150,the value of plot_cost is         : 52.55594754100726 

 At row:8, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:8, column:151,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:151,the value of plot_cost is         : 52.328562229669515 

 At row:8, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:8, column:152,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:152,the value of plot_cost is         : 52.10198497873429 

 At row:8, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:8, column:153,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:153,the value of plot_cost is         : 51.8762157882016 

 At row:8, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:8, column:154,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:154,the value of plot_cost is         : 51.651254658071394 

 At row:8, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:8, column:155,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:155,the value of plot_cost is         : 51.42710158834372 

 At row:8, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:8, column:156,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:156,the value of plot_cost is         : 51.20375657901856 

 At row:8, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:8, column:157,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:157,the value of plot_cost is         : 50.98121963009592 

 At row:8, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:8, column:158,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:158,the value of plot_cost is         : 50.75949074157578 

 At row:8, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:8, column:159,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:159,the value of plot_cost is         : 50.53856991345817 

 At row:8, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:8, column:160,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:160,the value of plot_cost is         : 50.31845714574306 

 At row:8, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:8, column:161,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:161,the value of plot_cost is         : 50.09915243843047 

 At row:8, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:8, column:162,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:162,the value of plot_cost is         : 49.880655791520404 

 At row:8, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:8, column:163,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:163,the value of plot_cost is         : 49.662967205012855 

 At row:8, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:8, column:164,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:164,the value of plot_cost is         : 49.44608667890782 

 At row:8, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:8, column:165,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:165,the value of plot_cost is         : 49.23001421320529 

 At row:8, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:8, column:166,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:166,the value of plot_cost is         : 49.01474980790528 

 At row:8, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:8, column:167,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:167,the value of plot_cost is         : 48.80029346300779 

 At row:8, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:8, column:168,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:168,the value of plot_cost is         : 48.586645178512796 

 At row:8, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:8, column:169,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:169,the value of plot_cost is         : 48.37380495442034 

 At row:8, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:8, column:170,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:170,the value of plot_cost is         : 48.16177279073039 

 At row:8, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:8, column:171,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:171,the value of plot_cost is         : 47.95054868744294 

 At row:8, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:8, column:172,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:172,the value of plot_cost is         : 47.74013264455803 

 At row:8, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:8, column:173,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:173,the value of plot_cost is         : 47.53052466207563 

 At row:8, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:8, column:174,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:174,the value of plot_cost is         : 47.32172473999573 

 At row:8, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:8, column:175,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:175,the value of plot_cost is         : 47.11373287831836 

 At row:8, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:8, column:176,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:176,the value of plot_cost is         : 46.90654907704351 

 At row:8, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:8, column:177,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:177,the value of plot_cost is         : 46.70017333617116 

 At row:8, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:8, column:178,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:178,the value of plot_cost is         : 46.494605655701335 

 At row:8, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:8, column:179,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:179,the value of plot_cost is         : 46.289846035634014 

 At row:8, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:8, column:180,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:180,the value of plot_cost is         : 46.08589447596921 

 At row:8, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:8, column:181,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:181,the value of plot_cost is         : 45.88275097670693 

 At row:8, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:8, column:182,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:182,the value of plot_cost is         : 45.68041553784716 

 At row:8, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:8, column:183,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:183,the value of plot_cost is         : 45.47888815938991 

 At row:8, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:8, column:184,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:184,the value of plot_cost is         : 45.278168841335166 

 At row:8, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:8, column:185,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:185,the value of plot_cost is         : 45.07825758368295 

 At row:8, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:8, column:186,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:186,the value of plot_cost is         : 44.87915438643324 

 At row:8, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:8, column:187,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:187,the value of plot_cost is         : 44.68085924958604 

 At row:8, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:8, column:188,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:188,the value of plot_cost is         : 44.48337217314136 

 At row:8, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:8, column:189,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:189,the value of plot_cost is         : 44.28669315709921 

 At row:8, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:8, column:190,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:190,the value of plot_cost is         : 44.09082220145956 

 At row:8, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:8, column:191,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:191,the value of plot_cost is         : 43.89575930622241 

 At row:8, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:8, column:192,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:192,the value of plot_cost is         : 43.70150447138781 

 At row:8, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:8, column:193,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:193,the value of plot_cost is         : 43.5080576969557 

 At row:8, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:8, column:194,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:194,the value of plot_cost is         : 43.31541898292611 

 At row:8, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:8, column:195,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:195,the value of plot_cost is         : 43.12358832929903 

 At row:8, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:8, column:196,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:196,the value of plot_cost is         : 42.93256573607448 

 At row:8, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:8, column:197,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:197,the value of plot_cost is         : 42.74235120325244 

 At row:8, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:8, column:198,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:198,the value of plot_cost is         : 42.55294473083291 

 At row:8, column:199,the value of plot_t0 is           : 3.0
 At row:8, column:199,the value of plot_t1 is           : -0.8391959798994975
 At row:8, column:199,the value of plot_cost is         : 42.3643463188159 

 At row:9, column:0,the value of plot_t0 is           : -1.0
 At row:9, column:0,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:0,the value of plot_cost is         : 94.28442164158913 

 At row:9, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:9, column:1,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:1,the value of plot_cost is         : 93.93850541292247 

 At row:9, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:9, column:2,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:2,the value of plot_cost is         : 93.59339724465832 

 At row:9, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:9, column:3,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:3,the value of plot_cost is         : 93.24909713679669 

 At row:9, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:9, column:4,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:4,the value of plot_cost is         : 92.90560508933756 

 At row:9, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:9, column:5,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:5,the value of plot_cost is         : 92.56292110228095 

 At row:9, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:9, column:6,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:6,the value of plot_cost is         : 92.22104517562687 

 At row:9, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:9, column:7,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:7,the value of plot_cost is         : 91.87997730937529 

 At row:9, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:9, column:8,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:8,the value of plot_cost is         : 91.53971750352623 

 At row:9, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:9, column:9,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:9,the value of plot_cost is         : 91.2002657580797 

 At row:9, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:9, column:10,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:10,the value of plot_cost is         : 90.86162207303566 

 At row:9, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:9, column:11,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:11,the value of plot_cost is         : 90.52378644839416 

 At row:9, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:9, column:12,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:12,the value of plot_cost is         : 90.18675888415515 

 At row:9, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:9, column:13,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:13,the value of plot_cost is         : 89.85053938031868 

 At row:9, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:9, column:14,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:14,the value of plot_cost is         : 89.51512793688471 

 At row:9, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:9, column:15,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:15,the value of plot_cost is         : 89.18052455385323 

 At row:9, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:9, column:16,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:16,the value of plot_cost is         : 88.8467292312243 

 At row:9, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:9, column:17,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:17,the value of plot_cost is         : 88.51374196899788 

 At row:9, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:9, column:18,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:18,the value of plot_cost is         : 88.18156276717399 

 At row:9, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:9, column:19,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:19,the value of plot_cost is         : 87.85019162575259 

 At row:9, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:9, column:20,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:20,the value of plot_cost is         : 87.51962854473372 

 At row:9, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:9, column:21,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:21,the value of plot_cost is         : 87.18987352411735 

 At row:9, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:9, column:22,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:22,the value of plot_cost is         : 86.8609265639035 

 At row:9, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:9, column:23,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:23,the value of plot_cost is         : 86.53278766409217 

 At row:9, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:9, column:24,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:24,the value of plot_cost is         : 86.20545682468335 

 At row:9, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:9, column:25,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:25,the value of plot_cost is         : 85.87893404567706 

 At row:9, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:9, column:26,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:26,the value of plot_cost is         : 85.55321932707325 

 At row:9, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:9, column:27,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:27,the value of plot_cost is         : 85.22831266887198 

 At row:9, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:9, column:28,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:28,the value of plot_cost is         : 84.90421407107323 

 At row:9, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:9, column:29,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:29,the value of plot_cost is         : 84.58092353367698 

 At row:9, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:9, column:30,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:30,the value of plot_cost is         : 84.25844105668325 

 At row:9, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:9, column:31,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:31,the value of plot_cost is         : 83.93676664009206 

 At row:9, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:9, column:32,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:32,the value of plot_cost is         : 83.61590028390336 

 At row:9, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:9, column:33,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:33,the value of plot_cost is         : 83.29584198811717 

 At row:9, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:9, column:34,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:34,the value of plot_cost is         : 82.9765917527335 

 At row:9, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:9, column:35,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:35,the value of plot_cost is         : 82.65814957775234 

 At row:9, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:9, column:36,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:36,the value of plot_cost is         : 82.34051546317372 

 At row:9, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:9, column:37,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:37,the value of plot_cost is         : 82.0236894089976 

 At row:9, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:9, column:38,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:38,the value of plot_cost is         : 81.707671415224 

 At row:9, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:9, column:39,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:39,the value of plot_cost is         : 81.39246148185292 

 At row:9, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:9, column:40,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:40,the value of plot_cost is         : 81.07805960888435 

 At row:9, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:9, column:41,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:41,the value of plot_cost is         : 80.76446579631828 

 At row:9, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:9, column:42,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:42,the value of plot_cost is         : 80.45168004415473 

 At row:9, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:9, column:43,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:43,the value of plot_cost is         : 80.1397023523937 

 At row:9, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:9, column:44,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:44,the value of plot_cost is         : 79.82853272103516 

 At row:9, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:9, column:45,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:45,the value of plot_cost is         : 79.51817115007917 

 At row:9, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:9, column:46,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:46,the value of plot_cost is         : 79.20861763952568 

 At row:9, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:9, column:47,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:47,the value of plot_cost is         : 78.89987218937472 

 At row:9, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:9, column:48,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:48,the value of plot_cost is         : 78.59193479962626 

 At row:9, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:9, column:49,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:49,the value of plot_cost is         : 78.28480547028033 

 At row:9, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:9, column:50,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:50,the value of plot_cost is         : 77.9784842013369 

 At row:9, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:9, column:51,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:51,the value of plot_cost is         : 77.67297099279598 

 At row:9, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:9, column:52,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:52,the value of plot_cost is         : 77.3682658446576 

 At row:9, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:9, column:53,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:53,the value of plot_cost is         : 77.06436875692172 

 At row:9, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:9, column:54,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:54,the value of plot_cost is         : 76.76127972958834 

 At row:9, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:9, column:55,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:55,the value of plot_cost is         : 76.45899876265749 

 At row:9, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:9, column:56,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:56,the value of plot_cost is         : 76.15752585612917 

 At row:9, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:9, column:57,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:57,the value of plot_cost is         : 75.85686101000334 

 At row:9, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:9, column:58,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:58,the value of plot_cost is         : 75.55700422428004 

 At row:9, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:9, column:59,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:59,the value of plot_cost is         : 75.25795549895925 

 At row:9, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:9, column:60,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:60,the value of plot_cost is         : 74.95971483404098 

 At row:9, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:9, column:61,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:61,the value of plot_cost is         : 74.66228222952522 

 At row:9, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:9, column:62,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:62,the value of plot_cost is         : 74.36565768541199 

 At row:9, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:9, column:63,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:63,the value of plot_cost is         : 74.06984120170125 

 At row:9, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:9, column:64,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:64,the value of plot_cost is         : 73.77483277839303 

 At row:9, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:9, column:65,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:65,the value of plot_cost is         : 73.48063241548734 

 At row:9, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:9, column:66,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:66,the value of plot_cost is         : 73.18724011298414 

 At row:9, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:9, column:67,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:67,the value of plot_cost is         : 72.89465587088347 

 At row:9, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:9, column:68,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:68,the value of plot_cost is         : 72.60287968918533 

 At row:9, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:9, column:69,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:69,the value of plot_cost is         : 72.3119115678897 

 At row:9, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:9, column:70,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:70,the value of plot_cost is         : 72.02175150699658 

 At row:9, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:9, column:71,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:71,the value of plot_cost is         : 71.73239950650596 

 At row:9, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:9, column:72,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:72,the value of plot_cost is         : 71.44385556641787 

 At row:9, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:9, column:73,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:73,the value of plot_cost is         : 71.1561196867323 

 At row:9, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:9, column:74,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:74,the value of plot_cost is         : 70.86919186744922 

 At row:9, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:9, column:75,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:75,the value of plot_cost is         : 70.58307210856867 

 At row:9, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:9, column:76,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:76,the value of plot_cost is         : 70.29776041009065 

 At row:9, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:9, column:77,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:77,the value of plot_cost is         : 70.01325677201513 

 At row:9, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:9, column:78,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:78,the value of plot_cost is         : 69.72956119434212 

 At row:9, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:9, column:79,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:79,the value of plot_cost is         : 69.44667367707164 

 At row:9, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:9, column:80,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:80,the value of plot_cost is         : 69.16459422020367 

 At row:9, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:9, column:81,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:81,the value of plot_cost is         : 68.88332282373821 

 At row:9, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:9, column:82,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:82,the value of plot_cost is         : 68.60285948767527 

 At row:9, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:9, column:83,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:83,the value of plot_cost is         : 68.32320421201484 

 At row:9, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:9, column:84,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:84,the value of plot_cost is         : 68.04435699675692 

 At row:9, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:9, column:85,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:85,the value of plot_cost is         : 67.76631784190153 

 At row:9, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:9, column:86,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:86,the value of plot_cost is         : 67.48908674744865 

 At row:9, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:9, column:87,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:87,the value of plot_cost is         : 67.21266371339829 

 At row:9, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:9, column:88,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:88,the value of plot_cost is         : 66.93704873975042 

 At row:9, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:9, column:89,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:89,the value of plot_cost is         : 66.66224182650511 

 At row:9, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:9, column:90,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:90,the value of plot_cost is         : 66.38824297366227 

 At row:9, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:9, column:91,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:91,the value of plot_cost is         : 66.11505218122197 

 At row:9, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:9, column:92,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:92,the value of plot_cost is         : 65.84266944918419 

 At row:9, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:9, column:93,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:93,the value of plot_cost is         : 65.57109477754891 

 At row:9, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:9, column:94,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:94,the value of plot_cost is         : 65.30032816631613 

 At row:9, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:9, column:95,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:95,the value of plot_cost is         : 65.03036961548588 

 At row:9, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:9, column:96,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:96,the value of plot_cost is         : 64.76121912505816 

 At row:9, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:9, column:97,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:97,the value of plot_cost is         : 64.49287669503293 

 At row:9, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:9, column:98,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:98,the value of plot_cost is         : 64.22534232541024 

 At row:9, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:9, column:99,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:99,the value of plot_cost is         : 63.958616016190064 

 At row:9, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:9, column:100,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:100,the value of plot_cost is         : 63.692697767372394 

 At row:9, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:9, column:101,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:101,the value of plot_cost is         : 63.42758757895724 

 At row:9, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:9, column:102,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:102,the value of plot_cost is         : 63.16328545094459 

 At row:9, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:9, column:103,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:103,the value of plot_cost is         : 62.89979138333447 

 At row:9, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:9, column:104,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:104,the value of plot_cost is         : 62.637105376126854 

 At row:9, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:9, column:105,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:105,the value of plot_cost is         : 62.37522742932177 

 At row:9, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:9, column:106,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:106,the value of plot_cost is         : 62.11415754291918 

 At row:9, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:9, column:107,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:107,the value of plot_cost is         : 61.85389571691912 

 At row:9, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:9, column:108,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:108,the value of plot_cost is         : 61.59444195132157 

 At row:9, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:9, column:109,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:109,the value of plot_cost is         : 61.335796246126534 

 At row:9, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:9, column:110,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:110,the value of plot_cost is         : 61.07795860133401 

 At row:9, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:9, column:111,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:111,the value of plot_cost is         : 60.82092901694401 

 At row:9, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:9, column:112,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:112,the value of plot_cost is         : 60.56470749295653 

 At row:9, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:9, column:113,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:113,the value of plot_cost is         : 60.309294029371536 

 At row:9, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:9, column:114,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:114,the value of plot_cost is         : 60.05468862618909 

 At row:9, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:9, column:115,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:115,the value of plot_cost is         : 59.80089128340913 

 At row:9, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:9, column:116,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:116,the value of plot_cost is         : 59.54790200103171 

 At row:9, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:9, column:117,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:117,the value of plot_cost is         : 59.29572077905679 

 At row:9, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:9, column:118,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:118,the value of plot_cost is         : 59.044347617484405 

 At row:9, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:9, column:119,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:119,the value of plot_cost is         : 58.793782516314515 

 At row:9, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:9, column:120,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:120,the value of plot_cost is         : 58.54402547554715 

 At row:9, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:9, column:121,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:121,the value of plot_cost is         : 58.29507649518229 

 At row:9, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:9, column:122,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:122,the value of plot_cost is         : 58.046935575219955 

 At row:9, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:9, column:123,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:123,the value of plot_cost is         : 57.799602715660136 

 At row:9, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:9, column:124,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:124,the value of plot_cost is         : 57.55307791650282 

 At row:9, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:9, column:125,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:125,the value of plot_cost is         : 57.307361177748035 

 At row:9, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:9, column:126,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:126,the value of plot_cost is         : 57.06245249939575 

 At row:9, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:9, column:127,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:127,the value of plot_cost is         : 56.818351881445984 

 At row:9, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:9, column:128,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:128,the value of plot_cost is         : 56.57505932389874 

 At row:9, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:9, column:129,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:129,the value of plot_cost is         : 56.33257482675401 

 At row:9, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:9, column:130,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:130,the value of plot_cost is         : 56.09089839001179 

 At row:9, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:9, column:131,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:131,the value of plot_cost is         : 55.85003001367208 

 At row:9, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:9, column:132,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:132,the value of plot_cost is         : 55.6099696977349 

 At row:9, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:9, column:133,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:133,the value of plot_cost is         : 55.370717442200224 

 At row:9, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:9, column:134,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:134,the value of plot_cost is         : 55.13227324706806 

 At row:9, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:9, column:135,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:135,the value of plot_cost is         : 54.89463711233843 

 At row:9, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:9, column:136,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:136,the value of plot_cost is         : 54.6578090380113 

 At row:9, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:9, column:137,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:137,the value of plot_cost is         : 54.421789024086685 

 At row:9, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:9, column:138,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:138,the value of plot_cost is         : 54.18657707056458 

 At row:9, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:9, column:139,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:139,the value of plot_cost is         : 53.95217317744501 

 At row:9, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:9, column:140,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:140,the value of plot_cost is         : 53.71857734472794 

 At row:9, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:9, column:141,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:141,the value of plot_cost is         : 53.48578957241339 

 At row:9, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:9, column:142,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:142,the value of plot_cost is         : 53.253809860501356 

 At row:9, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:9, column:143,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:143,the value of plot_cost is         : 53.02263820899182 

 At row:9, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:9, column:144,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:144,the value of plot_cost is         : 52.79227461788482 

 At row:9, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:9, column:145,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:145,the value of plot_cost is         : 52.56271908718033 

 At row:9, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:9, column:146,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:146,the value of plot_cost is         : 52.33397161687836 

 At row:9, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:9, column:147,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:147,the value of plot_cost is         : 52.10603220697889 

 At row:9, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:9, column:148,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:148,the value of plot_cost is         : 51.878900857481945 

 At row:9, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:9, column:149,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:149,the value of plot_cost is         : 51.652577568387514 

 At row:9, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:9, column:150,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:150,the value of plot_cost is         : 51.427062339695595 

 At row:9, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:9, column:151,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:151,the value of plot_cost is         : 51.2023551714062 

 At row:9, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:9, column:152,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:152,the value of plot_cost is         : 50.97845606351932 

 At row:9, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:9, column:153,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:153,the value of plot_cost is         : 50.75536501603494 

 At row:9, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:9, column:154,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:154,the value of plot_cost is         : 50.53308202895308 

 At row:9, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:9, column:155,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:155,the value of plot_cost is         : 50.31160710227375 

 At row:9, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:9, column:156,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:156,the value of plot_cost is         : 50.09094023599691 

 At row:9, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:9, column:157,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:157,the value of plot_cost is         : 49.8710814301226 

 At row:9, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:9, column:158,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:158,the value of plot_cost is         : 49.65203068465082 

 At row:9, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:9, column:159,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:159,the value of plot_cost is         : 49.43378799958154 

 At row:9, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:9, column:160,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:160,the value of plot_cost is         : 49.216353374914775 

 At row:9, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:9, column:161,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:161,the value of plot_cost is         : 48.999726810650515 

 At row:9, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:9, column:162,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:162,the value of plot_cost is         : 48.78390830678878 

 At row:9, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:9, column:163,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:163,the value of plot_cost is         : 48.56889786332957 

 At row:9, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:9, column:164,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:164,the value of plot_cost is         : 48.35469548027285 

 At row:9, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:9, column:165,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:165,the value of plot_cost is         : 48.14130115761867 

 At row:9, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:9, column:166,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:166,the value of plot_cost is         : 47.92871489536699 

 At row:9, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:9, column:167,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:167,the value of plot_cost is         : 47.71693669351784 

 At row:9, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:9, column:168,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:168,the value of plot_cost is         : 47.50596655207119 

 At row:9, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:9, column:169,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:169,the value of plot_cost is         : 47.29580447102706 

 At row:9, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:9, column:170,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:170,the value of plot_cost is         : 47.08645045038544 

 At row:9, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:9, column:171,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:171,the value of plot_cost is         : 46.87790449014634 

 At row:9, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:9, column:172,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:172,the value of plot_cost is         : 46.67016659030977 

 At row:9, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:9, column:173,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:173,the value of plot_cost is         : 46.463236750875694 

 At row:9, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:9, column:174,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:174,the value of plot_cost is         : 46.25711497184413 

 At row:9, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:9, column:175,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:175,the value of plot_cost is         : 46.0518012532151 

 At row:9, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:9, column:176,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:176,the value of plot_cost is         : 45.84729559498857 

 At row:9, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:9, column:177,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:177,the value of plot_cost is         : 45.64359799716456 

 At row:9, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:9, column:178,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:178,the value of plot_cost is         : 45.44070845974308 

 At row:9, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:9, column:179,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:179,the value of plot_cost is         : 45.2386269827241 

 At row:9, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:9, column:180,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:180,the value of plot_cost is         : 45.03735356610763 

 At row:9, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:9, column:181,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:181,the value of plot_cost is         : 44.83688820989369 

 At row:9, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:9, column:182,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:182,the value of plot_cost is         : 44.63723091408225 

 At row:9, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:9, column:183,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:183,the value of plot_cost is         : 44.43838167867333 

 At row:9, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:9, column:184,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:184,the value of plot_cost is         : 44.24034050366693 

 At row:9, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:9, column:185,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:185,the value of plot_cost is         : 44.04310738906304 

 At row:9, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:9, column:186,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:186,the value of plot_cost is         : 43.84668233486167 

 At row:9, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:9, column:187,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:187,the value of plot_cost is         : 43.65106534106281 

 At row:9, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:9, column:188,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:188,the value of plot_cost is         : 43.456256407666466 

 At row:9, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:9, column:189,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:189,the value of plot_cost is         : 43.26225553467265 

 At row:9, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:9, column:190,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:190,the value of plot_cost is         : 43.06906272208133 

 At row:9, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:9, column:191,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:191,the value of plot_cost is         : 42.876677969892526 

 At row:9, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:9, column:192,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:192,the value of plot_cost is         : 42.685101278106245 

 At row:9, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:9, column:193,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:193,the value of plot_cost is         : 42.49433264672248 

 At row:9, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:9, column:194,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:194,the value of plot_cost is         : 42.304372075741234 

 At row:9, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:9, column:195,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:195,the value of plot_cost is         : 42.115219565162484 

 At row:9, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:9, column:196,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:196,the value of plot_cost is         : 41.92687511498627 

 At row:9, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:9, column:197,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:197,the value of plot_cost is         : 41.739338725212555 

 At row:9, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:9, column:198,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:198,the value of plot_cost is         : 41.55261039584138 

 At row:9, column:199,the value of plot_t0 is           : 3.0
 At row:9, column:199,the value of plot_t1 is           : -0.8190954773869347
 At row:9, column:199,the value of plot_cost is         : 41.366690126872705 

 At row:10, column:0,the value of plot_t0 is           : -1.0
 At row:10, column:0,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:0,the value of plot_cost is         : 92.76639763786628 

 At row:10, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:10, column:1,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:1,the value of plot_cost is         : 92.42315955224797 

 At row:10, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:10, column:2,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:2,the value of plot_cost is         : 92.08072952703215 

 At row:10, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:10, column:3,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:3,the value of plot_cost is         : 91.73910756221883 

 At row:10, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:10, column:4,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:4,the value of plot_cost is         : 91.39829365780805 

 At row:10, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:10, column:5,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:5,the value of plot_cost is         : 91.0582878137998 

 At row:10, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:10, column:6,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:6,the value of plot_cost is         : 90.71909003019404 

 At row:10, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:10, column:7,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:7,the value of plot_cost is         : 90.38070030699079 

 At row:10, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:10, column:8,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:8,the value of plot_cost is         : 90.04311864419007 

 At row:10, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:10, column:9,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:9,the value of plot_cost is         : 89.70634504179185 

 At row:10, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:10, column:10,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:10,the value of plot_cost is         : 89.37037949979617 

 At row:10, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:10, column:11,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:11,the value of plot_cost is         : 89.035222018203 

 At row:10, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:10, column:12,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:12,the value of plot_cost is         : 88.70087259701234 

 At row:10, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:10, column:13,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:13,the value of plot_cost is         : 88.36733123622419 

 At row:10, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:10, column:14,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:14,the value of plot_cost is         : 88.03459793583856 

 At row:10, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:10, column:15,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:15,the value of plot_cost is         : 87.70267269585544 

 At row:10, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:10, column:16,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:16,the value of plot_cost is         : 87.37155551627484 

 At row:10, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:10, column:17,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:17,the value of plot_cost is         : 87.04124639709676 

 At row:10, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:10, column:18,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:18,the value of plot_cost is         : 86.71174533832118 

 At row:10, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:10, column:19,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:19,the value of plot_cost is         : 86.38305233994812 

 At row:10, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:10, column:20,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:20,the value of plot_cost is         : 86.05516740197757 

 At row:10, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:10, column:21,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:21,the value of plot_cost is         : 85.72809052440955 

 At row:10, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:10, column:22,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:22,the value of plot_cost is         : 85.40182170724404 

 At row:10, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:10, column:23,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:23,the value of plot_cost is         : 85.07636095048103 

 At row:10, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:10, column:24,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:24,the value of plot_cost is         : 84.75170825412056 

 At row:10, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:10, column:25,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:25,the value of plot_cost is         : 84.42786361816259 

 At row:10, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:10, column:26,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:26,the value of plot_cost is         : 84.10482704260714 

 At row:10, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:10, column:27,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:27,the value of plot_cost is         : 83.78259852745421 

 At row:10, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:10, column:28,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:28,the value of plot_cost is         : 83.46117807270379 

 At row:10, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:10, column:29,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:29,the value of plot_cost is         : 83.14056567835588 

 At row:10, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:10, column:30,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:30,the value of plot_cost is         : 82.82076134441049 

 At row:10, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:10, column:31,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:31,the value of plot_cost is         : 82.50176507086762 

 At row:10, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:10, column:32,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:32,the value of plot_cost is         : 82.18357685772725 

 At row:10, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:10, column:33,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:33,the value of plot_cost is         : 81.86619670498942 

 At row:10, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:10, column:34,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:34,the value of plot_cost is         : 81.54962461265407 

 At row:10, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:10, column:35,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:35,the value of plot_cost is         : 81.23386058072127 

 At row:10, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:10, column:36,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:36,the value of plot_cost is         : 80.91890460919096 

 At row:10, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:10, column:37,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:37,the value of plot_cost is         : 80.60475669806317 

 At row:10, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:10, column:38,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:38,the value of plot_cost is         : 80.29141684733791 

 At row:10, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:10, column:39,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:39,the value of plot_cost is         : 79.97888505701513 

 At row:10, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:10, column:40,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:40,the value of plot_cost is         : 79.6671613270949 

 At row:10, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:10, column:41,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:41,the value of plot_cost is         : 79.35624565757718 

 At row:10, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:10, column:42,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:42,the value of plot_cost is         : 79.04613804846196 

 At row:10, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:10, column:43,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:43,the value of plot_cost is         : 78.73683849974928 

 At row:10, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:10, column:44,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:44,the value of plot_cost is         : 78.4283470114391 

 At row:10, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:10, column:45,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:45,the value of plot_cost is         : 78.12066358353144 

 At row:10, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:10, column:46,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:46,the value of plot_cost is         : 77.8137882160263 

 At row:10, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:10, column:47,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:47,the value of plot_cost is         : 77.50772090892364 

 At row:10, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:10, column:48,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:48,the value of plot_cost is         : 77.20246166222354 

 At row:10, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:10, column:49,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:49,the value of plot_cost is         : 76.89801047592591 

 At row:10, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:10, column:50,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:50,the value of plot_cost is         : 76.59436735003084 

 At row:10, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:10, column:51,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:51,the value of plot_cost is         : 76.29153228453826 

 At row:10, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:10, column:52,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:52,the value of plot_cost is         : 75.9895052794482 

 At row:10, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:10, column:53,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:53,the value of plot_cost is         : 75.68828633476066 

 At row:10, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:10, column:54,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:54,the value of plot_cost is         : 75.38787545047563 

 At row:10, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:10, column:55,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:55,the value of plot_cost is         : 75.08827262659311 

 At row:10, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:10, column:56,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:56,the value of plot_cost is         : 74.78947786311313 

 At row:10, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:10, column:57,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:57,the value of plot_cost is         : 74.49149116003564 

 At row:10, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:10, column:58,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:58,the value of plot_cost is         : 74.19431251736067 

 At row:10, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:10, column:59,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:59,the value of plot_cost is         : 73.89794193508821 

 At row:10, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:10, column:60,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:60,the value of plot_cost is         : 73.60237941321829 

 At row:10, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:10, column:61,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:61,the value of plot_cost is         : 73.30762495175087 

 At row:10, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:10, column:62,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:62,the value of plot_cost is         : 73.01367855068594 

 At row:10, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:10, column:63,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:63,the value of plot_cost is         : 72.72054021002354 

 At row:10, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:10, column:64,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:64,the value of plot_cost is         : 72.42820992976367 

 At row:10, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:10, column:65,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:65,the value of plot_cost is         : 72.13668770990631 

 At row:10, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:10, column:66,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:66,the value of plot_cost is         : 71.84597355045146 

 At row:10, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:10, column:67,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:67,the value of plot_cost is         : 71.55606745139913 

 At row:10, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:10, column:68,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:68,the value of plot_cost is         : 71.26696941274932 

 At row:10, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:10, column:69,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:69,the value of plot_cost is         : 70.978679434502 

 At row:10, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:10, column:70,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:70,the value of plot_cost is         : 70.69119751665723 

 At row:10, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:10, column:71,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:71,the value of plot_cost is         : 70.40452365921496 

 At row:10, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:10, column:72,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:72,the value of plot_cost is         : 70.1186578621752 

 At row:10, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:10, column:73,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:73,the value of plot_cost is         : 69.83360012553796 

 At row:10, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:10, column:74,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:74,the value of plot_cost is         : 69.54935044930322 

 At row:10, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:10, column:75,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:75,the value of plot_cost is         : 69.26590883347102 

 At row:10, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:10, column:76,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:76,the value of plot_cost is         : 68.98327527804132 

 At row:10, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:10, column:77,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:77,the value of plot_cost is         : 68.70144978301413 

 At row:10, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:10, column:78,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:78,the value of plot_cost is         : 68.42043234838945 

 At row:10, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:10, column:79,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:79,the value of plot_cost is         : 68.14022297416732 

 At row:10, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:10, column:80,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:80,the value of plot_cost is         : 67.86082166034767 

 At row:10, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:10, column:81,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:81,the value of plot_cost is         : 67.58222840693057 

 At row:10, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:10, column:82,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:82,the value of plot_cost is         : 67.30444321391595 

 At row:10, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:10, column:83,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:83,the value of plot_cost is         : 67.02746608130386 

 At row:10, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:10, column:84,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:84,the value of plot_cost is         : 66.75129700909429 

 At row:10, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:10, column:85,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:85,the value of plot_cost is         : 66.47593599728721 

 At row:10, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:10, column:86,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:86,the value of plot_cost is         : 66.20138304588268 

 At row:10, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:10, column:87,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:87,the value of plot_cost is         : 65.92763815488064 

 At row:10, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:10, column:88,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:88,the value of plot_cost is         : 65.65470132428112 

 At row:10, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:10, column:89,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:89,the value of plot_cost is         : 65.38257255408412 

 At row:10, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:10, column:90,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:90,the value of plot_cost is         : 65.11125184428964 

 At row:10, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:10, column:91,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:91,the value of plot_cost is         : 64.84073919489768 

 At row:10, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:10, column:92,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:92,the value of plot_cost is         : 64.57103460590821 

 At row:10, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:10, column:93,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:93,the value of plot_cost is         : 64.30213807732126 

 At row:10, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:10, column:94,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:94,the value of plot_cost is         : 64.03404960913684 

 At row:10, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:10, column:95,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:95,the value of plot_cost is         : 63.76676920135493 

 At row:10, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:10, column:96,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:96,the value of plot_cost is         : 63.50029685397554 

 At row:10, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:10, column:97,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:97,the value of plot_cost is         : 63.23463256699866 

 At row:10, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:10, column:98,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:98,the value of plot_cost is         : 62.969776340424296 

 At row:10, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:10, column:99,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:99,the value of plot_cost is         : 62.70572817425245 

 At row:10, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:10, column:100,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:100,the value of plot_cost is         : 62.44248806848312 

 At row:10, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:10, column:101,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:101,the value of plot_cost is         : 62.1800560231163 

 At row:10, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:10, column:102,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:102,the value of plot_cost is         : 61.91843203815199 

 At row:10, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:10, column:103,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:103,the value of plot_cost is         : 61.657616113590194 

 At row:10, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:10, column:104,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:104,the value of plot_cost is         : 61.397608249430924 

 At row:10, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:10, column:105,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:105,the value of plot_cost is         : 61.138408445674166 

 At row:10, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:10, column:106,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:106,the value of plot_cost is         : 60.88001670231993 

 At row:10, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:10, column:107,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:107,the value of plot_cost is         : 60.62243301936819 

 At row:10, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:10, column:108,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:108,the value of plot_cost is         : 60.365657396818975 

 At row:10, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:10, column:109,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:109,the value of plot_cost is         : 60.10968983467228 

 At row:10, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:10, column:110,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:110,the value of plot_cost is         : 59.854530332928086 

 At row:10, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:10, column:111,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:111,the value of plot_cost is         : 59.60017889158644 

 At row:10, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:10, column:112,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:112,the value of plot_cost is         : 59.346635510647275 

 At row:10, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:10, column:113,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:113,the value of plot_cost is         : 59.093900190110624 

 At row:10, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:10, column:114,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:114,the value of plot_cost is         : 58.84197292997651 

 At row:10, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:10, column:115,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:115,the value of plot_cost is         : 58.5908537302449 

 At row:10, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:10, column:116,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:116,the value of plot_cost is         : 58.34054259091582 

 At row:10, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:10, column:117,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:117,the value of plot_cost is         : 58.09103951198923 

 At row:10, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:10, column:118,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:118,the value of plot_cost is         : 57.84234449346516 

 At row:10, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:10, column:119,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:119,the value of plot_cost is         : 57.59445753534362 

 At row:10, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:10, column:120,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:120,the value of plot_cost is         : 57.34737863762459 

 At row:10, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:10, column:121,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:121,the value of plot_cost is         : 57.10110780030808 

 At row:10, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:10, column:122,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:122,the value of plot_cost is         : 56.85564502339407 

 At row:10, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:10, column:123,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:123,the value of plot_cost is         : 56.61099030688258 

 At row:10, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:10, column:124,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:124,the value of plot_cost is         : 56.367143650773606 

 At row:10, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:10, column:125,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:125,the value of plot_cost is         : 56.12410505506715 

 At row:10, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:10, column:126,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:126,the value of plot_cost is         : 55.88187451976321 

 At row:10, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:10, column:127,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:127,the value of plot_cost is         : 55.640452044861775 

 At row:10, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:10, column:128,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:128,the value of plot_cost is         : 55.39983763036287 

 At row:10, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:10, column:129,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:129,the value of plot_cost is         : 55.16003127626647 

 At row:10, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:10, column:130,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:130,the value of plot_cost is         : 54.921032982572584 

 At row:10, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:10, column:131,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:131,the value of plot_cost is         : 54.68284274928122 

 At row:10, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:10, column:132,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:132,the value of plot_cost is         : 54.445460576392364 

 At row:10, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:10, column:133,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:133,the value of plot_cost is         : 54.20888646390603 

 At row:10, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:10, column:134,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:134,the value of plot_cost is         : 53.97312041182221 

 At row:10, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:10, column:135,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:135,the value of plot_cost is         : 53.7381624201409 

 At row:10, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:10, column:136,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:136,the value of plot_cost is         : 53.50401248886211 

 At row:10, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:10, column:137,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:137,the value of plot_cost is         : 53.27067061798583 

 At row:10, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:10, column:138,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:138,the value of plot_cost is         : 53.03813680751207 

 At row:10, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:10, column:139,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:139,the value of plot_cost is         : 52.806411057440826 

 At row:10, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:10, column:140,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:140,the value of plot_cost is         : 52.5754933677721 

 At row:10, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:10, column:141,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:141,the value of plot_cost is         : 52.34538373850588 

 At row:10, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:10, column:142,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:142,the value of plot_cost is         : 52.116082169642176 

 At row:10, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:10, column:143,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:143,the value of plot_cost is         : 51.887588661180985 

 At row:10, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:10, column:144,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:144,the value of plot_cost is         : 51.65990321312231 

 At row:10, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:10, column:145,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:145,the value of plot_cost is         : 51.43302582546617 

 At row:10, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:10, column:146,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:146,the value of plot_cost is         : 51.20695649821253 

 At row:10, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:10, column:147,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:147,the value of plot_cost is         : 50.98169523136139 

 At row:10, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:10, column:148,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:148,the value of plot_cost is         : 50.757242024912784 

 At row:10, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:10, column:149,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:149,the value of plot_cost is         : 50.53359687886669 

 At row:10, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:10, column:150,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:150,the value of plot_cost is         : 50.31075979322311 

 At row:10, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:10, column:151,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:151,the value of plot_cost is         : 50.08873076798204 

 At row:10, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:10, column:152,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:152,the value of plot_cost is         : 49.8675098031435 

 At row:10, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:10, column:153,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:153,the value of plot_cost is         : 49.64709689870746 

 At row:10, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:10, column:154,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:154,the value of plot_cost is         : 49.42749205467394 

 At row:10, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:10, column:155,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:155,the value of plot_cost is         : 49.208695271042934 

 At row:10, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:10, column:156,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:156,the value of plot_cost is         : 48.99070654781444 

 At row:10, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:10, column:157,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:157,the value of plot_cost is         : 48.773525884988466 

 At row:10, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:10, column:158,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:158,the value of plot_cost is         : 48.557153282565004 

 At row:10, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:10, column:159,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:159,the value of plot_cost is         : 48.341588740544054 

 At row:10, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:10, column:160,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:160,the value of plot_cost is         : 48.12683225892564 

 At row:10, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:10, column:161,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:161,the value of plot_cost is         : 47.91288383770973 

 At row:10, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:10, column:162,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:162,the value of plot_cost is         : 47.69974347689632 

 At row:10, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:10, column:163,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:163,the value of plot_cost is         : 47.48741117648544 

 At row:10, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:10, column:164,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:164,the value of plot_cost is         : 47.275886936477065 

 At row:10, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:10, column:165,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:165,the value of plot_cost is         : 47.065170756871225 

 At row:10, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:10, column:166,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:166,the value of plot_cost is         : 46.85526263766787 

 At row:10, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:10, column:167,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:167,the value of plot_cost is         : 46.64616257886705 

 At row:10, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:10, column:168,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:168,the value of plot_cost is         : 46.43787058046874 

 At row:10, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:10, column:169,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:169,the value of plot_cost is         : 46.23038664247295 

 At row:10, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:10, column:170,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:170,the value of plot_cost is         : 46.02371076487967 

 At row:10, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:10, column:171,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:171,the value of plot_cost is         : 45.8178429476889 

 At row:10, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:10, column:172,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:172,the value of plot_cost is         : 45.61278319090066 

 At row:10, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:10, column:173,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:173,the value of plot_cost is         : 45.408531494514925 

 At row:10, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:10, column:174,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:174,the value of plot_cost is         : 45.205087858531705 

 At row:10, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:10, column:175,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:175,the value of plot_cost is         : 45.002452282951 

 At row:10, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:10, column:176,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:176,the value of plot_cost is         : 44.80062476777281 

 At row:10, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:10, column:177,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:177,the value of plot_cost is         : 44.59960531299714 

 At row:10, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:10, column:178,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:178,the value of plot_cost is         : 44.39939391862398 

 At row:10, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:10, column:179,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:179,the value of plot_cost is         : 44.19999058465334 

 At row:10, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:10, column:180,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:180,the value of plot_cost is         : 44.00139531108522 

 At row:10, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:10, column:181,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:181,the value of plot_cost is         : 43.8036080979196 

 At row:10, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:10, column:182,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:182,the value of plot_cost is         : 43.60662894515651 

 At row:10, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:10, column:183,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:183,the value of plot_cost is         : 43.41045785279592 

 At row:10, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:10, column:184,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:184,the value of plot_cost is         : 43.215094820837855 

 At row:10, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:10, column:185,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:185,the value of plot_cost is         : 43.0205398492823 

 At row:10, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:10, column:186,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:186,the value of plot_cost is         : 42.82679293812926 

 At row:10, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:10, column:187,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:187,the value of plot_cost is         : 42.63385408737874 

 At row:10, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:10, column:188,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:188,the value of plot_cost is         : 42.441723297030734 

 At row:10, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:10, column:189,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:189,the value of plot_cost is         : 42.250400567085244 

 At row:10, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:10, column:190,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:190,the value of plot_cost is         : 42.059885897542266 

 At row:10, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:10, column:191,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:191,the value of plot_cost is         : 41.87017928840181 

 At row:10, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:10, column:192,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:192,the value of plot_cost is         : 41.68128073966386 

 At row:10, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:10, column:193,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:193,the value of plot_cost is         : 41.49319025132843 

 At row:10, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:10, column:194,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:194,the value of plot_cost is         : 41.30590782339551 

 At row:10, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:10, column:195,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:195,the value of plot_cost is         : 41.11943345586511 

 At row:10, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:10, column:196,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:196,the value of plot_cost is         : 40.93376714873722 

 At row:10, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:10, column:197,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:197,the value of plot_cost is         : 40.74890890201184 

 At row:10, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:10, column:198,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:198,the value of plot_cost is         : 40.56485871568899 

 At row:10, column:199,the value of plot_t0 is           : 3.0
 At row:10, column:199,the value of plot_t1 is           : -0.7989949748743719
 At row:10, column:199,the value of plot_cost is         : 40.38161658976866 

 At row:11, column:0,the value of plot_t0 is           : -1.0
 At row:11, column:0,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:0,the value of plot_cost is         : 91.2609562889826 

 At row:11, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:11, column:1,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:1,the value of plot_cost is         : 90.9203963464126 

 At row:11, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:11, column:2,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:2,the value of plot_cost is         : 90.58064446424513 

 At row:11, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:11, column:3,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:3,the value of plot_cost is         : 90.24170064248017 

 At row:11, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:11, column:4,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:4,the value of plot_cost is         : 89.9035648811177 

 At row:11, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:11, column:5,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:5,the value of plot_cost is         : 89.56623718015777 

 At row:11, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:11, column:6,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:6,the value of plot_cost is         : 89.22971753960036 

 At row:11, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:11, column:7,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:7,the value of plot_cost is         : 88.89400595944545 

 At row:11, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:11, column:8,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:8,the value of plot_cost is         : 88.55910243969309 

 At row:11, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:11, column:9,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:9,the value of plot_cost is         : 88.22500698034321 

 At row:11, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:11, column:10,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:10,the value of plot_cost is         : 87.89171958139585 

 At row:11, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:11, column:11,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:11,the value of plot_cost is         : 87.55924024285099 

 At row:11, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:11, column:12,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:12,the value of plot_cost is         : 87.22756896470868 

 At row:11, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:11, column:13,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:13,the value of plot_cost is         : 86.89670574696886 

 At row:11, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:11, column:14,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:14,the value of plot_cost is         : 86.56665058963156 

 At row:11, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:11, column:15,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:15,the value of plot_cost is         : 86.2374034926968 

 At row:11, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:11, column:16,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:16,the value of plot_cost is         : 85.9089644561645 

 At row:11, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:11, column:17,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:17,the value of plot_cost is         : 85.58133348003476 

 At row:11, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:11, column:18,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:18,the value of plot_cost is         : 85.25451056430755 

 At row:11, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:11, column:19,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:19,the value of plot_cost is         : 84.9284957089828 

 At row:11, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:11, column:20,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:20,the value of plot_cost is         : 84.60328891406061 

 At row:11, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:11, column:21,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:21,the value of plot_cost is         : 84.27889017954091 

 At row:11, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:11, column:22,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:22,the value of plot_cost is         : 83.95529950542372 

 At row:11, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:11, column:23,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:23,the value of plot_cost is         : 83.63251689170907 

 At row:11, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:11, column:24,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:24,the value of plot_cost is         : 83.31054233839693 

 At row:11, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:11, column:25,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:25,the value of plot_cost is         : 82.9893758454873 

 At row:11, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:11, column:26,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:26,the value of plot_cost is         : 82.66901741298017 

 At row:11, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:11, column:27,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:27,the value of plot_cost is         : 82.34946704087558 

 At row:11, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:11, column:28,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:28,the value of plot_cost is         : 82.0307247291735 

 At row:11, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:11, column:29,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:29,the value of plot_cost is         : 81.71279047787392 

 At row:11, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:11, column:30,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:30,the value of plot_cost is         : 81.39566428697688 

 At row:11, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:11, column:31,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:31,the value of plot_cost is         : 81.07934615648233 

 At row:11, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:11, column:32,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:32,the value of plot_cost is         : 80.7638360863903 

 At row:11, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:11, column:33,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:33,the value of plot_cost is         : 80.44913407670079 

 At row:11, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:11, column:34,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:34,the value of plot_cost is         : 80.13524012741381 

 At row:11, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:11, column:35,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:35,the value of plot_cost is         : 79.82215423852931 

 At row:11, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:11, column:36,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:36,the value of plot_cost is         : 79.50987641004735 

 At row:11, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:11, column:37,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:37,the value of plot_cost is         : 79.1984066419679 

 At row:11, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:11, column:38,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:38,the value of plot_cost is         : 78.88774493429098 

 At row:11, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:11, column:39,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:39,the value of plot_cost is         : 78.57789128701656 

 At row:11, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:11, column:40,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:40,the value of plot_cost is         : 78.26884570014465 

 At row:11, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:11, column:41,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:41,the value of plot_cost is         : 77.96060817367525 

 At row:11, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:11, column:42,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:42,the value of plot_cost is         : 77.65317870760839 

 At row:11, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:11, column:43,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:43,the value of plot_cost is         : 77.34655730194403 

 At row:11, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:11, column:44,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:44,the value of plot_cost is         : 77.04074395668216 

 At row:11, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:11, column:45,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:45,the value of plot_cost is         : 76.73573867182286 

 At row:11, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:11, column:46,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:46,the value of plot_cost is         : 76.43154144736604 

 At row:11, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:11, column:47,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:47,the value of plot_cost is         : 76.12815228331174 

 At row:11, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:11, column:48,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:48,the value of plot_cost is         : 75.82557117965996 

 At row:11, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:11, column:49,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:49,the value of plot_cost is         : 75.52379813641069 

 At row:11, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:11, column:50,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:50,the value of plot_cost is         : 75.22283315356394 

 At row:11, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:11, column:51,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:51,the value of plot_cost is         : 74.9226762311197 

 At row:11, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:11, column:52,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:52,the value of plot_cost is         : 74.62332736907797 

 At row:11, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:11, column:53,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:53,the value of plot_cost is         : 74.32478656743878 

 At row:11, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:11, column:54,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:54,the value of plot_cost is         : 74.02705382620206 

 At row:11, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:11, column:55,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:55,the value of plot_cost is         : 73.7301291453679 

 At row:11, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:11, column:56,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:56,the value of plot_cost is         : 73.43401252493622 

 At row:11, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:11, column:57,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:57,the value of plot_cost is         : 73.13870396490707 

 At row:11, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:11, column:58,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:58,the value of plot_cost is         : 72.84420346528044 

 At row:11, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:11, column:59,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:59,the value of plot_cost is         : 72.55051102605633 

 At row:11, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:11, column:60,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:60,the value of plot_cost is         : 72.25762664723473 

 At row:11, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:11, column:61,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:61,the value of plot_cost is         : 71.96555032881564 

 At row:11, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:11, column:62,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:62,the value of plot_cost is         : 71.67428207079907 

 At row:11, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:11, column:63,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:63,the value of plot_cost is         : 71.38382187318501 

 At row:11, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:11, column:64,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:64,the value of plot_cost is         : 71.09416973597347 

 At row:11, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:11, column:65,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:65,the value of plot_cost is         : 70.80532565916445 

 At row:11, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:11, column:66,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:66,the value of plot_cost is         : 70.51728964275792 

 At row:11, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:11, column:67,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:67,the value of plot_cost is         : 70.23006168675393 

 At row:11, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:11, column:68,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:68,the value of plot_cost is         : 69.94364179115246 

 At row:11, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:11, column:69,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:69,the value of plot_cost is         : 69.6580299559535 

 At row:11, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:11, column:70,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:70,the value of plot_cost is         : 69.37322618115705 

 At row:11, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:11, column:71,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:71,the value of plot_cost is         : 69.0892304667631 

 At row:11, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:11, column:72,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:72,the value of plot_cost is         : 68.80604281277168 

 At row:11, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:11, column:73,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:73,the value of plot_cost is         : 68.52366321918278 

 At row:11, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:11, column:74,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:74,the value of plot_cost is         : 68.24209168599637 

 At row:11, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:11, column:75,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:75,the value of plot_cost is         : 67.9613282132125 

 At row:11, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:11, column:76,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:76,the value of plot_cost is         : 67.68137280083114 

 At row:11, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:11, column:77,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:77,the value of plot_cost is         : 67.40222544885229 

 At row:11, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:11, column:78,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:78,the value of plot_cost is         : 67.12388615727596 

 At row:11, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:11, column:79,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:79,the value of plot_cost is         : 66.84635492610214 

 At row:11, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:11, column:80,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:80,the value of plot_cost is         : 66.56963175533086 

 At row:11, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:11, column:81,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:81,the value of plot_cost is         : 66.29371664496205 

 At row:11, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:11, column:82,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:82,the value of plot_cost is         : 66.01860959499578 

 At row:11, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:11, column:83,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:83,the value of plot_cost is         : 65.74431060543203 

 At row:11, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:11, column:84,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:84,the value of plot_cost is         : 65.47081967627078 

 At row:11, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:11, column:85,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:85,the value of plot_cost is         : 65.19813680751207 

 At row:11, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:11, column:86,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:86,the value of plot_cost is         : 64.92626199915586 

 At row:11, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:11, column:87,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:87,the value of plot_cost is         : 64.65519525120216 

 At row:11, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:11, column:88,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:88,the value of plot_cost is         : 64.38493656365098 

 At row:11, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:11, column:89,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:89,the value of plot_cost is         : 64.11548593650231 

 At row:11, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:11, column:90,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:90,the value of plot_cost is         : 63.846843369756165 

 At row:11, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:11, column:91,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:91,the value of plot_cost is         : 63.57900886341253 

 At row:11, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:11, column:92,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:92,the value of plot_cost is         : 63.311982417471405 

 At row:11, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:11, column:93,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:93,the value of plot_cost is         : 63.04576403193281 

 At row:11, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:11, column:94,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:94,the value of plot_cost is         : 62.78035370679671 

 At row:11, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:11, column:95,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:95,the value of plot_cost is         : 62.51575144206315 

 At row:11, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:11, column:96,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:96,the value of plot_cost is         : 62.251957237732086 

 At row:11, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:11, column:97,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:97,the value of plot_cost is         : 61.988971093803535 

 At row:11, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:11, column:98,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:98,the value of plot_cost is         : 61.72679301027751 

 At row:11, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:11, column:99,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:99,the value of plot_cost is         : 61.46542298715401 

 At row:11, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:11, column:100,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:100,the value of plot_cost is         : 61.20486102443301 

 At row:11, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:11, column:101,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:101,the value of plot_cost is         : 60.945107122114514 

 At row:11, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:11, column:102,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:102,the value of plot_cost is         : 60.68616128019854 

 At row:11, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:11, column:103,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:103,the value of plot_cost is         : 60.42802349868509 

 At row:11, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:11, column:104,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:104,the value of plot_cost is         : 60.17069377757415 

 At row:11, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:11, column:105,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:105,the value of plot_cost is         : 59.91417211686572 

 At row:11, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:11, column:106,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:106,the value of plot_cost is         : 59.65845851655982 

 At row:11, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:11, column:107,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:107,the value of plot_cost is         : 59.40355297665642 

 At row:11, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:11, column:108,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:108,the value of plot_cost is         : 59.14945549715555 

 At row:11, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:11, column:109,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:109,the value of plot_cost is         : 58.89616607805718 

 At row:11, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:11, column:110,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:110,the value of plot_cost is         : 58.64368471936133 

 At row:11, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:11, column:111,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:111,the value of plot_cost is         : 58.392011421068005 

 At row:11, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:11, column:112,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:112,the value of plot_cost is         : 58.141146183177185 

 At row:11, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:11, column:113,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:113,the value of plot_cost is         : 57.89108900568889 

 At row:11, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:11, column:114,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:114,the value of plot_cost is         : 57.64183988860309 

 At row:11, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:11, column:115,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:115,the value of plot_cost is         : 57.39339883191982 

 At row:11, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:11, column:116,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:116,the value of plot_cost is         : 57.145765835639054 

 At row:11, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:11, column:117,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:117,the value of plot_cost is         : 56.898940899760824 

 At row:11, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:11, column:118,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:118,the value of plot_cost is         : 56.6529240242851 

 At row:11, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:11, column:119,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:119,the value of plot_cost is         : 56.40771520921188 

 At row:11, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:11, column:120,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:120,the value of plot_cost is         : 56.16331445454118 

 At row:11, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:11, column:121,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:121,the value of plot_cost is         : 55.919721760273 

 At row:11, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:11, column:122,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:122,the value of plot_cost is         : 55.67693712640734 

 At row:11, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:11, column:123,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:123,the value of plot_cost is         : 55.43496055294419 

 At row:11, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:11, column:124,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:124,the value of plot_cost is         : 55.19379203988355 

 At row:11, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:11, column:125,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:125,the value of plot_cost is         : 54.95343158722542 

 At row:11, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:11, column:126,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:126,the value of plot_cost is         : 54.713879194969806 

 At row:11, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:11, column:127,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:127,the value of plot_cost is         : 54.47513486311673 

 At row:11, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:11, column:128,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:128,the value of plot_cost is         : 54.23719859166615 

 At row:11, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:11, column:129,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:129,the value of plot_cost is         : 54.00007038061809 

 At row:11, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:11, column:130,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:130,the value of plot_cost is         : 53.76375022997253 

 At row:11, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:11, column:131,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:131,the value of plot_cost is         : 53.5282381397295 

 At row:11, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:11, column:132,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:132,the value of plot_cost is         : 53.29353410988899 

 At row:11, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:11, column:133,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:133,the value of plot_cost is         : 53.059638140450986 

 At row:11, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:11, column:134,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:134,the value of plot_cost is         : 52.8265502314155 

 At row:11, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:11, column:135,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:135,the value of plot_cost is         : 52.594270382782526 

 At row:11, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:11, column:136,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:136,the value of plot_cost is         : 52.362798594552075 

 At row:11, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:11, column:137,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:137,the value of plot_cost is         : 52.13213486672414 

 At row:11, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:11, column:138,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:138,the value of plot_cost is         : 51.90227919929871 

 At row:11, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:11, column:139,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:139,the value of plot_cost is         : 51.673231592275805 

 At row:11, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:11, column:140,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:140,the value of plot_cost is         : 51.444992045655404 

 At row:11, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:11, column:141,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:141,the value of plot_cost is         : 51.21756055943752 

 At row:11, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:11, column:142,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:142,the value of plot_cost is         : 50.99093713362216 

 At row:11, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:11, column:143,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:143,the value of plot_cost is         : 50.76512176820931 

 At row:11, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:11, column:144,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:144,the value of plot_cost is         : 50.540114463198975 

 At row:11, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:11, column:145,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:145,the value of plot_cost is         : 50.31591521859116 

 At row:11, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:11, column:146,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:146,the value of plot_cost is         : 50.092524034385846 

 At row:11, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:11, column:147,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:147,the value of plot_cost is         : 49.86994091058307 

 At row:11, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:11, column:148,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:148,the value of plot_cost is         : 49.64816584718279 

 At row:11, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:11, column:149,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:149,the value of plot_cost is         : 49.42719884418502 

 At row:11, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:11, column:150,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:150,the value of plot_cost is         : 49.207039901589766 

 At row:11, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:11, column:151,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:151,the value of plot_cost is         : 48.987689019397045 

 At row:11, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:11, column:152,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:152,the value of plot_cost is         : 48.76914619760684 

 At row:11, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:11, column:153,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:153,the value of plot_cost is         : 48.551411436219134 

 At row:11, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:11, column:154,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:154,the value of plot_cost is         : 48.33448473523396 

 At row:11, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:11, column:155,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:155,the value of plot_cost is         : 48.11836609465128 

 At row:11, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:11, column:156,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:156,the value of plot_cost is         : 47.903055514471134 

 At row:11, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:11, column:157,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:157,the value of plot_cost is         : 47.68855299469349 

 At row:11, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:11, column:158,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:158,the value of plot_cost is         : 47.47485853531837 

 At row:11, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:11, column:159,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:159,the value of plot_cost is         : 47.261972136345754 

 At row:11, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:11, column:160,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:160,the value of plot_cost is         : 47.04989379777565 

 At row:11, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:11, column:161,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:161,the value of plot_cost is         : 46.83862351960808 

 At row:11, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:11, column:162,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:162,the value of plot_cost is         : 46.62816130184302 

 At row:11, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:11, column:163,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:163,the value of plot_cost is         : 46.41850714448047 

 At row:11, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:11, column:164,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:164,the value of plot_cost is         : 46.209661047520434 

 At row:11, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:11, column:165,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:165,the value of plot_cost is         : 46.00162301096291 

 At row:11, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:11, column:166,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:166,the value of plot_cost is         : 45.79439303480792 

 At row:11, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:11, column:167,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:167,the value of plot_cost is         : 45.587971119055425 

 At row:11, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:11, column:168,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:168,the value of plot_cost is         : 45.38235726370546 

 At row:11, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:11, column:169,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:169,the value of plot_cost is         : 45.177551468758 

 At row:11, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:11, column:170,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:170,the value of plot_cost is         : 44.97355373421305 

 At row:11, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:11, column:171,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:171,the value of plot_cost is         : 44.77036406007062 

 At row:11, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:11, column:172,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:172,the value of plot_cost is         : 44.56798244633072 

 At row:11, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:11, column:173,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:173,the value of plot_cost is         : 44.36640889299333 

 At row:11, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:11, column:174,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:174,the value of plot_cost is         : 44.165643400058435 

 At row:11, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:11, column:175,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:175,the value of plot_cost is         : 43.965685967526056 

 At row:11, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:11, column:176,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:176,the value of plot_cost is         : 43.76653659539621 

 At row:11, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:11, column:177,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:177,the value of plot_cost is         : 43.56819528366887 

 At row:11, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:11, column:178,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:178,the value of plot_cost is         : 43.37066203234406 

 At row:11, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:11, column:179,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:179,the value of plot_cost is         : 43.17393684142174 

 At row:11, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:11, column:180,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:180,the value of plot_cost is         : 42.978019710901954 

 At row:11, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:11, column:181,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:181,the value of plot_cost is         : 42.782910640784685 

 At row:11, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:11, column:182,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:182,the value of plot_cost is         : 42.58860963106992 

 At row:11, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:11, column:183,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:183,the value of plot_cost is         : 42.39511668175767 

 At row:11, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:11, column:184,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:184,the value of plot_cost is         : 42.20243179284793 

 At row:11, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:11, column:185,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:185,the value of plot_cost is         : 42.01055496434072 

 At row:11, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:11, column:186,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:186,the value of plot_cost is         : 41.81948619623602 

 At row:11, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:11, column:187,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:187,the value of plot_cost is         : 41.62922548853384 

 At row:11, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:11, column:188,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:188,the value of plot_cost is         : 41.439772841234166 

 At row:11, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:11, column:189,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:189,the value of plot_cost is         : 41.251128254337004 

 At row:11, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:11, column:190,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:190,the value of plot_cost is         : 41.06329172784236 

 At row:11, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:11, column:191,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:191,the value of plot_cost is         : 40.87626326175024 

 At row:11, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:11, column:192,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:192,the value of plot_cost is         : 40.690042856060636 

 At row:11, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:11, column:193,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:193,the value of plot_cost is         : 40.504630510773545 

 At row:11, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:11, column:194,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:194,the value of plot_cost is         : 40.32002622588896 

 At row:11, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:11, column:195,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:195,the value of plot_cost is         : 40.13623000140689 

 At row:11, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:11, column:196,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:196,the value of plot_cost is         : 39.95324183732733 

 At row:11, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:11, column:197,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:197,the value of plot_cost is         : 39.7710617336503 

 At row:11, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:11, column:198,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:198,the value of plot_cost is         : 39.589689690375785 

 At row:11, column:199,the value of plot_t0 is           : 3.0
 At row:11, column:199,the value of plot_t1 is           : -0.778894472361809
 At row:11, column:199,the value of plot_cost is         : 39.40912570750377 

 At row:12, column:0,the value of plot_t0 is           : -1.0
 At row:12, column:0,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:0,the value of plot_cost is         : 89.76809759493807 

 At row:12, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:12, column:1,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:1,the value of plot_cost is         : 89.43021579541643 

 At row:12, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:12, column:2,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:2,the value of plot_cost is         : 89.09314205629727 

 At row:12, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:12, column:3,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:3,the value of plot_cost is         : 88.75687637758065 

 At row:12, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:12, column:4,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:4,the value of plot_cost is         : 88.42141875926654 

 At row:12, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:12, column:5,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:5,the value of plot_cost is         : 88.08676920135495 

 At row:12, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:12, column:6,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:6,the value of plot_cost is         : 87.75292770384586 

 At row:12, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:12, column:7,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:7,the value of plot_cost is         : 87.41989426673928 

 At row:12, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:12, column:8,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:8,the value of plot_cost is         : 87.08766889003526 

 At row:12, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:12, column:9,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:9,the value of plot_cost is         : 86.7562515737337 

 At row:12, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:12, column:10,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:10,the value of plot_cost is         : 86.42564231783467 

 At row:12, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:12, column:11,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:11,the value of plot_cost is         : 86.09584112233817 

 At row:12, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:12, column:12,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:12,the value of plot_cost is         : 85.76684798724419 

 At row:12, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:12, column:13,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:13,the value of plot_cost is         : 85.43866291255272 

 At row:12, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:12, column:14,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:14,the value of plot_cost is         : 85.11128589826376 

 At row:12, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:12, column:15,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:15,the value of plot_cost is         : 84.78471694437731 

 At row:12, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:12, column:16,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:16,the value of plot_cost is         : 84.45895605089338 

 At row:12, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:12, column:17,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:17,the value of plot_cost is         : 84.13400321781195 

 At row:12, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:12, column:18,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:18,the value of plot_cost is         : 83.80985844513306 

 At row:12, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:12, column:19,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:19,the value of plot_cost is         : 83.48652173285667 

 At row:12, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:12, column:20,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:20,the value of plot_cost is         : 83.16399308098279 

 At row:12, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:12, column:21,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:21,the value of plot_cost is         : 82.84227248951144 

 At row:12, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:12, column:22,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:22,the value of plot_cost is         : 82.52135995844259 

 At row:12, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:12, column:23,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:23,the value of plot_cost is         : 82.20125548777628 

 At row:12, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:12, column:24,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:24,the value of plot_cost is         : 81.88195907751246 

 At row:12, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:12, column:25,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:25,the value of plot_cost is         : 81.56347072765118 

 At row:12, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:12, column:26,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:26,the value of plot_cost is         : 81.24579043819239 

 At row:12, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:12, column:27,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:27,the value of plot_cost is         : 80.92891820913613 

 At row:12, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:12, column:28,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:28,the value of plot_cost is         : 80.61285404048239 

 At row:12, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:12, column:29,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:29,the value of plot_cost is         : 80.29759793223116 

 At row:12, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:12, column:30,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:30,the value of plot_cost is         : 79.98314988438243 

 At row:12, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:12, column:31,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:31,the value of plot_cost is         : 79.66950989693622 

 At row:12, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:12, column:32,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:32,the value of plot_cost is         : 79.35667796989253 

 At row:12, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:12, column:33,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:33,the value of plot_cost is         : 79.04465410325136 

 At row:12, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:12, column:34,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:34,the value of plot_cost is         : 78.7334382970127 

 At row:12, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:12, column:35,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:35,the value of plot_cost is         : 78.42303055117657 

 At row:12, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:12, column:36,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:36,the value of plot_cost is         : 78.11343086574293 

 At row:12, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:12, column:37,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:37,the value of plot_cost is         : 77.80463924071181 

 At row:12, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:12, column:38,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:38,the value of plot_cost is         : 77.49665567608321 

 At row:12, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:12, column:39,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:39,the value of plot_cost is         : 77.18948017185713 

 At row:12, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:12, column:40,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:40,the value of plot_cost is         : 76.88311272803357 

 At row:12, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:12, column:41,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:41,the value of plot_cost is         : 76.57755334461251 

 At row:12, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:12, column:42,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:42,the value of plot_cost is         : 76.27280202159396 

 At row:12, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:12, column:43,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:43,the value of plot_cost is         : 75.96885875897796 

 At row:12, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:12, column:44,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:44,the value of plot_cost is         : 75.66572355676443 

 At row:12, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:12, column:45,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:45,the value of plot_cost is         : 75.36339641495344 

 At row:12, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:12, column:46,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:46,the value of plot_cost is         : 75.06187733354496 

 At row:12, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:12, column:47,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:47,the value of plot_cost is         : 74.761166312539 

 At row:12, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:12, column:48,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:48,the value of plot_cost is         : 74.46126335193556 

 At row:12, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:12, column:49,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:49,the value of plot_cost is         : 74.16216845173462 

 At row:12, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:12, column:50,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:50,the value of plot_cost is         : 73.86388161193621 

 At row:12, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:12, column:51,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:51,the value of plot_cost is         : 73.56640283254029 

 At row:12, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:12, column:52,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:52,the value of plot_cost is         : 73.26973211354691 

 At row:12, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:12, column:53,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:53,the value of plot_cost is         : 72.97386945495604 

 At row:12, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:12, column:54,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:54,the value of plot_cost is         : 72.67881485676769 

 At row:12, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:12, column:55,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:55,the value of plot_cost is         : 72.38456831898185 

 At row:12, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:12, column:56,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:56,the value of plot_cost is         : 72.09112984159852 

 At row:12, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:12, column:57,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:57,the value of plot_cost is         : 71.7984994246177 

 At row:12, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:12, column:58,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:58,the value of plot_cost is         : 71.50667706803942 

 At row:12, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:12, column:59,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:59,the value of plot_cost is         : 71.21566277186362 

 At row:12, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:12, column:60,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:60,the value of plot_cost is         : 70.92545653609035 

 At row:12, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:12, column:61,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:61,the value of plot_cost is         : 70.63605836071962 

 At row:12, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:12, column:62,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:62,the value of plot_cost is         : 70.34746824575137 

 At row:12, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:12, column:63,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:63,the value of plot_cost is         : 70.05968619118565 

 At row:12, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:12, column:64,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:64,the value of plot_cost is         : 69.77271219702244 

 At row:12, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:12, column:65,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:65,the value of plot_cost is         : 69.48654626326176 

 At row:12, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:12, column:66,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:66,the value of plot_cost is         : 69.20118838990358 

 At row:12, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:12, column:67,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:67,the value of plot_cost is         : 68.9166385769479 

 At row:12, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:12, column:68,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:68,the value of plot_cost is         : 68.63289682439476 

 At row:12, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:12, column:69,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:69,the value of plot_cost is         : 68.34996313224411 

 At row:12, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:12, column:70,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:70,the value of plot_cost is         : 68.06783750049601 

 At row:12, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:12, column:71,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:71,the value of plot_cost is         : 67.78651992915042 

 At row:12, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:12, column:72,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:72,the value of plot_cost is         : 67.50601041820734 

 At row:12, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:12, column:73,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:73,the value of plot_cost is         : 67.22630896766675 

 At row:12, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:12, column:74,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:74,the value of plot_cost is         : 66.9474155775287 

 At row:12, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:12, column:75,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:75,the value of plot_cost is         : 66.66933024779317 

 At row:12, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:12, column:76,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:76,the value of plot_cost is         : 66.39205297846014 

 At row:12, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:12, column:77,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:77,the value of plot_cost is         : 66.11558376952962 

 At row:12, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:12, column:78,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:78,the value of plot_cost is         : 65.83992262100163 

 At row:12, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:12, column:79,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:79,the value of plot_cost is         : 65.56506953287615 

 At row:12, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:12, column:80,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:80,the value of plot_cost is         : 65.29102450515319 

 At row:12, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:12, column:81,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:81,the value of plot_cost is         : 65.01778753783275 

 At row:12, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:12, column:82,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:82,the value of plot_cost is         : 64.7453586309148 

 At row:12, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:12, column:83,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:83,the value of plot_cost is         : 64.47373778439938 

 At row:12, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:12, column:84,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:84,the value of plot_cost is         : 64.20292499828648 

 At row:12, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:12, column:85,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:85,the value of plot_cost is         : 63.9329202725761 

 At row:12, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:12, column:86,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:86,the value of plot_cost is         : 63.66372360726822 

 At row:12, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:12, column:87,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:87,the value of plot_cost is         : 63.395335002362856 

 At row:12, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:12, column:88,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:88,the value of plot_cost is         : 63.12775445786001 

 At row:12, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:12, column:89,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:89,the value of plot_cost is         : 62.860981973759664 

 At row:12, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:12, column:90,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:90,the value of plot_cost is         : 62.595017550061854 

 At row:12, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:12, column:91,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:91,the value of plot_cost is         : 62.32986118676657 

 At row:12, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:12, column:92,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:92,the value of plot_cost is         : 62.06551288387377 

 At row:12, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:12, column:93,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:93,the value of plot_cost is         : 61.801972641383514 

 At row:12, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:12, column:94,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:94,the value of plot_cost is         : 61.53924045929576 

 At row:12, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:12, column:95,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:95,the value of plot_cost is         : 61.27731633761052 

 At row:12, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:12, column:96,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:96,the value of plot_cost is         : 61.0162002763278 

 At row:12, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:12, column:97,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:97,the value of plot_cost is         : 60.75589227544758 

 At row:12, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:12, column:98,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:98,the value of plot_cost is         : 60.49639233496989 

 At row:12, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:12, column:99,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:99,the value of plot_cost is         : 60.23770045489471 

 At row:12, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:12, column:100,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:100,the value of plot_cost is         : 59.97981663522205 

 At row:12, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:12, column:101,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:101,the value of plot_cost is         : 59.722740875951914 

 At row:12, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:12, column:102,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:102,the value of plot_cost is         : 59.46647317708427 

 At row:12, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:12, column:103,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:103,the value of plot_cost is         : 59.21101353861914 

 At row:12, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:12, column:104,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:104,the value of plot_cost is         : 58.956361960556556 

 At row:12, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:12, column:105,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:105,the value of plot_cost is         : 58.70251844289647 

 At row:12, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:12, column:106,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:106,the value of plot_cost is         : 58.44948298563888 

 At row:12, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:12, column:107,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:107,the value of plot_cost is         : 58.19725558878383 

 At row:12, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:12, column:108,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:108,the value of plot_cost is         : 57.94583625233128 

 At row:12, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:12, column:109,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:109,the value of plot_cost is         : 57.69522497628125 

 At row:12, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:12, column:110,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:110,the value of plot_cost is         : 57.44542176063375 

 At row:12, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:12, column:111,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:111,the value of plot_cost is         : 57.19642660538875 

 At row:12, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:12, column:112,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:112,the value of plot_cost is         : 56.94823951054626 

 At row:12, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:12, column:113,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:113,the value of plot_cost is         : 56.7008604761063 

 At row:12, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:12, column:114,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:114,the value of plot_cost is         : 56.454289502068846 

 At row:12, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:12, column:115,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:115,the value of plot_cost is         : 56.208526588433905 

 At row:12, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:12, column:116,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:116,the value of plot_cost is         : 55.96357173520149 

 At row:12, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:12, column:117,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:117,the value of plot_cost is         : 55.71942494237159 

 At row:12, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:12, column:118,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:118,the value of plot_cost is         : 55.47608620994419 

 At row:12, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:12, column:119,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:119,the value of plot_cost is         : 55.233555537919315 

 At row:12, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:12, column:120,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:120,the value of plot_cost is         : 54.991832926296944 

 At row:12, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:12, column:121,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:121,the value of plot_cost is         : 54.75091837507711 

 At row:12, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:12, column:122,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:122,the value of plot_cost is         : 54.51081188425977 

 At row:12, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:12, column:123,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:123,the value of plot_cost is         : 54.27151345384496 

 At row:12, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:12, column:124,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:124,the value of plot_cost is         : 54.03302308383266 

 At row:12, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:12, column:125,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:125,the value of plot_cost is         : 53.795340774222865 

 At row:12, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:12, column:126,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:126,the value of plot_cost is         : 53.558466525015604 

 At row:12, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:12, column:127,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:127,the value of plot_cost is         : 53.32240033621085 

 At row:12, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:12, column:128,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:128,the value of plot_cost is         : 53.087142207808604 

 At row:12, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:12, column:129,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:129,the value of plot_cost is         : 52.852692139808866 

 At row:12, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:12, column:130,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:130,the value of plot_cost is         : 52.61905013221167 

 At row:12, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:12, column:131,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:131,the value of plot_cost is         : 52.38621618501698 

 At row:12, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:12, column:132,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:132,the value of plot_cost is         : 52.15419029822478 

 At row:12, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:12, column:133,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:133,the value of plot_cost is         : 51.92297247183512 

 At row:12, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:12, column:134,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:134,the value of plot_cost is         : 51.69256270584797 

 At row:12, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:12, column:135,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:135,the value of plot_cost is         : 51.46296100026334 

 At row:12, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:12, column:136,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:136,the value of plot_cost is         : 51.23416735508122 

 At row:12, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:12, column:137,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:137,the value of plot_cost is         : 51.00618177030162 

 At row:12, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:12, column:138,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:138,the value of plot_cost is         : 50.779004245924526 

 At row:12, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:12, column:139,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:139,the value of plot_cost is         : 50.55263478194994 

 At row:12, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:12, column:140,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:140,the value of plot_cost is         : 50.32707337837788 

 At row:12, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:12, column:141,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:141,the value of plot_cost is         : 50.10232003520834 

 At row:12, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:12, column:142,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:142,the value of plot_cost is         : 49.87837475244131 

 At row:12, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:12, column:143,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:143,the value of plot_cost is         : 49.655237530076796 

 At row:12, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:12, column:144,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:144,the value of plot_cost is         : 49.4329083681148 

 At row:12, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:12, column:145,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:145,the value of plot_cost is         : 49.21138726655531 

 At row:12, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:12, column:146,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:146,the value of plot_cost is         : 48.990674225398344 

 At row:12, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:12, column:147,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:147,the value of plot_cost is         : 48.770769244643894 

 At row:12, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:12, column:148,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:148,the value of plot_cost is         : 48.55167232429195 

 At row:12, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:12, column:149,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:149,the value of plot_cost is         : 48.333383464342525 

 At row:12, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:12, column:150,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:150,the value of plot_cost is         : 48.11590266479562 

 At row:12, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:12, column:151,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:151,the value of plot_cost is         : 47.89922992565121 

 At row:12, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:12, column:152,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:152,the value of plot_cost is         : 47.68336524690935 

 At row:12, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:12, column:153,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:153,the value of plot_cost is         : 47.46830862856998 

 At row:12, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:12, column:154,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:154,the value of plot_cost is         : 47.25406007063313 

 At row:12, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:12, column:155,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:155,the value of plot_cost is         : 47.04061957309881 

 At row:12, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:12, column:156,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:156,the value of plot_cost is         : 46.827987135966985 

 At row:12, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:12, column:157,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:157,the value of plot_cost is         : 46.61616275923769 

 At row:12, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:12, column:158,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:158,the value of plot_cost is         : 46.40514644291088 

 At row:12, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:12, column:159,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:159,the value of plot_cost is         : 46.19493818698661 

 At row:12, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:12, column:160,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:160,the value of plot_cost is         : 45.98553799146487 

 At row:12, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:12, column:161,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:161,the value of plot_cost is         : 45.77694585634561 

 At row:12, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:12, column:162,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:162,the value of plot_cost is         : 45.569161781628885 

 At row:12, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:12, column:163,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:163,the value of plot_cost is         : 45.36218576731468 

 At row:12, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:12, column:164,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:164,the value of plot_cost is         : 45.15601781340298 

 At row:12, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:12, column:165,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:165,the value of plot_cost is         : 44.95065791989379 

 At row:12, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:12, column:166,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:166,the value of plot_cost is         : 44.74610608678713 

 At row:12, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:12, column:167,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:167,the value of plot_cost is         : 44.54236231408297 

 At row:12, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:12, column:168,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:168,the value of plot_cost is         : 44.33942660178134 

 At row:12, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:12, column:169,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:169,the value of plot_cost is         : 44.137298949882215 

 At row:12, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:12, column:170,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:170,the value of plot_cost is         : 43.9359793583856 

 At row:12, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:12, column:171,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:171,the value of plot_cost is         : 43.73546782729151 

 At row:12, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:12, column:172,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:172,the value of plot_cost is         : 43.53576435659994 

 At row:12, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:12, column:173,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:173,the value of plot_cost is         : 43.33686894631088 

 At row:12, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:12, column:174,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:174,the value of plot_cost is         : 43.13878159642434 

 At row:12, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:12, column:175,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:175,the value of plot_cost is         : 42.94150230694029 

 At row:12, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:12, column:176,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:176,the value of plot_cost is         : 42.74503107785878 

 At row:12, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:12, column:177,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:177,the value of plot_cost is         : 42.54936790917978 

 At row:12, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:12, column:178,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:178,the value of plot_cost is         : 42.3545128009033 

 At row:12, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:12, column:179,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:179,the value of plot_cost is         : 42.16046575302932 

 At row:12, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:12, column:180,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:180,the value of plot_cost is         : 41.967226765557875 

 At row:12, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:12, column:181,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:181,the value of plot_cost is         : 41.77479583848892 

 At row:12, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:12, column:182,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:182,the value of plot_cost is         : 41.5831729718225 

 At row:12, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:12, column:183,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:183,the value of plot_cost is         : 41.39235816555859 

 At row:12, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:12, column:184,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:184,the value of plot_cost is         : 41.2023514196972 

 At row:12, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:12, column:185,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:185,the value of plot_cost is         : 41.01315273423831 

 At row:12, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:12, column:186,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:186,the value of plot_cost is         : 40.824762109181954 

 At row:12, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:12, column:187,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:187,the value of plot_cost is         : 40.637179544528095 

 At row:12, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:12, column:188,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:188,the value of plot_cost is         : 40.450405040276756 

 At row:12, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:12, column:189,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:189,the value of plot_cost is         : 40.26443859642794 

 At row:12, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:12, column:190,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:190,the value of plot_cost is         : 40.07928021298164 

 At row:12, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:12, column:191,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:191,the value of plot_cost is         : 39.894929889937835 

 At row:12, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:12, column:192,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:192,the value of plot_cost is         : 39.71138762729657 

 At row:12, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:12, column:193,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:193,the value of plot_cost is         : 39.528653425057804 

 At row:12, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:12, column:194,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:194,the value of plot_cost is         : 39.34672728322156 

 At row:12, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:12, column:195,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:195,the value of plot_cost is         : 39.16560920178784 

 At row:12, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:12, column:196,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:196,the value of plot_cost is         : 38.98529918075662 

 At row:12, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:12, column:197,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:197,the value of plot_cost is         : 38.805797220127914 

 At row:12, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:12, column:198,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:198,the value of plot_cost is         : 38.627103319901735 

 At row:12, column:199,the value of plot_t0 is           : 3.0
 At row:12, column:199,the value of plot_t1 is           : -0.7587939698492463
 At row:12, column:199,the value of plot_cost is         : 38.44921748007806 

 At row:13, column:0,the value of plot_t0 is           : -1.0
 At row:13, column:0,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:0,the value of plot_cost is         : 88.28782155573272 

 At row:13, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:13, column:1,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:1,the value of plot_cost is         : 87.9526178992594 

 At row:13, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:13, column:2,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:2,the value of plot_cost is         : 87.61822230318859 

 At row:13, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:13, column:3,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:3,the value of plot_cost is         : 87.28463476752029 

 At row:13, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:13, column:4,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:4,the value of plot_cost is         : 86.9518552922545 

 At row:13, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:13, column:5,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:5,the value of plot_cost is         : 86.61988387739126 

 At row:13, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:13, column:6,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:6,the value of plot_cost is         : 86.28872052293052 

 At row:13, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:13, column:7,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:7,the value of plot_cost is         : 85.95836522887228 

 At row:13, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:13, column:8,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:8,the value of plot_cost is         : 85.62881799521656 

 At row:13, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:13, column:9,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:9,the value of plot_cost is         : 85.30007882196337 

 At row:13, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:13, column:10,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:10,the value of plot_cost is         : 84.97214770911269 

 At row:13, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:13, column:11,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:11,the value of plot_cost is         : 84.64502465666452 

 At row:13, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:13, column:12,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:12,the value of plot_cost is         : 84.31870966461885 

 At row:13, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:13, column:13,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:13,the value of plot_cost is         : 83.9932027329757 

 At row:13, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:13, column:14,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:14,the value of plot_cost is         : 83.66850386173509 

 At row:13, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:13, column:15,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:15,the value of plot_cost is         : 83.34461305089697 

 At row:13, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:13, column:16,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:16,the value of plot_cost is         : 83.02153030046138 

 At row:13, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:13, column:17,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:17,the value of plot_cost is         : 82.69925561042831 

 At row:13, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:13, column:18,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:18,the value of plot_cost is         : 82.37778898079775 

 At row:13, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:13, column:19,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:19,the value of plot_cost is         : 82.05713041156969 

 At row:13, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:13, column:20,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:20,the value of plot_cost is         : 81.73727990274415 

 At row:13, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:13, column:21,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:21,the value of plot_cost is         : 81.41823745432114 

 At row:13, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:13, column:22,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:22,the value of plot_cost is         : 81.10000306630062 

 At row:13, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:13, column:23,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:23,the value of plot_cost is         : 80.78257673868264 

 At row:13, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:13, column:24,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:24,the value of plot_cost is         : 80.46595847146716 

 At row:13, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:13, column:25,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:25,the value of plot_cost is         : 80.15014826465419 

 At row:13, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:13, column:26,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:26,the value of plot_cost is         : 79.83514611824376 

 At row:13, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:13, column:27,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:27,the value of plot_cost is         : 79.52095203223583 

 At row:13, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:13, column:28,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:28,the value of plot_cost is         : 79.20756600663042 

 At row:13, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:13, column:29,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:29,the value of plot_cost is         : 78.89498804142752 

 At row:13, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:13, column:30,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:30,the value of plot_cost is         : 78.58321813662714 

 At row:13, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:13, column:31,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:31,the value of plot_cost is         : 78.27225629222927 

 At row:13, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:13, column:32,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:32,the value of plot_cost is         : 77.96210250823391 

 At row:13, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:13, column:33,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:33,the value of plot_cost is         : 77.65275678464107 

 At row:13, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:13, column:34,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:34,the value of plot_cost is         : 77.34421912145073 

 At row:13, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:13, column:35,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:35,the value of plot_cost is         : 77.03648951866295 

 At row:13, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:13, column:36,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:36,the value of plot_cost is         : 76.72956797627765 

 At row:13, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:13, column:37,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:37,the value of plot_cost is         : 76.42345449429486 

 At row:13, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:13, column:38,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:38,the value of plot_cost is         : 76.11814907271462 

 At row:13, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:13, column:39,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:39,the value of plot_cost is         : 75.81365171153686 

 At row:13, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:13, column:40,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:40,the value of plot_cost is         : 75.50996241076164 

 At row:13, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:13, column:41,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:41,the value of plot_cost is         : 75.2070811703889 

 At row:13, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:13, column:42,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:42,the value of plot_cost is         : 74.9050079904187 

 At row:13, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:13, column:43,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:43,the value of plot_cost is         : 74.60374287085101 

 At row:13, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:13, column:44,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:44,the value of plot_cost is         : 74.30328581168584 

 At row:13, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:13, column:45,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:45,the value of plot_cost is         : 74.0036368129232 

 At row:13, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:13, column:46,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:46,the value of plot_cost is         : 73.70479587456305 

 At row:13, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:13, column:47,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:47,the value of plot_cost is         : 73.40676299660542 

 At row:13, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:13, column:48,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:48,the value of plot_cost is         : 73.10953817905032 

 At row:13, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:13, column:49,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:49,the value of plot_cost is         : 72.8131214218977 

 At row:13, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:13, column:50,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:50,the value of plot_cost is         : 72.51751272514764 

 At row:13, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:13, column:51,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:51,the value of plot_cost is         : 72.22271208880005 

 At row:13, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:13, column:52,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:52,the value of plot_cost is         : 71.928719512855 

 At row:13, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:13, column:53,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:53,the value of plot_cost is         : 71.63553499731246 

 At row:13, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:13, column:54,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:54,the value of plot_cost is         : 71.34315854217245 

 At row:13, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:13, column:55,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:55,the value of plot_cost is         : 71.05159014743494 

 At row:13, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:13, column:56,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:56,the value of plot_cost is         : 70.76082981309996 

 At row:13, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:13, column:57,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:57,the value of plot_cost is         : 70.47087753916747 

 At row:13, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:13, column:58,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:58,the value of plot_cost is         : 70.18173332563752 

 At row:13, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:13, column:59,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:59,the value of plot_cost is         : 69.89339717251006 

 At row:13, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:13, column:60,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:60,the value of plot_cost is         : 69.60586907978514 

 At row:13, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:13, column:61,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:61,the value of plot_cost is         : 69.31914904746272 

 At row:13, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:13, column:62,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:62,the value of plot_cost is         : 69.0332370755428 

 At row:13, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:13, column:63,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:63,the value of plot_cost is         : 68.74813316402543 

 At row:13, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:13, column:64,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:64,the value of plot_cost is         : 68.46383731291056 

 At row:13, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:13, column:65,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:65,the value of plot_cost is         : 68.1803495221982 

 At row:13, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:13, column:66,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:66,the value of plot_cost is         : 67.89766979188836 

 At row:13, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:13, column:67,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:67,the value of plot_cost is         : 67.61579812198104 

 At row:13, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:13, column:68,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:68,the value of plot_cost is         : 67.33473451247623 

 At row:13, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:13, column:69,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:69,the value of plot_cost is         : 67.05447896337392 

 At row:13, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:13, column:70,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:70,the value of plot_cost is         : 66.77503147467417 

 At row:13, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:13, column:71,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:71,the value of plot_cost is         : 66.4963920463769 

 At row:13, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:13, column:72,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:72,the value of plot_cost is         : 66.21856067848215 

 At row:13, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:13, column:73,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:73,the value of plot_cost is         : 65.9415373709899 

 At row:13, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:13, column:74,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:74,the value of plot_cost is         : 65.66532212390018 

 At row:13, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:13, column:75,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:75,the value of plot_cost is         : 65.38991493721296 

 At row:13, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:13, column:76,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:76,the value of plot_cost is         : 65.1153158109283 

 At row:13, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:13, column:77,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:77,the value of plot_cost is         : 64.84152474504612 

 At row:13, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:13, column:78,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:78,the value of plot_cost is         : 64.56854173956646 

 At row:13, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:13, column:79,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:79,the value of plot_cost is         : 64.2963667944893 

 At row:13, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:13, column:80,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:80,the value of plot_cost is         : 64.0249999098147 

 At row:13, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:13, column:81,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:81,the value of plot_cost is         : 63.75444108554258 

 At row:13, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:13, column:82,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:82,the value of plot_cost is         : 63.48469032167297 

 At row:13, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:13, column:83,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:83,the value of plot_cost is         : 63.21574761820588 

 At row:13, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:13, column:84,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:84,the value of plot_cost is         : 62.947612975141304 

 At row:13, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:13, column:85,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:85,the value of plot_cost is         : 62.68028639247925 

 At row:13, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:13, column:86,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:86,the value of plot_cost is         : 62.41376787021972 

 At row:13, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:13, column:87,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:87,the value of plot_cost is         : 62.1480574083627 

 At row:13, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:13, column:88,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:88,the value of plot_cost is         : 61.88315500690818 

 At row:13, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:13, column:89,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:89,the value of plot_cost is         : 61.619060665856196 

 At row:13, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:13, column:90,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:90,the value of plot_cost is         : 61.35577438520673 

 At row:13, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:13, column:91,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:91,the value of plot_cost is         : 61.09329616495975 

 At row:13, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:13, column:92,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:92,the value of plot_cost is         : 60.8316260051153 

 At row:13, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:13, column:93,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:93,the value of plot_cost is         : 60.570763905673374 

 At row:13, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:13, column:94,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:94,the value of plot_cost is         : 60.31070986663396 

 At row:13, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:13, column:95,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:95,the value of plot_cost is         : 60.05146388799705 

 At row:13, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:13, column:96,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:96,the value of plot_cost is         : 59.79302596976267 

 At row:13, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:13, column:97,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:97,the value of plot_cost is         : 59.535396111930794 

 At row:13, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:13, column:98,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:98,the value of plot_cost is         : 59.27857431450143 

 At row:13, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:13, column:99,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:99,the value of plot_cost is         : 59.02256057747459 

 At row:13, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:13, column:100,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:100,the value of plot_cost is         : 58.76735490085027 

 At row:13, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:13, column:101,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:101,the value of plot_cost is         : 58.51295728462845 

 At row:13, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:13, column:102,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:102,the value of plot_cost is         : 58.25936772880915 

 At row:13, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:13, column:103,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:103,the value of plot_cost is         : 58.00658623339237 

 At row:13, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:13, column:104,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:104,the value of plot_cost is         : 57.754612798378105 

 At row:13, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:13, column:105,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:105,the value of plot_cost is         : 57.50344742376635 

 At row:13, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:13, column:106,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:106,the value of plot_cost is         : 57.25309010955711 

 At row:13, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:13, column:107,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:107,the value of plot_cost is         : 57.003540855750394 

 At row:13, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:13, column:108,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:108,the value of plot_cost is         : 56.75479966234619 

 At row:13, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:13, column:109,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:109,the value of plot_cost is         : 56.50686652934451 

 At row:13, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:13, column:110,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:110,the value of plot_cost is         : 56.25974145674531 

 At row:13, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:13, column:111,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:111,the value of plot_cost is         : 56.01342444454865 

 At row:13, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:13, column:112,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:112,the value of plot_cost is         : 55.7679154927545 

 At row:13, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:13, column:113,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:113,the value of plot_cost is         : 55.52321460136287 

 At row:13, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:13, column:114,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:114,the value of plot_cost is         : 55.279321770373755 

 At row:13, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:13, column:115,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:115,the value of plot_cost is         : 55.03623699978716 

 At row:13, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:13, column:116,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:116,the value of plot_cost is         : 54.79396028960307 

 At row:13, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:13, column:117,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:117,the value of plot_cost is         : 54.552491639821504 

 At row:13, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:13, column:118,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:118,the value of plot_cost is         : 54.31183105044244 

 At row:13, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:13, column:119,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:119,the value of plot_cost is         : 54.07197852146591 

 At row:13, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:13, column:120,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:120,the value of plot_cost is         : 53.83293405289187 

 At row:13, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:13, column:121,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:121,the value of plot_cost is         : 53.59469764472037 

 At row:13, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:13, column:122,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:122,the value of plot_cost is         : 53.35726929695137 

 At row:13, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:13, column:123,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:123,the value of plot_cost is         : 53.120649009584895 

 At row:13, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:13, column:124,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:124,the value of plot_cost is         : 52.884836782620916 

 At row:13, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:13, column:125,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:125,the value of plot_cost is         : 52.64983261605946 

 At row:13, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:13, column:126,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:126,the value of plot_cost is         : 52.415636509900544 

 At row:13, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:13, column:127,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:127,the value of plot_cost is         : 52.18224846414412 

 At row:13, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:13, column:128,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:128,the value of plot_cost is         : 51.949668478790215 

 At row:13, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:13, column:129,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:129,the value of plot_cost is         : 51.71789655383882 

 At row:13, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:13, column:130,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:130,the value of plot_cost is         : 51.486932689289944 

 At row:13, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:13, column:131,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:131,the value of plot_cost is         : 51.25677688514359 

 At row:13, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:13, column:132,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:132,the value of plot_cost is         : 51.027429141399736 

 At row:13, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:13, column:133,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:133,the value of plot_cost is         : 50.79888945805841 

 At row:13, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:13, column:134,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:134,the value of plot_cost is         : 50.57115783511959 

 At row:13, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:13, column:135,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:135,the value of plot_cost is         : 50.3442342725833 

 At row:13, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:13, column:136,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:136,the value of plot_cost is         : 50.11811877044952 

 At row:13, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:13, column:137,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:137,the value of plot_cost is         : 49.892811328718246 

 At row:13, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:13, column:138,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:138,the value of plot_cost is         : 49.66831194738948 

 At row:13, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:13, column:139,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:139,the value of plot_cost is         : 49.444620626463255 

 At row:13, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:13, column:140,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:140,the value of plot_cost is         : 49.22173736593953 

 At row:13, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:13, column:141,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:141,the value of plot_cost is         : 48.99966216581832 

 At row:13, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:13, column:142,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:142,the value of plot_cost is         : 48.77839502609962 

 At row:13, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:13, column:143,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:143,the value of plot_cost is         : 48.557935946783445 

 At row:13, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:13, column:144,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:144,the value of plot_cost is         : 48.33828492786978 

 At row:13, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:13, column:145,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:145,the value of plot_cost is         : 48.11944196935863 

 At row:13, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:13, column:146,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:146,the value of plot_cost is         : 47.901407071250006 

 At row:13, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:13, column:147,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:147,the value of plot_cost is         : 47.684180233543884 

 At row:13, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:13, column:148,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:148,the value of plot_cost is         : 47.46776145624028 

 At row:13, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:13, column:149,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:149,the value of plot_cost is         : 47.25215073933919 

 At row:13, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:13, column:150,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:150,the value of plot_cost is         : 47.037348082840616 

 At row:13, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:13, column:151,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:151,the value of plot_cost is         : 46.82335348674455 

 At row:13, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:13, column:152,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:152,the value of plot_cost is         : 46.610166951051006 

 At row:13, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:13, column:153,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:153,the value of plot_cost is         : 46.39778847575999 

 At row:13, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:13, column:154,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:154,the value of plot_cost is         : 46.186218060871475 

 At row:13, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:13, column:155,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:155,the value of plot_cost is         : 45.975455706385475 

 At row:13, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:13, column:156,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:156,the value of plot_cost is         : 45.765501412302 

 At row:13, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:13, column:157,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:157,the value of plot_cost is         : 45.556355178621025 

 At row:13, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:13, column:158,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:158,the value of plot_cost is         : 45.34801700534258 

 At row:13, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:13, column:159,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:159,the value of plot_cost is         : 45.14048689246665 

 At row:13, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:13, column:160,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:160,the value of plot_cost is         : 44.933764839993216 

 At row:13, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:13, column:161,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:161,the value of plot_cost is         : 44.727850847922305 

 At row:13, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:13, column:162,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:162,the value of plot_cost is         : 44.522744916253906 

 At row:13, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:13, column:163,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:163,the value of plot_cost is         : 44.31844704498804 

 At row:13, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:13, column:164,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:164,the value of plot_cost is         : 44.11495723412467 

 At row:13, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:13, column:165,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:165,the value of plot_cost is         : 43.91227548366383 

 At row:13, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:13, column:166,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:166,the value of plot_cost is         : 43.710401793605506 

 At row:13, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:13, column:167,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:167,the value of plot_cost is         : 43.50933616394968 

 At row:13, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:13, column:168,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:168,the value of plot_cost is         : 43.30907859469638 

 At row:13, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:13, column:169,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:169,the value of plot_cost is         : 43.1096290858456 

 At row:13, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:13, column:170,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:170,the value of plot_cost is         : 42.91098763739732 

 At row:13, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:13, column:171,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:171,the value of plot_cost is         : 42.71315424935156 

 At row:13, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:13, column:172,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:172,the value of plot_cost is         : 42.516128921708315 

 At row:13, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:13, column:173,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:173,the value of plot_cost is         : 42.319911654467596 

 At row:13, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:13, column:174,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:174,the value of plot_cost is         : 42.12450244762938 

 At row:13, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:13, column:175,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:175,the value of plot_cost is         : 41.929901301193695 

 At row:13, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:13, column:176,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:176,the value of plot_cost is         : 41.736108215160506 

 At row:13, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:13, column:177,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:177,the value of plot_cost is         : 41.543123189529844 

 At row:13, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:13, column:178,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:178,the value of plot_cost is         : 41.3509462243017 

 At row:13, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:13, column:179,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:179,the value of plot_cost is         : 41.15957731947606 

 At row:13, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:13, column:180,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:180,the value of plot_cost is         : 40.96901647505293 

 At row:13, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:13, column:181,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:181,the value of plot_cost is         : 40.77926369103233 

 At row:13, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:13, column:182,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:182,the value of plot_cost is         : 40.59031896741424 

 At row:13, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:13, column:183,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:183,the value of plot_cost is         : 40.40218230419867 

 At row:13, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:13, column:184,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:184,the value of plot_cost is         : 40.21485370138561 

 At row:13, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:13, column:185,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:185,the value of plot_cost is         : 40.02833315897506 

 At row:13, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:13, column:186,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:186,the value of plot_cost is         : 39.84262067696702 

 At row:13, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:13, column:187,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:187,the value of plot_cost is         : 39.657716255361514 

 At row:13, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:13, column:188,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:188,the value of plot_cost is         : 39.47361989415852 

 At row:13, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:13, column:189,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:189,the value of plot_cost is         : 39.29033159335803 

 At row:13, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:13, column:190,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:190,the value of plot_cost is         : 39.10785135296006 

 At row:13, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:13, column:191,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:191,the value of plot_cost is         : 38.926179172964595 

 At row:13, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:13, column:192,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:192,the value of plot_cost is         : 38.74531505337166 

 At row:13, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:13, column:193,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:193,the value of plot_cost is         : 38.56525899418125 

 At row:13, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:13, column:194,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:194,the value of plot_cost is         : 38.38601099539333 

 At row:13, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:13, column:195,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:195,the value of plot_cost is         : 38.20757105700793 

 At row:13, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:13, column:196,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:196,the value of plot_cost is         : 38.02993917902506 

 At row:13, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:13, column:197,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:197,the value of plot_cost is         : 37.853115361444694 

 At row:13, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:13, column:198,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:198,the value of plot_cost is         : 37.67709960426685 

 At row:13, column:199,the value of plot_t0 is           : 3.0
 At row:13, column:199,the value of plot_t1 is           : -0.7386934673366834
 At row:13, column:199,the value of plot_cost is         : 37.50189190749151 

 At row:14, column:0,the value of plot_t0 is           : -1.0
 At row:14, column:0,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:0,the value of plot_cost is         : 86.82012817136652 

 At row:14, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:14, column:1,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:1,the value of plot_cost is         : 86.48760265794154 

 At row:14, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:14, column:2,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:2,the value of plot_cost is         : 86.15588520491907 

 At row:14, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:14, column:3,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:3,the value of plot_cost is         : 85.8249758122991 

 At row:14, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:14, column:4,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:4,the value of plot_cost is         : 85.49487448008166 

 At row:14, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:14, column:5,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:5,the value of plot_cost is         : 85.16558120826674 

 At row:14, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:14, column:6,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:6,the value of plot_cost is         : 84.83709599685432 

 At row:14, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:14, column:7,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:7,the value of plot_cost is         : 84.50941884584442 

 At row:14, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:14, column:8,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:8,the value of plot_cost is         : 84.18254975523703 

 At row:14, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:14, column:9,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:9,the value of plot_cost is         : 83.8564887250322 

 At row:14, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:14, column:10,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:10,the value of plot_cost is         : 83.53123575522984 

 At row:14, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:14, column:11,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:11,the value of plot_cost is         : 83.20679084583001 

 At row:14, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:14, column:12,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:12,the value of plot_cost is         : 82.88315399683269 

 At row:14, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:14, column:13,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:13,the value of plot_cost is         : 82.56032520823787 

 At row:14, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:14, column:14,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:14,the value of plot_cost is         : 82.2383044800456 

 At row:14, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:14, column:15,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:15,the value of plot_cost is         : 81.91709181225582 

 At row:14, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:14, column:16,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:16,the value of plot_cost is         : 81.59668720486856 

 At row:14, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:14, column:17,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:17,the value of plot_cost is         : 81.27709065788382 

 At row:14, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:14, column:18,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:18,the value of plot_cost is         : 80.95830217130158 

 At row:14, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:14, column:19,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:19,the value of plot_cost is         : 80.64032174512187 

 At row:14, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:14, column:20,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:20,the value of plot_cost is         : 80.32314937934467 

 At row:14, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:14, column:21,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:21,the value of plot_cost is         : 80.00678507396998 

 At row:14, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:14, column:22,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:22,the value of plot_cost is         : 79.69122882899784 

 At row:14, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:14, column:23,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:23,the value of plot_cost is         : 79.37648064442817 

 At row:14, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:14, column:24,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:24,the value of plot_cost is         : 79.06254052026102 

 At row:14, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:14, column:25,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:25,the value of plot_cost is         : 78.7494084564964 

 At row:14, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:14, column:26,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:26,the value of plot_cost is         : 78.43708445313429 

 At row:14, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:14, column:27,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:27,the value of plot_cost is         : 78.12556851017469 

 At row:14, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:14, column:28,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:28,the value of plot_cost is         : 77.81486062761762 

 At row:14, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:14, column:29,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:29,the value of plot_cost is         : 77.50496080546307 

 At row:14, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:14, column:30,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:30,the value of plot_cost is         : 77.19586904371103 

 At row:14, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:14, column:31,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:31,the value of plot_cost is         : 76.88758534236149 

 At row:14, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:14, column:32,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:32,the value of plot_cost is         : 76.58010970141446 

 At row:14, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:14, column:33,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:33,the value of plot_cost is         : 76.27344212086996 

 At row:14, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:14, column:34,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:34,the value of plot_cost is         : 75.96758260072797 

 At row:14, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:14, column:35,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:35,the value of plot_cost is         : 75.66253114098849 

 At row:14, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:14, column:36,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:36,the value of plot_cost is         : 75.35828774165152 

 At row:14, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:14, column:37,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:37,the value of plot_cost is         : 75.05485240271709 

 At row:14, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:14, column:38,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:38,the value of plot_cost is         : 74.75222512418519 

 At row:14, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:14, column:39,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:39,the value of plot_cost is         : 74.45040590605576 

 At row:14, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:14, column:40,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:40,the value of plot_cost is         : 74.14939474832886 

 At row:14, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:14, column:41,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:41,the value of plot_cost is         : 73.84919165100449 

 At row:14, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:14, column:42,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:42,the value of plot_cost is         : 73.54979661408261 

 At row:14, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:14, column:43,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:43,the value of plot_cost is         : 73.25120963756326 

 At row:14, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:14, column:44,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:44,the value of plot_cost is         : 72.95343072144641 

 At row:14, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:14, column:45,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:45,the value of plot_cost is         : 72.65645986573209 

 At row:14, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:14, column:46,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:46,the value of plot_cost is         : 72.36029707042029 

 At row:14, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:14, column:47,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:47,the value of plot_cost is         : 72.06494233551099 

 At row:14, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:14, column:48,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:48,the value of plot_cost is         : 71.77039566100422 

 At row:14, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:14, column:49,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:49,the value of plot_cost is         : 71.47665704689997 

 At row:14, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:14, column:50,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:50,the value of plot_cost is         : 71.18372649319822 

 At row:14, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:14, column:51,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:51,the value of plot_cost is         : 70.89160399989899 

 At row:14, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:14, column:52,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:52,the value of plot_cost is         : 70.60028956700226 

 At row:14, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:14, column:53,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:53,the value of plot_cost is         : 70.30978319450809 

 At row:14, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:14, column:54,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:54,the value of plot_cost is         : 70.02008488241637 

 At row:14, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:14, column:55,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:55,the value of plot_cost is         : 69.7311946307272 

 At row:14, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:14, column:56,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:56,the value of plot_cost is         : 69.44311243944055 

 At row:14, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:14, column:57,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:57,the value of plot_cost is         : 69.15583830855641 

 At row:14, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:14, column:58,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:58,the value of plot_cost is         : 68.86937223807479 

 At row:14, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:14, column:59,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:59,the value of plot_cost is         : 68.58371422799569 

 At row:14, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:14, column:60,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:60,the value of plot_cost is         : 68.2988642783191 

 At row:14, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:14, column:61,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:61,the value of plot_cost is         : 68.014822389045 

 At row:14, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:14, column:62,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:62,the value of plot_cost is         : 67.73158856017345 

 At row:14, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:14, column:63,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:63,the value of plot_cost is         : 67.4491627917044 

 At row:14, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:14, column:64,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:64,the value of plot_cost is         : 67.16754508363785 

 At row:14, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:14, column:65,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:65,the value of plot_cost is         : 66.88673543597383 

 At row:14, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:14, column:66,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:66,the value of plot_cost is         : 66.60673384871234 

 At row:14, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:14, column:67,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:67,the value of plot_cost is         : 66.32754032185333 

 At row:14, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:14, column:68,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:68,the value of plot_cost is         : 66.04915485539686 

 At row:14, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:14, column:69,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:69,the value of plot_cost is         : 65.7715774493429 

 At row:14, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:14, column:70,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:70,the value of plot_cost is         : 65.49480810369147 

 At row:14, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:14, column:71,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:71,the value of plot_cost is         : 65.21884681844253 

 At row:14, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:14, column:72,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:72,the value of plot_cost is         : 64.94369359359612 

 At row:14, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:14, column:73,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:73,the value of plot_cost is         : 64.66934842915221 

 At row:14, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:14, column:74,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:74,the value of plot_cost is         : 64.39581132511083 

 At row:14, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:14, column:75,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:75,the value of plot_cost is         : 64.12308228147197 

 At row:14, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:14, column:76,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:76,the value of plot_cost is         : 63.8511612982356 

 At row:14, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:14, column:77,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:77,the value of plot_cost is         : 63.580048375401766 

 At row:14, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:14, column:78,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:78,the value of plot_cost is         : 63.30974351297045 

 At row:14, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:14, column:79,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:79,the value of plot_cost is         : 63.04024671094164 

 At row:14, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:14, column:80,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:80,the value of plot_cost is         : 62.771557969315346 

 At row:14, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:14, column:81,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:81,the value of plot_cost is         : 62.50367728809156 

 At row:14, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:14, column:82,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:82,the value of plot_cost is         : 62.2366046672703 

 At row:14, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:14, column:83,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:83,the value of plot_cost is         : 61.97034010685156 

 At row:14, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:14, column:84,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:84,the value of plot_cost is         : 61.704883606835324 

 At row:14, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:14, column:85,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:85,the value of plot_cost is         : 61.4402351672216 

 At row:14, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:14, column:86,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:86,the value of plot_cost is         : 61.1763947880104 

 At row:14, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:14, column:87,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:87,the value of plot_cost is         : 60.9133624692017 

 At row:14, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:14, column:88,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:88,the value of plot_cost is         : 60.65113821079554 

 At row:14, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:14, column:89,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:89,the value of plot_cost is         : 60.389722012791886 

 At row:14, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:14, column:90,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:90,the value of plot_cost is         : 60.12911387519075 

 At row:14, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:14, column:91,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:91,the value of plot_cost is         : 59.86931379799211 

 At row:14, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:14, column:92,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:92,the value of plot_cost is         : 59.610321781196 

 At row:14, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:14, column:93,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:93,the value of plot_cost is         : 59.35213782480239 

 At row:14, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:14, column:94,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:94,the value of plot_cost is         : 59.09476192881131 

 At row:14, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:14, column:95,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:95,the value of plot_cost is         : 58.83819409322275 

 At row:14, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:14, column:96,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:96,the value of plot_cost is         : 58.582434318036704 

 At row:14, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:14, column:97,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:97,the value of plot_cost is         : 58.32748260325316 

 At row:14, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:14, column:98,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:98,the value of plot_cost is         : 58.073338948872134 

 At row:14, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:14, column:99,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:99,the value of plot_cost is         : 57.820003354893636 

 At row:14, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:14, column:100,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:100,the value of plot_cost is         : 57.56747582131764 

 At row:14, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:14, column:101,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:101,the value of plot_cost is         : 57.315756348144156 

 At row:14, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:14, column:102,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:102,the value of plot_cost is         : 57.06484493537321 

 At row:14, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:14, column:103,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:103,the value of plot_cost is         : 56.814741583004746 

 At row:14, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:14, column:104,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:104,the value of plot_cost is         : 56.565446291038825 

 At row:14, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:14, column:105,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:105,the value of plot_cost is         : 56.31695905947541 

 At row:14, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:14, column:106,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:106,the value of plot_cost is         : 56.069279888314504 

 At row:14, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:14, column:107,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:107,the value of plot_cost is         : 55.82240877755612 

 At row:14, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:14, column:108,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:108,the value of plot_cost is         : 55.57634572720025 

 At row:14, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:14, column:109,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:109,the value of plot_cost is         : 55.331090737246896 

 At row:14, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:14, column:110,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:110,the value of plot_cost is         : 55.08664380769604 

 At row:14, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:14, column:111,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:111,the value of plot_cost is         : 54.84300493854773 

 At row:14, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:14, column:112,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:112,the value of plot_cost is         : 54.600174129801914 

 At row:14, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:14, column:113,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:113,the value of plot_cost is         : 54.35815138145861 

 At row:14, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:14, column:114,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:114,the value of plot_cost is         : 54.11693669351783 

 At row:14, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:14, column:115,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:115,the value of plot_cost is         : 53.876530065979566 

 At row:14, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:14, column:116,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:116,the value of plot_cost is         : 53.63693149884382 

 At row:14, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:14, column:117,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:117,the value of plot_cost is         : 53.39814099211058 

 At row:14, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:14, column:118,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:118,the value of plot_cost is         : 53.160158545779865 

 At row:14, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:14, column:119,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:119,the value of plot_cost is         : 52.92298415985166 

 At row:14, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:14, column:120,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:120,the value of plot_cost is         : 52.68661783432597 

 At row:14, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:14, column:121,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:121,the value of plot_cost is         : 52.45105956920279 

 At row:14, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:14, column:122,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:122,the value of plot_cost is         : 52.216309364482136 

 At row:14, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:14, column:123,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:123,the value of plot_cost is         : 51.982367220163994 

 At row:14, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:14, column:124,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:124,the value of plot_cost is         : 51.74923313624836 

 At row:14, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:14, column:125,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:125,the value of plot_cost is         : 51.51690711273524 

 At row:14, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:14, column:126,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:126,the value of plot_cost is         : 51.28538914962465 

 At row:14, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:14, column:127,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:127,the value of plot_cost is         : 51.05467924691655 

 At row:14, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:14, column:128,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:128,the value of plot_cost is         : 50.82477740461099 

 At row:14, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:14, column:129,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:129,the value of plot_cost is         : 50.59568362270793 

 At row:14, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:14, column:130,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:130,the value of plot_cost is         : 50.3673979012074 

 At row:14, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:14, column:131,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:131,the value of plot_cost is         : 50.13992024010937 

 At row:14, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:14, column:132,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:132,the value of plot_cost is         : 49.91325063941386 

 At row:14, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:14, column:133,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:133,the value of plot_cost is         : 49.68738909912088 

 At row:14, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:14, column:134,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:134,the value of plot_cost is         : 49.46233561923039 

 At row:14, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:14, column:135,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:135,the value of plot_cost is         : 49.238090199742416 

 At row:14, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:14, column:136,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:136,the value of plot_cost is         : 49.01465284065698 

 At row:14, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:14, column:137,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:137,the value of plot_cost is         : 48.79202354197404 

 At row:14, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:14, column:138,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:138,the value of plot_cost is         : 48.57020230369362 

 At row:14, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:14, column:139,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:139,the value of plot_cost is         : 48.34918912581573 

 At row:14, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:14, column:140,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:140,the value of plot_cost is         : 48.128984008340325 

 At row:14, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:14, column:141,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:141,the value of plot_cost is         : 47.90958695126746 

 At row:14, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:14, column:142,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:142,the value of plot_cost is         : 47.69099795459711 

 At row:14, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:14, column:143,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:143,the value of plot_cost is         : 47.47321701832926 

 At row:14, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:14, column:144,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:144,the value of plot_cost is         : 47.25624414246393 

 At row:14, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:14, column:145,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:145,the value of plot_cost is         : 47.04007932700111 

 At row:14, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:14, column:146,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:146,the value of plot_cost is         : 46.824722571940825 

 At row:14, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:14, column:147,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:147,the value of plot_cost is         : 46.61017387728303 

 At row:14, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:14, column:148,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:148,the value of plot_cost is         : 46.396433243027765 

 At row:14, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:14, column:149,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:149,the value of plot_cost is         : 46.18350066917502 

 At row:14, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:14, column:150,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:150,the value of plot_cost is         : 45.97137615572478 

 At row:14, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:14, column:151,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:151,the value of plot_cost is         : 45.760059702677054 

 At row:14, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:14, column:152,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:152,the value of plot_cost is         : 45.54955131003185 

 At row:14, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:14, column:153,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:153,the value of plot_cost is         : 45.339850977789155 

 At row:14, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:14, column:154,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:154,the value of plot_cost is         : 45.13095870594898 

 At row:14, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:14, column:155,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:155,the value of plot_cost is         : 44.92287449451132 

 At row:14, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:14, column:156,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:156,the value of plot_cost is         : 44.71559834347616 

 At row:14, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:14, column:157,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:157,the value of plot_cost is         : 44.50913025284354 

 At row:14, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:14, column:158,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:158,the value of plot_cost is         : 44.30347022261342 

 At row:14, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:14, column:159,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:159,the value of plot_cost is         : 44.09861825278582 

 At row:14, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:14, column:160,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:160,the value of plot_cost is         : 43.89457434336073 

 At row:14, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:14, column:161,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:161,the value of plot_cost is         : 43.69133849433816 

 At row:14, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:14, column:162,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:162,the value of plot_cost is         : 43.488910705718105 

 At row:14, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:14, column:163,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:163,the value of plot_cost is         : 43.28729097750056 

 At row:14, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:14, column:164,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:164,the value of plot_cost is         : 43.08647930968554 

 At row:14, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:14, column:165,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:165,the value of plot_cost is         : 42.886475702273025 

 At row:14, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:14, column:166,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:166,the value of plot_cost is         : 42.687280155263025 

 At row:14, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:14, column:167,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:167,the value of plot_cost is         : 42.488892668655545 

 At row:14, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:14, column:168,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:168,the value of plot_cost is         : 42.29131324245058 

 At row:14, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:14, column:169,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:169,the value of plot_cost is         : 42.09454187664814 

 At row:14, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:14, column:170,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:170,the value of plot_cost is         : 41.89857857124819 

 At row:14, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:14, column:171,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:171,the value of plot_cost is         : 41.70342332625077 

 At row:14, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:14, column:172,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:172,the value of plot_cost is         : 41.50907614165587 

 At row:14, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:14, column:173,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:173,the value of plot_cost is         : 41.31553701746348 

 At row:14, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:14, column:174,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:174,the value of plot_cost is         : 41.122805953673605 

 At row:14, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:14, column:175,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:175,the value of plot_cost is         : 40.93088295028624 

 At row:14, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:14, column:176,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:176,the value of plot_cost is         : 40.73976800730139 

 At row:14, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:14, column:177,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:177,the value of plot_cost is         : 40.54946112471907 

 At row:14, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:14, column:178,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:178,the value of plot_cost is         : 40.35996230253925 

 At row:14, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:14, column:179,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:179,the value of plot_cost is         : 40.17127154076196 

 At row:14, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:14, column:180,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:180,the value of plot_cost is         : 39.98338883938717 

 At row:14, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:14, column:181,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:181,the value of plot_cost is         : 39.7963141984149 

 At row:14, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:14, column:182,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:182,the value of plot_cost is         : 39.61004761784514 

 At row:14, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:14, column:183,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:183,the value of plot_cost is         : 39.42458909767791 

 At row:14, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:14, column:184,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:184,the value of plot_cost is         : 39.23993863791318 

 At row:14, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:14, column:185,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:185,the value of plot_cost is         : 39.056096238550964 

 At row:14, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:14, column:186,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:186,the value of plot_cost is         : 38.87306189959127 

 At row:14, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:14, column:187,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:187,the value of plot_cost is         : 38.69083562103409 

 At row:14, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:14, column:188,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:188,the value of plot_cost is         : 38.509417402879436 

 At row:14, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:14, column:189,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:189,the value of plot_cost is         : 38.32880724512729 

 At row:14, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:14, column:190,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:190,the value of plot_cost is         : 38.14900514777765 

 At row:14, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:14, column:191,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:191,the value of plot_cost is         : 37.970011110830534 

 At row:14, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:14, column:192,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:192,the value of plot_cost is         : 37.791825134285936 

 At row:14, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:14, column:193,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:193,the value of plot_cost is         : 37.61444721814384 

 At row:14, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:14, column:194,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:194,the value of plot_cost is         : 37.437877362404265 

 At row:14, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:14, column:195,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:195,the value of plot_cost is         : 37.26211556706721 

 At row:14, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:14, column:196,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:196,the value of plot_cost is         : 37.08716183213266 

 At row:14, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:14, column:197,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:197,the value of plot_cost is         : 36.91301615760064 

 At row:14, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:14, column:198,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:198,the value of plot_cost is         : 36.73967854347112 

 At row:14, column:199,the value of plot_t0 is           : 3.0
 At row:14, column:199,the value of plot_t1 is           : -0.7185929648241206
 At row:14, column:199,the value of plot_cost is         : 36.567148989744126 

 At row:15, column:0,the value of plot_t0 is           : -1.0
 At row:15, column:0,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:0,the value of plot_cost is         : 85.36501744183947 

 At row:15, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:15, column:1,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:1,the value of plot_cost is         : 85.03517007146284 

 At row:15, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:15, column:2,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:2,the value of plot_cost is         : 84.70613076148871 

 At row:15, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:15, column:3,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:3,the value of plot_cost is         : 84.37789951191708 

 At row:15, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:15, column:4,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:4,the value of plot_cost is         : 84.05047632274798 

 At row:15, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:15, column:5,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:5,the value of plot_cost is         : 83.72386119398139 

 At row:15, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:15, column:6,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:6,the value of plot_cost is         : 83.3980541256173 

 At row:15, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:15, column:7,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:7,the value of plot_cost is         : 83.07305511765574 

 At row:15, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:15, column:8,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:8,the value of plot_cost is         : 82.7488641700967 

 At row:15, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:15, column:9,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:9,the value of plot_cost is         : 82.42548128294017 

 At row:15, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:15, column:10,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:10,the value of plot_cost is         : 82.10290645618616 

 At row:15, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:15, column:11,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:11,the value of plot_cost is         : 81.78113968983467 

 At row:15, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:15, column:12,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:12,the value of plot_cost is         : 81.46018098388568 

 At row:15, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:15, column:13,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:13,the value of plot_cost is         : 81.14003033833922 

 At row:15, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:15, column:14,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:14,the value of plot_cost is         : 80.82068775319527 

 At row:15, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:15, column:15,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:15,the value of plot_cost is         : 80.50215322845384 

 At row:15, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:15, column:16,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:16,the value of plot_cost is         : 80.18442676411489 

 At row:15, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:15, column:17,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:17,the value of plot_cost is         : 79.86750836017849 

 At row:15, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:15, column:18,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:18,the value of plot_cost is         : 79.5513980166446 

 At row:15, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:15, column:19,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:19,the value of plot_cost is         : 79.2360957335132 

 At row:15, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:15, column:20,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:20,the value of plot_cost is         : 78.92160151078436 

 At row:15, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:15, column:21,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:21,the value of plot_cost is         : 78.607915348458 

 At row:15, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:15, column:22,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:22,the value of plot_cost is         : 78.29503724653416 

 At row:15, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:15, column:23,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:23,the value of plot_cost is         : 77.98296720501287 

 At row:15, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:15, column:24,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:24,the value of plot_cost is         : 77.67170522389407 

 At row:15, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:15, column:25,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:25,the value of plot_cost is         : 77.36125130317777 

 At row:15, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:15, column:26,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:26,the value of plot_cost is         : 77.051605442864 

 At row:15, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:15, column:27,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:27,the value of plot_cost is         : 76.74276764295273 

 At row:15, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:15, column:28,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:28,the value of plot_cost is         : 76.43473790344399 

 At row:15, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:15, column:29,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:29,the value of plot_cost is         : 76.12751622433775 

 At row:15, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:15, column:30,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:30,the value of plot_cost is         : 75.82110260563404 

 At row:15, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:15, column:31,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:31,the value of plot_cost is         : 75.51549704733286 

 At row:15, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:15, column:32,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:32,the value of plot_cost is         : 75.21069954943417 

 At row:15, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:15, column:33,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:33,the value of plot_cost is         : 74.90671011193801 

 At row:15, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:15, column:34,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:34,the value of plot_cost is         : 74.60352873484436 

 At row:15, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:15, column:35,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:35,the value of plot_cost is         : 74.30115541815321 

 At row:15, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:15, column:36,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:36,the value of plot_cost is         : 73.9995901618646 

 At row:15, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:15, column:37,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:37,the value of plot_cost is         : 73.69883296597848 

 At row:15, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:15, column:38,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:38,the value of plot_cost is         : 73.39888383049488 

 At row:15, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:15, column:39,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:39,the value of plot_cost is         : 73.0997427554138 

 At row:15, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:15, column:40,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:40,the value of plot_cost is         : 72.80140974073525 

 At row:15, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:15, column:41,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:41,the value of plot_cost is         : 72.5038847864592 

 At row:15, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:15, column:42,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:42,the value of plot_cost is         : 72.20716789258569 

 At row:15, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:15, column:43,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:43,the value of plot_cost is         : 71.91125905911467 

 At row:15, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:15, column:44,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:44,the value of plot_cost is         : 71.61615828604617 

 At row:15, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:15, column:45,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:45,the value of plot_cost is         : 71.32186557338018 

 At row:15, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:15, column:46,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:46,the value of plot_cost is         : 71.02838092111669 

 At row:15, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:15, column:47,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:47,the value of plot_cost is         : 70.73570432925575 

 At row:15, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:15, column:48,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:48,the value of plot_cost is         : 70.4438357977973 

 At row:15, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:15, column:49,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:49,the value of plot_cost is         : 70.15277532674136 

 At row:15, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:15, column:50,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:50,the value of plot_cost is         : 69.86252291608797 

 At row:15, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:15, column:51,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:51,the value of plot_cost is         : 69.57307856583708 

 At row:15, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:15, column:52,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:52,the value of plot_cost is         : 69.2844422759887 

 At row:15, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:15, column:53,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:53,the value of plot_cost is         : 68.99661404654285 

 At row:15, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:15, column:54,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:54,the value of plot_cost is         : 68.7095938774995 

 At row:15, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:15, column:55,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:55,the value of plot_cost is         : 68.42338176885865 

 At row:15, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:15, column:56,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:56,the value of plot_cost is         : 68.13797772062031 

 At row:15, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:15, column:57,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:57,the value of plot_cost is         : 67.85338173278451 

 At row:15, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:15, column:58,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:58,the value of plot_cost is         : 67.56959380535122 

 At row:15, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:15, column:59,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:59,the value of plot_cost is         : 67.28661393832046 

 At row:15, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:15, column:60,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:60,the value of plot_cost is         : 67.00444213169219 

 At row:15, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:15, column:61,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:61,the value of plot_cost is         : 66.72307838546645 

 At row:15, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:15, column:62,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:62,the value of plot_cost is         : 66.44252269964322 

 At row:15, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:15, column:63,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:63,the value of plot_cost is         : 66.16277507422251 

 At row:15, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:15, column:64,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:64,the value of plot_cost is         : 65.88383550920432 

 At row:15, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:15, column:65,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:65,the value of plot_cost is         : 65.60570400458863 

 At row:15, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:15, column:66,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:66,the value of plot_cost is         : 65.32838056037545 

 At row:15, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:15, column:67,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:67,the value of plot_cost is         : 65.0518651765648 

 At row:15, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:15, column:68,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:68,the value of plot_cost is         : 64.77615785315666 

 At row:15, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:15, column:69,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:69,the value of plot_cost is         : 64.50125859015104 

 At row:15, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:15, column:70,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:70,the value of plot_cost is         : 64.22716738754792 

 At row:15, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:15, column:71,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:71,the value of plot_cost is         : 63.95388424534733 

 At row:15, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:15, column:72,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:72,the value of plot_cost is         : 63.68140916354926 

 At row:15, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:15, column:73,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:73,the value of plot_cost is         : 63.409742142153696 

 At row:15, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:15, column:74,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:74,the value of plot_cost is         : 63.13888318116065 

 At row:15, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:15, column:75,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:75,the value of plot_cost is         : 62.8688322805701 

 At row:15, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:15, column:76,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:76,the value of plot_cost is         : 62.5995894403821 

 At row:15, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:15, column:77,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:77,the value of plot_cost is         : 62.33115466059658 

 At row:15, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:15, column:78,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:78,the value of plot_cost is         : 62.06352794121359 

 At row:15, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:15, column:79,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:79,the value of plot_cost is         : 61.796709282233124 

 At row:15, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:15, column:80,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:80,the value of plot_cost is         : 61.53069868365517 

 At row:15, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:15, column:81,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:81,the value of plot_cost is         : 61.26549614547973 

 At row:15, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:15, column:82,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:82,the value of plot_cost is         : 61.0011016677068 

 At row:15, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:15, column:83,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:83,the value of plot_cost is         : 60.73751525033638 

 At row:15, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:15, column:84,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:84,the value of plot_cost is         : 60.474736893368494 

 At row:15, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:15, column:85,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:85,the value of plot_cost is         : 60.2127665968031 

 At row:15, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:15, column:86,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:86,the value of plot_cost is         : 59.95160436064023 

 At row:15, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:15, column:87,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:87,the value of plot_cost is         : 59.69125018487988 

 At row:15, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:15, column:88,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:88,the value of plot_cost is         : 59.43170406952205 

 At row:15, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:15, column:89,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:89,the value of plot_cost is         : 59.17296601456673 

 At row:15, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:15, column:90,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:90,the value of plot_cost is         : 58.915036020013915 

 At row:15, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:15, column:91,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:91,the value of plot_cost is         : 58.657914085863624 

 At row:15, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:15, column:92,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:92,the value of plot_cost is         : 58.40160021211586 

 At row:15, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:15, column:93,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:93,the value of plot_cost is         : 58.14609439877059 

 At row:15, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:15, column:94,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:94,the value of plot_cost is         : 57.891396645827854 

 At row:15, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:15, column:95,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:95,the value of plot_cost is         : 57.63750695328761 

 At row:15, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:15, column:96,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:96,the value of plot_cost is         : 57.3844253211499 

 At row:15, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:15, column:97,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:97,the value of plot_cost is         : 57.132151749414696 

 At row:15, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:15, column:98,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:98,the value of plot_cost is         : 56.880686238082 

 At row:15, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:15, column:99,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:99,the value of plot_cost is         : 56.63002878715183 

 At row:15, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:15, column:100,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:100,the value of plot_cost is         : 56.380179396624186 

 At row:15, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:15, column:101,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:101,the value of plot_cost is         : 56.13113806649904 

 At row:15, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:15, column:102,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:102,the value of plot_cost is         : 55.882904796776415 

 At row:15, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:15, column:103,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:103,the value of plot_cost is         : 55.6354795874563 

 At row:15, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:15, column:104,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:104,the value of plot_cost is         : 55.38886243853871 

 At row:15, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:15, column:105,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:105,the value of plot_cost is         : 55.14305335002363 

 At row:15, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:15, column:106,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:106,the value of plot_cost is         : 54.89805232191106 

 At row:15, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:15, column:107,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:107,the value of plot_cost is         : 54.653859354201 

 At row:15, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:15, column:108,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:108,the value of plot_cost is         : 54.41047444689347 

 At row:15, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:15, column:109,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:109,the value of plot_cost is         : 54.16789759998844 

 At row:15, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:15, column:110,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:110,the value of plot_cost is         : 53.926128813485946 

 At row:15, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:15, column:111,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:111,the value of plot_cost is         : 53.68516808738596 

 At row:15, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:15, column:112,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:112,the value of plot_cost is         : 53.44501542168848 

 At row:15, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:15, column:113,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:113,the value of plot_cost is         : 53.205670816393535 

 At row:15, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:15, column:114,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:114,the value of plot_cost is         : 52.967134271501074 

 At row:15, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:15, column:115,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:115,the value of plot_cost is         : 52.72940578701114 

 At row:15, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:15, column:116,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:116,the value of plot_cost is         : 52.49248536292374 

 At row:15, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:15, column:117,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:117,the value of plot_cost is         : 52.256372999238835 

 At row:15, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:15, column:118,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:118,the value of plot_cost is         : 52.02106869595645 

 At row:15, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:15, column:119,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:119,the value of plot_cost is         : 51.78657245307657 

 At row:15, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:15, column:120,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:120,the value of plot_cost is         : 51.55288427059922 

 At row:15, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:15, column:121,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:121,the value of plot_cost is         : 51.32000414852439 

 At row:15, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:15, column:122,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:122,the value of plot_cost is         : 51.087932086852064 

 At row:15, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:15, column:123,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:123,the value of plot_cost is         : 50.85666808558225 

 At row:15, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:15, column:124,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:124,the value of plot_cost is         : 50.626212144714955 

 At row:15, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:15, column:125,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:125,the value of plot_cost is         : 50.39656426425017 

 At row:15, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:15, column:126,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:126,the value of plot_cost is         : 50.16772444418791 

 At row:15, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:15, column:127,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:127,the value of plot_cost is         : 49.93969268452817 

 At row:15, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:15, column:128,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:128,the value of plot_cost is         : 49.71246898527093 

 At row:15, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:15, column:129,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:129,the value of plot_cost is         : 49.4860533464162 

 At row:15, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:15, column:130,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:130,the value of plot_cost is         : 49.260445767964 

 At row:15, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:15, column:131,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:131,the value of plot_cost is         : 49.035646249914315 

 At row:15, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:15, column:132,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:132,the value of plot_cost is         : 48.81165479226715 

 At row:15, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:15, column:133,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:133,the value of plot_cost is         : 48.588471395022495 

 At row:15, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:15, column:134,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:134,the value of plot_cost is         : 48.36609605818035 

 At row:15, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:15, column:135,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:135,the value of plot_cost is         : 48.14452878174071 

 At row:15, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:15, column:136,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:136,the value of plot_cost is         : 47.92376956570361 

 At row:15, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:15, column:137,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:137,the value of plot_cost is         : 47.70381841006901 

 At row:15, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:15, column:138,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:138,the value of plot_cost is         : 47.48467531483693 

 At row:15, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:15, column:139,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:139,the value of plot_cost is         : 47.26634028000735 

 At row:15, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:15, column:140,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:140,the value of plot_cost is         : 47.0488133055803 

 At row:15, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:15, column:141,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:141,the value of plot_cost is         : 46.83209439155577 

 At row:15, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:15, column:142,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:142,the value of plot_cost is         : 46.616183537933736 

 At row:15, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:15, column:143,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:143,the value of plot_cost is         : 46.40108074471425 

 At row:15, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:15, column:144,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:144,the value of plot_cost is         : 46.18678601189724 

 At row:15, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:15, column:145,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:145,the value of plot_cost is         : 45.973299339482764 

 At row:15, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:15, column:146,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:146,the value of plot_cost is         : 45.7606207274708 

 At row:15, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:15, column:147,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:147,the value of plot_cost is         : 45.548750175861365 

 At row:15, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:15, column:148,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:148,the value of plot_cost is         : 45.33768768465442 

 At row:15, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:15, column:149,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:149,the value of plot_cost is         : 45.12743325385 

 At row:15, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:15, column:150,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:150,the value of plot_cost is         : 44.9179868834481 

 At row:15, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:15, column:151,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:151,the value of plot_cost is         : 44.709348573448715 

 At row:15, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:15, column:152,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:152,the value of plot_cost is         : 44.50151832385185 

 At row:15, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:15, column:153,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:153,the value of plot_cost is         : 44.29449613465749 

 At row:15, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:15, column:154,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:154,the value of plot_cost is         : 44.08828200586566 

 At row:15, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:15, column:155,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:155,the value of plot_cost is         : 43.88287593747632 

 At row:15, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:15, column:156,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:156,the value of plot_cost is         : 43.678277929489504 

 At row:15, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:15, column:157,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:157,the value of plot_cost is         : 43.47448798190522 

 At row:15, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:15, column:158,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:158,the value of plot_cost is         : 43.271506094723435 

 At row:15, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:15, column:159,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:159,the value of plot_cost is         : 43.06933226794416 

 At row:15, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:15, column:160,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:160,the value of plot_cost is         : 42.867966501567416 

 At row:15, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:15, column:161,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:161,the value of plot_cost is         : 42.66740879559318 

 At row:15, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:15, column:162,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:162,the value of plot_cost is         : 42.46765915002147 

 At row:15, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:15, column:163,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:163,the value of plot_cost is         : 42.26871756485226 

 At row:15, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:15, column:164,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:164,the value of plot_cost is         : 42.07058404008557 

 At row:15, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:15, column:165,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:165,the value of plot_cost is         : 41.87325857572139 

 At row:15, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:15, column:166,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:166,the value of plot_cost is         : 41.67674117175972 

 At row:15, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:15, column:167,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:167,the value of plot_cost is         : 41.481031828200585 

 At row:15, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:15, column:168,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:168,the value of plot_cost is         : 41.28613054504395 

 At row:15, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:15, column:169,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:169,the value of plot_cost is         : 41.09203732228983 

 At row:15, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:15, column:170,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:170,the value of plot_cost is         : 40.89875215993823 

 At row:15, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:15, column:171,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:171,the value of plot_cost is         : 40.70627505798915 

 At row:15, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:15, column:172,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:172,the value of plot_cost is         : 40.51460601644259 

 At row:15, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:15, column:173,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:173,the value of plot_cost is         : 40.323745035298536 

 At row:15, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:15, column:174,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:174,the value of plot_cost is         : 40.13369211455699 

 At row:15, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:15, column:175,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:175,the value of plot_cost is         : 39.94444725421796 

 At row:15, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:15, column:176,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:176,the value of plot_cost is         : 39.75601045428146 

 At row:15, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:15, column:177,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:177,the value of plot_cost is         : 39.56838171474746 

 At row:15, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:15, column:178,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:178,the value of plot_cost is         : 39.381561035615974 

 At row:15, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:15, column:179,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:179,the value of plot_cost is         : 39.195548416887014 

 At row:15, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:15, column:180,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:180,the value of plot_cost is         : 39.01034385856056 

 At row:15, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:15, column:181,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:181,the value of plot_cost is         : 38.82594736063663 

 At row:15, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:15, column:182,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:182,the value of plot_cost is         : 38.64235892311521 

 At row:15, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:15, column:183,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:183,the value of plot_cost is         : 38.459578545996315 

 At row:15, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:15, column:184,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:184,the value of plot_cost is         : 38.27760622927992 

 At row:15, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:15, column:185,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:185,the value of plot_cost is         : 38.09644197296605 

 At row:15, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:15, column:186,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:186,the value of plot_cost is         : 37.91608577705468 

 At row:15, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:15, column:187,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:187,the value of plot_cost is         : 37.73653764154585 

 At row:15, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:15, column:188,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:188,the value of plot_cost is         : 37.55779756643952 

 At row:15, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:15, column:189,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:189,the value of plot_cost is         : 37.3798655517357 

 At row:15, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:15, column:190,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:190,the value of plot_cost is         : 37.202741597434404 

 At row:15, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:15, column:191,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:191,the value of plot_cost is         : 37.02642570353562 

 At row:15, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:15, column:192,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:192,the value of plot_cost is         : 36.85091787003935 

 At row:15, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:15, column:193,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:193,the value of plot_cost is         : 36.676218096945604 

 At row:15, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:15, column:194,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:194,the value of plot_cost is         : 36.50232638425436 

 At row:15, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:15, column:195,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:195,the value of plot_cost is         : 36.32924273196564 

 At row:15, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:15, column:196,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:196,the value of plot_cost is         : 36.15696714007943 

 At row:15, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:15, column:197,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:197,the value of plot_cost is         : 35.98549960859574 

 At row:15, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:15, column:198,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:198,the value of plot_cost is         : 35.81484013751456 

 At row:15, column:199,the value of plot_t0 is           : 3.0
 At row:15, column:199,the value of plot_t1 is           : -0.6984924623115578
 At row:15, column:199,the value of plot_cost is         : 35.6449887268359 

 At row:16, column:0,the value of plot_t0 is           : -1.0
 At row:16, column:0,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:0,the value of plot_cost is         : 83.92248936715161 

 At row:16, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:16, column:1,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:1,the value of plot_cost is         : 83.5953201398233 

 At row:16, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:16, column:2,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:2,the value of plot_cost is         : 83.2689589728975 

 At row:16, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:16, column:3,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:3,the value of plot_cost is         : 82.9434058663742 

 At row:16, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:16, column:4,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:4,the value of plot_cost is         : 82.61866082025345 

 At row:16, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:16, column:5,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:5,the value of plot_cost is         : 82.29472383453519 

 At row:16, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:16, column:6,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:6,the value of plot_cost is         : 81.97159490921946 

 At row:16, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:16, column:7,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:7,the value of plot_cost is         : 81.64927404430624 

 At row:16, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:16, column:8,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:8,the value of plot_cost is         : 81.32776123979552 

 At row:16, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:16, column:9,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:9,the value of plot_cost is         : 81.00705649568732 

 At row:16, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:16, column:10,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:10,the value of plot_cost is         : 80.68715981198164 

 At row:16, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:16, column:11,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:11,the value of plot_cost is         : 80.36807118867847 

 At row:16, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:16, column:12,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:12,the value of plot_cost is         : 80.04979062577785 

 At row:16, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:16, column:13,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:13,the value of plot_cost is         : 79.73231812327971 

 At row:16, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:16, column:14,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:14,the value of plot_cost is         : 79.41565368118408 

 At row:16, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:16, column:15,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:15,the value of plot_cost is         : 79.099797299491 

 At row:16, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:16, column:16,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:16,the value of plot_cost is         : 78.7847489782004 

 At row:16, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:16, column:17,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:17,the value of plot_cost is         : 78.47050871731234 

 At row:16, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:16, column:18,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:18,the value of plot_cost is         : 78.15707651682676 

 At row:16, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:16, column:19,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:19,the value of plot_cost is         : 77.84445237674372 

 At row:16, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:16, column:20,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:20,the value of plot_cost is         : 77.53263629706319 

 At row:16, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:16, column:21,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:21,the value of plot_cost is         : 77.22162827778519 

 At row:16, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:16, column:22,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:22,the value of plot_cost is         : 76.91142831890969 

 At row:16, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:16, column:23,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:23,the value of plot_cost is         : 76.60203642043669 

 At row:16, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:16, column:24,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:24,the value of plot_cost is         : 76.29345258236623 

 At row:16, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:16, column:25,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:25,the value of plot_cost is         : 75.98567680469829 

 At row:16, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:16, column:26,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:26,the value of plot_cost is         : 75.67870908743285 

 At row:16, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:16, column:27,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:27,the value of plot_cost is         : 75.37254943056992 

 At row:16, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:16, column:28,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:28,the value of plot_cost is         : 75.06719783410952 

 At row:16, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:16, column:29,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:29,the value of plot_cost is         : 74.76265429805163 

 At row:16, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:16, column:30,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:30,the value of plot_cost is         : 74.45891882239624 

 At row:16, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:16, column:31,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:31,the value of plot_cost is         : 74.15599140714339 

 At row:16, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:16, column:32,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:32,the value of plot_cost is         : 73.85387205229303 

 At row:16, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:16, column:33,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:33,the value of plot_cost is         : 73.55256075784521 

 At row:16, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:16, column:34,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:34,the value of plot_cost is         : 73.25205752379989 

 At row:16, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:16, column:35,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:35,the value of plot_cost is         : 72.95236235015709 

 At row:16, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:16, column:36,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:36,the value of plot_cost is         : 72.6534752369168 

 At row:16, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:16, column:37,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:37,the value of plot_cost is         : 72.35539618407904 

 At row:16, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:16, column:38,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:38,the value of plot_cost is         : 72.05812519164378 

 At row:16, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:16, column:39,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:39,the value of plot_cost is         : 71.76166225961104 

 At row:16, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:16, column:40,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:40,the value of plot_cost is         : 71.46600738798081 

 At row:16, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:16, column:41,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:41,the value of plot_cost is         : 71.1711605767531 

 At row:16, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:16, column:42,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:42,the value of plot_cost is         : 70.8771218259279 

 At row:16, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:16, column:43,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:43,the value of plot_cost is         : 70.58389113550521 

 At row:16, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:16, column:44,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:44,the value of plot_cost is         : 70.29146850548506 

 At row:16, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:16, column:45,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:45,the value of plot_cost is         : 69.9998539358674 

 At row:16, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:16, column:46,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:46,the value of plot_cost is         : 69.70904742665228 

 At row:16, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:16, column:47,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:47,the value of plot_cost is         : 69.41904897783967 

 At row:16, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:16, column:48,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:48,the value of plot_cost is         : 69.12985858942956 

 At row:16, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:16, column:49,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:49,the value of plot_cost is         : 68.84147626142196 

 At row:16, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:16, column:50,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:50,the value of plot_cost is         : 68.5539019938169 

 At row:16, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:16, column:51,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:51,the value of plot_cost is         : 68.26713578661432 

 At row:16, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:16, column:52,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:52,the value of plot_cost is         : 67.98117763981428 

 At row:16, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:16, column:53,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:53,the value of plot_cost is         : 67.69602755341674 

 At row:16, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:16, column:54,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:54,the value of plot_cost is         : 67.41168552742174 

 At row:16, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:16, column:55,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:55,the value of plot_cost is         : 67.12815156182924 

 At row:16, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:16, column:56,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:56,the value of plot_cost is         : 66.84542565663925 

 At row:16, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:16, column:57,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:57,the value of plot_cost is         : 66.56350781185178 

 At row:16, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:16, column:58,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:58,the value of plot_cost is         : 66.28239802746684 

 At row:16, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:16, column:59,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:59,the value of plot_cost is         : 66.0020963034844 

 At row:16, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:16, column:60,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:60,the value of plot_cost is         : 65.72260263990448 

 At row:16, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:16, column:61,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:61,the value of plot_cost is         : 65.44391703672706 

 At row:16, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:16, column:62,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:62,the value of plot_cost is         : 65.16603949395216 

 At row:16, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:16, column:63,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:63,the value of plot_cost is         : 64.88897001157979 

 At row:16, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:16, column:64,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:64,the value of plot_cost is         : 64.61270858960991 

 At row:16, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:16, column:65,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:65,the value of plot_cost is         : 64.33725522804258 

 At row:16, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:16, column:66,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:66,the value of plot_cost is         : 64.06260992687773 

 At row:16, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:16, column:67,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:67,the value of plot_cost is         : 63.78877268611542 

 At row:16, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:16, column:68,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:68,the value of plot_cost is         : 63.51574350575562 

 At row:16, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:16, column:69,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:69,the value of plot_cost is         : 63.24352238579833 

 At row:16, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:16, column:70,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:70,the value of plot_cost is         : 62.972109326243555 

 At row:16, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:16, column:71,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:71,the value of plot_cost is         : 62.701504327091286 

 At row:16, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:16, column:72,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:72,the value of plot_cost is         : 62.43170738834155 

 At row:16, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:16, column:73,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:73,the value of plot_cost is         : 62.16271850999432 

 At row:16, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:16, column:74,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:74,the value of plot_cost is         : 61.89453769204961 

 At row:16, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:16, column:75,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:75,the value of plot_cost is         : 61.62716493450742 

 At row:16, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:16, column:76,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:76,the value of plot_cost is         : 61.360600237367734 

 At row:16, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:16, column:77,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:77,the value of plot_cost is         : 61.094843600630576 

 At row:16, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:16, column:78,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:78,the value of plot_cost is         : 60.82989502429592 

 At row:16, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:16, column:79,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:79,the value of plot_cost is         : 60.56575450836377 

 At row:16, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:16, column:80,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:80,the value of plot_cost is         : 60.30242205283415 

 At row:16, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:16, column:81,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:81,the value of plot_cost is         : 60.039897657707044 

 At row:16, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:16, column:82,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:82,the value of plot_cost is         : 59.778181322982455 

 At row:16, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:16, column:83,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:83,the value of plot_cost is         : 59.51727304866038 

 At row:16, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:16, column:84,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:84,the value of plot_cost is         : 59.257172834740814 

 At row:16, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:16, column:85,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:85,the value of plot_cost is         : 58.99788068122377 

 At row:16, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:16, column:86,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:86,the value of plot_cost is         : 58.73939658810924 

 At row:16, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:16, column:87,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:87,the value of plot_cost is         : 58.481720555397224 

 At row:16, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:16, column:88,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:88,the value of plot_cost is         : 58.22485258308771 

 At row:16, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:16, column:89,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:89,the value of plot_cost is         : 57.968792671180736 

 At row:16, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:16, column:90,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:90,the value of plot_cost is         : 57.713540819676254 

 At row:16, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:16, column:91,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:91,the value of plot_cost is         : 57.4590970285743 

 At row:16, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:16, column:92,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:92,the value of plot_cost is         : 57.205461297874855 

 At row:16, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:16, column:93,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:93,the value of plot_cost is         : 56.95263362757794 

 At row:16, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:16, column:94,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:94,the value of plot_cost is         : 56.700614017683534 

 At row:16, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:16, column:95,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:95,the value of plot_cost is         : 56.449402468191636 

 At row:16, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:16, column:96,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:96,the value of plot_cost is         : 56.19899897910225 

 At row:16, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:16, column:97,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:97,the value of plot_cost is         : 55.94940355041538 

 At row:16, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:16, column:98,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:98,the value of plot_cost is         : 55.700616182131036 

 At row:16, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:16, column:99,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:99,the value of plot_cost is         : 55.452636874249194 

 At row:16, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:16, column:100,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:100,the value of plot_cost is         : 55.20546562676988 

 At row:16, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:16, column:101,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:101,the value of plot_cost is         : 54.95910243969307 

 At row:16, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:16, column:102,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:102,the value of plot_cost is         : 54.71354731301878 

 At row:16, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:16, column:103,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:103,the value of plot_cost is         : 54.46880024674701 

 At row:16, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:16, column:104,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:104,the value of plot_cost is         : 54.22486124087775 

 At row:16, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:16, column:105,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:105,the value of plot_cost is         : 53.98173029541101 

 At row:16, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:16, column:106,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:106,the value of plot_cost is         : 53.73940741034677 

 At row:16, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:16, column:107,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:107,the value of plot_cost is         : 53.497892585685065 

 At row:16, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:16, column:108,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:108,the value of plot_cost is         : 53.25718582142586 

 At row:16, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:16, column:109,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:109,the value of plot_cost is         : 53.01728711756917 

 At row:16, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:16, column:110,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:110,the value of plot_cost is         : 52.778196474115 

 At row:16, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:16, column:111,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:111,the value of plot_cost is         : 52.53991389106336 

 At row:16, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:16, column:112,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:112,the value of plot_cost is         : 52.302439368414205 

 At row:16, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:16, column:113,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:113,the value of plot_cost is         : 52.06577290616759 

 At row:16, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:16, column:114,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:114,the value of plot_cost is         : 51.82991450432348 

 At row:16, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:16, column:115,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:115,the value of plot_cost is         : 51.594864162881876 

 At row:16, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:16, column:116,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:116,the value of plot_cost is         : 51.3606218818428 

 At row:16, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:16, column:117,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:117,the value of plot_cost is         : 51.12718766120624 

 At row:16, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:16, column:118,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:118,the value of plot_cost is         : 50.89456150097219 

 At row:16, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:16, column:119,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:119,the value of plot_cost is         : 50.66274340114065 

 At row:16, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:16, column:120,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:120,the value of plot_cost is         : 50.431733361711636 

 At row:16, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:16, column:121,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:121,the value of plot_cost is         : 50.20153138268513 

 At row:16, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:16, column:122,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:122,the value of plot_cost is         : 49.97213746406114 

 At row:16, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:16, column:123,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:123,the value of plot_cost is         : 49.74355160583967 

 At row:16, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:16, column:124,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:124,the value of plot_cost is         : 49.51577380802072 

 At row:16, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:16, column:125,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:125,the value of plot_cost is         : 49.28880407060426 

 At row:16, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:16, column:126,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:126,the value of plot_cost is         : 49.06264239359034 

 At row:16, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:16, column:127,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:127,the value of plot_cost is         : 48.83728877697894 

 At row:16, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:16, column:128,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:128,the value of plot_cost is         : 48.612743220770035 

 At row:16, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:16, column:129,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:129,the value of plot_cost is         : 48.389005724963646 

 At row:16, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:16, column:130,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:130,the value of plot_cost is         : 48.16607628955978 

 At row:16, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:16, column:131,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:131,the value of plot_cost is         : 47.943954914558425 

 At row:16, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:16, column:132,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:132,the value of plot_cost is         : 47.72264159995959 

 At row:16, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:16, column:133,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:133,the value of plot_cost is         : 47.50213634576326 

 At row:16, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:16, column:134,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:134,the value of plot_cost is         : 47.282439151969456 

 At row:16, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:16, column:135,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:135,the value of plot_cost is         : 47.06355001857816 

 At row:16, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:16, column:136,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:136,the value of plot_cost is         : 46.84546894558939 

 At row:16, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:16, column:137,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:137,the value of plot_cost is         : 46.628195933003134 

 At row:16, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:16, column:138,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:138,the value of plot_cost is         : 46.41173098081938 

 At row:16, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:16, column:139,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:139,the value of plot_cost is         : 46.19607408903815 

 At row:16, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:16, column:140,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:140,the value of plot_cost is         : 45.98122525765943 

 At row:16, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:16, column:141,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:141,the value of plot_cost is         : 45.76718448668323 

 At row:16, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:16, column:142,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:142,the value of plot_cost is         : 45.553951776109535 

 At row:16, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:16, column:143,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:143,the value of plot_cost is         : 45.34152712593837 

 At row:16, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:16, column:144,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:144,the value of plot_cost is         : 45.12991053616972 

 At row:16, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:16, column:145,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:145,the value of plot_cost is         : 44.91910200680357 

 At row:16, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:16, column:146,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:146,the value of plot_cost is         : 44.70910153783995 

 At row:16, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:16, column:147,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:147,the value of plot_cost is         : 44.49990912927884 

 At row:16, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:16, column:148,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:148,the value of plot_cost is         : 44.291524781120245 

 At row:16, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:16, column:149,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:149,the value of plot_cost is         : 44.08394849336415 

 At row:16, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:16, column:150,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:150,the value of plot_cost is         : 43.87718026601058 

 At row:16, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:16, column:151,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:151,the value of plot_cost is         : 43.67122009905953 

 At row:16, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:16, column:152,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:152,the value of plot_cost is         : 43.46606799251101 

 At row:16, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:16, column:153,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:153,the value of plot_cost is         : 43.26172394636498 

 At row:16, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:16, column:154,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:154,the value of plot_cost is         : 43.05818796062148 

 At row:16, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:16, column:155,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:155,the value of plot_cost is         : 42.85546003528049 

 At row:16, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:16, column:156,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:156,the value of plot_cost is         : 42.65354017034201 

 At row:16, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:16, column:157,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:157,the value of plot_cost is         : 42.45242836580606 

 At row:16, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:16, column:158,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:158,the value of plot_cost is         : 42.25212462167261 

 At row:16, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:16, column:159,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:159,the value of plot_cost is         : 42.05262893794168 

 At row:16, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:16, column:160,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:160,the value of plot_cost is         : 41.85394131461326 

 At row:16, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:16, column:161,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:161,the value of plot_cost is         : 41.65606175168735 

 At row:16, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:16, column:162,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:162,the value of plot_cost is         : 41.458990249163975 

 At row:16, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:16, column:163,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:163,the value of plot_cost is         : 41.2627268070431 

 At row:16, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:16, column:164,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:164,the value of plot_cost is         : 41.067271425324755 

 At row:16, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:16, column:165,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:165,the value of plot_cost is         : 40.872624104008906 

 At row:16, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:16, column:166,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:166,the value of plot_cost is         : 40.678784843095585 

 At row:16, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:16, column:167,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:167,the value of plot_cost is         : 40.48575364258478 

 At row:16, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:16, column:168,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:168,the value of plot_cost is         : 40.29353050247648 

 At row:16, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:16, column:169,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:169,the value of plot_cost is         : 40.102115422770694 

 At row:16, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:16, column:170,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:170,the value of plot_cost is         : 39.91150840346743 

 At row:16, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:16, column:171,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:171,the value of plot_cost is         : 39.721709444566685 

 At row:16, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:16, column:172,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:172,the value of plot_cost is         : 39.53271854606846 

 At row:16, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:16, column:173,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:173,the value of plot_cost is         : 39.34453570797274 

 At row:16, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:16, column:174,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:174,the value of plot_cost is         : 39.15716093027954 

 At row:16, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:16, column:175,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:175,the value of plot_cost is         : 38.97059421298884 

 At row:16, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:16, column:176,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:176,the value of plot_cost is         : 38.78483555610067 

 At row:16, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:16, column:177,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:177,the value of plot_cost is         : 38.59988495961501 

 At row:16, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:16, column:178,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:178,the value of plot_cost is         : 38.415742423531874 

 At row:16, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:16, column:179,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:179,the value of plot_cost is         : 38.232407947851236 

 At row:16, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:16, column:180,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:180,the value of plot_cost is         : 38.049881532573124 

 At row:16, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:16, column:181,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:181,the value of plot_cost is         : 37.868163177697525 

 At row:16, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:16, column:182,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:182,the value of plot_cost is         : 37.68725288322444 

 At row:16, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:16, column:183,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:183,the value of plot_cost is         : 37.50715064915388 

 At row:16, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:16, column:184,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:184,the value of plot_cost is         : 37.327856475485824 

 At row:16, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:16, column:185,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:185,the value of plot_cost is         : 37.14937036222028 

 At row:16, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:16, column:186,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:186,the value of plot_cost is         : 36.97169230935726 

 At row:16, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:16, column:187,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:187,the value of plot_cost is         : 36.794822316896756 

 At row:16, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:16, column:188,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:188,the value of plot_cost is         : 36.618760384838765 

 At row:16, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:16, column:189,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:189,the value of plot_cost is         : 36.44350651318328 

 At row:16, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:16, column:190,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:190,the value of plot_cost is         : 36.26906070193032 

 At row:16, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:16, column:191,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:191,the value of plot_cost is         : 36.09542295107987 

 At row:16, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:16, column:192,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:192,the value of plot_cost is         : 35.922593260631935 

 At row:16, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:16, column:193,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:193,the value of plot_cost is         : 35.75057163058653 

 At row:16, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:16, column:194,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:194,the value of plot_cost is         : 35.579358060943626 

 At row:16, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:16, column:195,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:195,the value of plot_cost is         : 35.40895255170323 

 At row:16, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:16, column:196,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:196,the value of plot_cost is         : 35.23935510286536 

 At row:16, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:16, column:197,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:197,the value of plot_cost is         : 35.07056571443 

 At row:16, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:16, column:198,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:198,the value of plot_cost is         : 34.902584386397166 

 At row:16, column:199,the value of plot_t0 is           : 3.0
 At row:16, column:199,the value of plot_t1 is           : -0.6783919597989949
 At row:16, column:199,the value of plot_cost is         : 34.735411118766834 

 At row:17, column:0,the value of plot_t0 is           : -1.0
 At row:17, column:0,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:0,the value of plot_cost is         : 82.49254394730292 

 At row:17, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:17, column:1,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:1,the value of plot_cost is         : 82.16805286302295 

 At row:17, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:17, column:2,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:2,the value of plot_cost is         : 81.84436983914549 

 At row:17, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:17, column:3,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:3,the value of plot_cost is         : 81.52149487567051 

 At row:17, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:17, column:4,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:4,the value of plot_cost is         : 81.19942797259809 

 At row:17, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:17, column:5,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:5,the value of plot_cost is         : 80.87816912992817 

 At row:17, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:17, column:6,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:6,the value of plot_cost is         : 80.55771834766077 

 At row:17, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:17, column:7,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:7,the value of plot_cost is         : 80.23807562579589 

 At row:17, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:17, column:8,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:8,the value of plot_cost is         : 79.9192409643335 

 At row:17, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:17, column:9,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:9,the value of plot_cost is         : 79.60121436327364 

 At row:17, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:17, column:10,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:10,the value of plot_cost is         : 79.28399582261632 

 At row:17, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:17, column:11,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:11,the value of plot_cost is         : 78.96758534236147 

 At row:17, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:17, column:12,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:12,the value of plot_cost is         : 78.65198292250919 

 At row:17, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:17, column:13,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:13,the value of plot_cost is         : 78.33718856305937 

 At row:17, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:17, column:14,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:14,the value of plot_cost is         : 78.02320226401208 

 At row:17, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:17, column:15,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:15,the value of plot_cost is         : 77.71002402536732 

 At row:17, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:17, column:16,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:16,the value of plot_cost is         : 77.39765384712507 

 At row:17, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:17, column:17,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:17,the value of plot_cost is         : 77.08609172928533 

 At row:17, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:17, column:18,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:18,the value of plot_cost is         : 76.7753376718481 

 At row:17, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:17, column:19,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:19,the value of plot_cost is         : 76.46539167481342 

 At row:17, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:17, column:20,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:20,the value of plot_cost is         : 76.1562537381812 

 At row:17, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:17, column:21,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:21,the value of plot_cost is         : 75.84792386195153 

 At row:17, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:17, column:22,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:22,the value of plot_cost is         : 75.54040204612437 

 At row:17, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:17, column:23,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:23,the value of plot_cost is         : 75.23368829069973 

 At row:17, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:17, column:24,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:24,the value of plot_cost is         : 74.92778259567758 

 At row:17, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:17, column:25,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:25,the value of plot_cost is         : 74.62268496105798 

 At row:17, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:17, column:26,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:26,the value of plot_cost is         : 74.31839538684088 

 At row:17, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:17, column:27,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:27,the value of plot_cost is         : 74.01491387302627 

 At row:17, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:17, column:28,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:28,the value of plot_cost is         : 73.71224041961422 

 At row:17, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:17, column:29,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:29,the value of plot_cost is         : 73.41037502660465 

 At row:17, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:17, column:30,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:30,the value of plot_cost is         : 73.10931769399764 

 At row:17, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:17, column:31,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:31,the value of plot_cost is         : 72.8090684217931 

 At row:17, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:17, column:32,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:32,the value of plot_cost is         : 72.5096272099911 

 At row:17, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:17, column:33,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:33,the value of plot_cost is         : 72.2109940585916 

 At row:17, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:17, column:34,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:34,the value of plot_cost is         : 71.91316896759461 

 At row:17, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:17, column:35,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:35,the value of plot_cost is         : 71.61615193700014 

 At row:17, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:17, column:36,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:36,the value of plot_cost is         : 71.3199429668082 

 At row:17, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:17, column:37,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:37,the value of plot_cost is         : 71.02454205701875 

 At row:17, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:17, column:38,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:38,the value of plot_cost is         : 70.72994920763183 

 At row:17, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:17, column:39,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:39,the value of plot_cost is         : 70.43616441864744 

 At row:17, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:17, column:40,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:40,the value of plot_cost is         : 70.14318769006555 

 At row:17, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:17, column:41,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:41,the value of plot_cost is         : 69.85101902188617 

 At row:17, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:17, column:42,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:42,the value of plot_cost is         : 69.55965841410931 

 At row:17, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:17, column:43,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:43,the value of plot_cost is         : 69.26910586673496 

 At row:17, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:17, column:44,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:44,the value of plot_cost is         : 68.97936137976313 

 At row:17, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:17, column:45,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:45,the value of plot_cost is         : 68.69042495319383 

 At row:17, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:17, column:46,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:46,the value of plot_cost is         : 68.40229658702701 

 At row:17, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:17, column:47,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:47,the value of plot_cost is         : 68.11497628126273 

 At row:17, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:17, column:48,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:48,the value of plot_cost is         : 67.82846403590098 

 At row:17, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:17, column:49,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:49,the value of plot_cost is         : 67.54275985094172 

 At row:17, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:17, column:50,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:50,the value of plot_cost is         : 67.25786372638498 

 At row:17, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:17, column:51,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:51,the value of plot_cost is         : 66.97377566223075 

 At row:17, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:17, column:52,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:52,the value of plot_cost is         : 66.69049565847904 

 At row:17, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:17, column:53,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:53,the value of plot_cost is         : 66.40802371512984 

 At row:17, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:17, column:54,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:54,the value of plot_cost is         : 66.12635983218316 

 At row:17, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:17, column:55,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:55,the value of plot_cost is         : 65.845504009639 

 At row:17, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:17, column:56,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:56,the value of plot_cost is         : 65.56545624749735 

 At row:17, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:17, column:57,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:57,the value of plot_cost is         : 65.28621654575822 

 At row:17, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:17, column:58,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:58,the value of plot_cost is         : 65.00778490442161 

 At row:17, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:17, column:59,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:59,the value of plot_cost is         : 64.7301613234875 

 At row:17, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:17, column:60,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:60,the value of plot_cost is         : 64.45334580295592 

 At row:17, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:17, column:61,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:61,the value of plot_cost is         : 64.17733834282684 

 At row:17, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:17, column:62,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:62,the value of plot_cost is         : 63.90213894310028 

 At row:17, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:17, column:63,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:63,the value of plot_cost is         : 63.62774760377625 

 At row:17, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:17, column:64,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:64,the value of plot_cost is         : 63.354164324854715 

 At row:17, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:17, column:65,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:65,the value of plot_cost is         : 63.08138910633569 

 At row:17, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:17, column:66,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:66,the value of plot_cost is         : 62.809421948219196 

 At row:17, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:17, column:67,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:67,the value of plot_cost is         : 62.53826285050521 

 At row:17, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:17, column:68,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:68,the value of plot_cost is         : 62.267911813193756 

 At row:17, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:17, column:69,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:69,the value of plot_cost is         : 61.998368836284804 

 At row:17, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:17, column:70,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:70,the value of plot_cost is         : 61.72963391977836 

 At row:17, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:17, column:71,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:71,the value of plot_cost is         : 61.46170706367444 

 At row:17, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:17, column:72,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:72,the value of plot_cost is         : 61.19458826797303 

 At row:17, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:17, column:73,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:73,the value of plot_cost is         : 60.928277532674144 

 At row:17, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:17, column:74,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:74,the value of plot_cost is         : 60.662774857777755 

 At row:17, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:17, column:75,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:75,the value of plot_cost is         : 60.39808024328389 

 At row:17, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:17, column:76,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:76,the value of plot_cost is         : 60.13419368919254 

 At row:17, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:17, column:77,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:77,the value of plot_cost is         : 59.87111519550371 

 At row:17, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:17, column:78,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:78,the value of plot_cost is         : 59.608844762217394 

 At row:17, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:17, column:79,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:79,the value of plot_cost is         : 59.3473823893336 

 At row:17, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:17, column:80,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:80,the value of plot_cost is         : 59.086728076852324 

 At row:17, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:17, column:81,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:81,the value of plot_cost is         : 58.82688182477355 

 At row:17, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:17, column:82,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:82,the value of plot_cost is         : 58.56784363309729 

 At row:17, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:17, column:83,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:83,the value of plot_cost is         : 58.309613501823556 

 At row:17, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:17, column:84,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:84,the value of plot_cost is         : 58.05219143095232 

 At row:17, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:17, column:85,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:85,the value of plot_cost is         : 57.79557742048361 

 At row:17, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:17, column:86,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:86,the value of plot_cost is         : 57.53977147041741 

 At row:17, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:17, column:87,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:87,the value of plot_cost is         : 57.284773580753736 

 At row:17, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:17, column:88,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:88,the value of plot_cost is         : 57.030583751492564 

 At row:17, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:17, column:89,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:89,the value of plot_cost is         : 56.77720198263391 

 At row:17, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:17, column:90,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:90,the value of plot_cost is         : 56.524628274177786 

 At row:17, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:17, column:91,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:91,the value of plot_cost is         : 56.272862626124166 

 At row:17, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:17, column:92,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:92,the value of plot_cost is         : 56.02190503847305 

 At row:17, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:17, column:93,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:93,the value of plot_cost is         : 55.77175551122447 

 At row:17, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:17, column:94,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:94,the value of plot_cost is         : 55.52241404437838 

 At row:17, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:17, column:95,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:95,the value of plot_cost is         : 55.27388063793482 

 At row:17, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:17, column:96,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:96,the value of plot_cost is         : 55.02615529189378 

 At row:17, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:17, column:97,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:97,the value of plot_cost is         : 54.77923800625525 

 At row:17, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:17, column:98,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:98,the value of plot_cost is         : 54.533128781019236 

 At row:17, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:17, column:99,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:99,the value of plot_cost is         : 54.28782761618574 

 At row:17, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:17, column:100,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:100,the value of plot_cost is         : 54.04333451175476 

 At row:17, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:17, column:101,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:101,the value of plot_cost is         : 53.79964946772629 

 At row:17, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:17, column:102,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:102,the value of plot_cost is         : 53.55677248410033 

 At row:17, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:17, column:103,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:103,the value of plot_cost is         : 53.31470356087689 

 At row:17, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:17, column:104,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:104,the value of plot_cost is         : 53.073442698055956 

 At row:17, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:17, column:105,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:105,the value of plot_cost is         : 52.83298989563755 

 At row:17, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:17, column:106,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:106,the value of plot_cost is         : 52.593345153621655 

 At row:17, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:17, column:107,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:107,the value of plot_cost is         : 52.354508472008284 

 At row:17, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:17, column:108,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:108,the value of plot_cost is         : 52.11647985079742 

 At row:17, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:17, column:109,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:109,the value of plot_cost is         : 51.879259289989065 

 At row:17, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:17, column:110,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:110,the value of plot_cost is         : 51.64284678958323 

 At row:17, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:17, column:111,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:111,the value of plot_cost is         : 51.40724234957992 

 At row:17, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:17, column:112,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:112,the value of plot_cost is         : 51.17244596997911 

 At row:17, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:17, column:113,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:113,the value of plot_cost is         : 50.93845765078082 

 At row:17, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:17, column:114,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:114,the value of plot_cost is         : 50.70527739198504 

 At row:17, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:17, column:115,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:115,the value of plot_cost is         : 50.47290519359179 

 At row:17, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:17, column:116,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:116,the value of plot_cost is         : 50.24134105560105 

 At row:17, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:17, column:117,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:117,the value of plot_cost is         : 50.010584978012815 

 At row:17, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:17, column:118,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:118,the value of plot_cost is         : 49.78063696082711 

 At row:17, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:17, column:119,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:119,the value of plot_cost is         : 49.55149700404391 

 At row:17, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:17, column:120,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:120,the value of plot_cost is         : 49.32316510766322 

 At row:17, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:17, column:121,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:121,the value of plot_cost is         : 49.09564127168506 

 At row:17, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:17, column:122,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:122,the value of plot_cost is         : 48.868925496109405 

 At row:17, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:17, column:123,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:123,the value of plot_cost is         : 48.64301778093627 

 At row:17, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:17, column:124,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:124,the value of plot_cost is         : 48.41791812616564 

 At row:17, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:17, column:125,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:125,the value of plot_cost is         : 48.19362653179754 

 At row:17, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:17, column:126,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:126,the value of plot_cost is         : 47.97014299783194 

 At row:17, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:17, column:127,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:127,the value of plot_cost is         : 47.747467524268856 

 At row:17, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:17, column:128,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:128,the value of plot_cost is         : 47.52560011110831 

 At row:17, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:17, column:129,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:129,the value of plot_cost is         : 47.304540758350264 

 At row:17, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:17, column:130,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:130,the value of plot_cost is         : 47.08428946599472 

 At row:17, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:17, column:131,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:131,the value of plot_cost is         : 46.86484623404171 

 At row:17, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:17, column:132,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:132,the value of plot_cost is         : 46.64621106249121 

 At row:17, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:17, column:133,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:133,the value of plot_cost is         : 46.42838395134322 

 At row:17, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:17, column:134,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:134,the value of plot_cost is         : 46.21136490059775 

 At row:17, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:17, column:135,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:135,the value of plot_cost is         : 45.99515391025479 

 At row:17, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:17, column:136,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:136,the value of plot_cost is         : 45.77975098031435 

 At row:17, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:17, column:137,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:137,the value of plot_cost is         : 45.56515611077642 

 At row:17, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:17, column:138,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:138,the value of plot_cost is         : 45.35136930164101 

 At row:17, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:17, column:139,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:139,the value of plot_cost is         : 45.13839055290811 

 At row:17, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:17, column:140,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:140,the value of plot_cost is         : 44.92621986457774 

 At row:17, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:17, column:141,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:141,the value of plot_cost is         : 44.71485723664987 

 At row:17, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:17, column:142,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:142,the value of plot_cost is         : 44.50430266912452 

 At row:17, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:17, column:143,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:143,the value of plot_cost is         : 44.294556162001676 

 At row:17, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:17, column:144,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:144,the value of plot_cost is         : 44.08561771528136 

 At row:17, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:17, column:145,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:145,the value of plot_cost is         : 43.877487328963554 

 At row:17, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:17, column:146,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:146,the value of plot_cost is         : 43.67016500304826 

 At row:17, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:17, column:147,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:147,the value of plot_cost is         : 43.46365073753548 

 At row:17, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:17, column:148,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:148,the value of plot_cost is         : 43.25794453242523 

 At row:17, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:17, column:149,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:149,the value of plot_cost is         : 43.05304638771749 

 At row:17, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:17, column:150,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:150,the value of plot_cost is         : 42.84895630341225 

 At row:17, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:17, column:151,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:151,the value of plot_cost is         : 42.645674279509535 

 At row:17, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:17, column:152,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:152,the value of plot_cost is         : 42.44320031600934 

 At row:17, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:17, column:153,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:153,the value of plot_cost is         : 42.24153441291165 

 At row:17, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:17, column:154,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:154,the value of plot_cost is         : 42.04067657021648 

 At row:17, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:17, column:155,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:155,the value of plot_cost is         : 41.84062678792382 

 At row:17, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:17, column:156,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:156,the value of plot_cost is         : 41.64138506603368 

 At row:17, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:17, column:157,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:157,the value of plot_cost is         : 41.44295140454606 

 At row:17, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:17, column:158,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:158,the value of plot_cost is         : 41.24532580346095 

 At row:17, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:17, column:159,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:159,the value of plot_cost is         : 41.04850826277836 

 At row:17, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:17, column:160,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:160,the value of plot_cost is         : 40.85249878249828 

 At row:17, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:17, column:161,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:161,the value of plot_cost is         : 40.65729736262071 

 At row:17, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:17, column:162,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:162,the value of plot_cost is         : 40.46290400314566 

 At row:17, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:17, column:163,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:163,the value of plot_cost is         : 40.26931870407313 

 At row:17, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:17, column:164,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:164,the value of plot_cost is         : 40.0765414654031 

 At row:17, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:17, column:165,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:165,the value of plot_cost is         : 39.88457228713561 

 At row:17, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:17, column:166,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:166,the value of plot_cost is         : 39.693411169270604 

 At row:17, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:17, column:167,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:167,the value of plot_cost is         : 39.50305811180814 

 At row:17, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:17, column:168,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:168,the value of plot_cost is         : 39.31351311474818 

 At row:17, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:17, column:169,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:169,the value of plot_cost is         : 39.12477617809074 

 At row:17, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:17, column:170,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:170,the value of plot_cost is         : 38.93684730183582 

 At row:17, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:17, column:171,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:171,the value of plot_cost is         : 38.7497264859834 

 At row:17, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:17, column:172,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:172,the value of plot_cost is         : 38.563413730533505 

 At row:17, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:17, column:173,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:173,the value of plot_cost is         : 38.37790903548612 

 At row:17, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:17, column:174,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:174,the value of plot_cost is         : 38.19321240084125 

 At row:17, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:17, column:175,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:175,the value of plot_cost is         : 38.009323826598894 

 At row:17, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:17, column:176,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:176,the value of plot_cost is         : 37.826243312759054 

 At row:17, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:17, column:177,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:177,the value of plot_cost is         : 37.64397085932173 

 At row:17, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:17, column:178,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:178,the value of plot_cost is         : 37.46250646628693 

 At row:17, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:17, column:179,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:179,the value of plot_cost is         : 37.281850133654636 

 At row:17, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:17, column:180,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:180,the value of plot_cost is         : 37.10200186142486 

 At row:17, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:17, column:181,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:181,the value of plot_cost is         : 36.922961649597596 

 At row:17, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:17, column:182,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:182,the value of plot_cost is         : 36.74472949817285 

 At row:17, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:17, column:183,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:183,the value of plot_cost is         : 36.56730540715062 

 At row:17, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:17, column:184,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:184,the value of plot_cost is         : 36.390689376530894 

 At row:17, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:17, column:185,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:185,the value of plot_cost is         : 36.21488140631369 

 At row:17, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:17, column:186,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:186,the value of plot_cost is         : 36.039881496499 

 At row:17, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:17, column:187,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:187,the value of plot_cost is         : 35.86568964708683 

 At row:17, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:17, column:188,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:188,the value of plot_cost is         : 35.69230585807717 

 At row:17, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:17, column:189,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:189,the value of plot_cost is         : 35.51973012947004 

 At row:17, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:17, column:190,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:190,the value of plot_cost is         : 35.34796246126541 

 At row:17, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:17, column:191,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:191,the value of plot_cost is         : 35.1770028534633 

 At row:17, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:17, column:192,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:192,the value of plot_cost is         : 35.0068513060637 

 At row:17, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:17, column:193,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:193,the value of plot_cost is         : 34.837507819066616 

 At row:17, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:17, column:194,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:194,the value of plot_cost is         : 34.66897239247205 

 At row:17, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:17, column:195,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:195,the value of plot_cost is         : 34.50124502628 

 At row:17, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:17, column:196,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:196,the value of plot_cost is         : 34.334325720490455 

 At row:17, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:17, column:197,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:197,the value of plot_cost is         : 34.16821447510344 

 At row:17, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:17, column:198,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:198,the value of plot_cost is         : 34.00291129011894 

 At row:17, column:199,the value of plot_t0 is           : 3.0
 At row:17, column:199,the value of plot_t1 is           : -0.6582914572864322
 At row:17, column:199,the value of plot_cost is         : 33.83841616553695 

 At row:18, column:0,the value of plot_t0 is           : -1.0
 At row:18, column:0,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:0,the value of plot_cost is         : 81.07518118229336 

 At row:18, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:18, column:1,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:1,the value of plot_cost is         : 80.75336824106172 

 At row:18, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:18, column:2,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:2,the value of plot_cost is         : 80.43236336023259 

 At row:18, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:18, column:3,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:3,the value of plot_cost is         : 80.11216653980598 

 At row:18, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:18, column:4,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:4,the value of plot_cost is         : 79.7927777797819 

 At row:18, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:18, column:5,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:5,the value of plot_cost is         : 79.4741970801603 

 At row:18, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:18, column:6,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:6,the value of plot_cost is         : 79.15642444094124 

 At row:18, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:18, column:7,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:7,the value of plot_cost is         : 78.83945986212467 

 At row:18, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:18, column:8,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:8,the value of plot_cost is         : 78.52330334371065 

 At row:18, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:18, column:9,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:9,the value of plot_cost is         : 78.20795488569912 

 At row:18, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:18, column:10,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:10,the value of plot_cost is         : 77.89341448809013 

 At row:18, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:18, column:11,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:11,the value of plot_cost is         : 77.57968215088363 

 At row:18, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:18, column:12,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:12,the value of plot_cost is         : 77.26675787407966 

 At row:18, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:18, column:13,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:13,the value of plot_cost is         : 76.9546416576782 

 At row:18, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:18, column:14,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:14,the value of plot_cost is         : 76.64333350167924 

 At row:18, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:18, column:15,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:15,the value of plot_cost is         : 76.33283340608283 

 At row:18, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:18, column:16,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:16,the value of plot_cost is         : 76.02314137088888 

 At row:18, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:18, column:17,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:17,the value of plot_cost is         : 75.71425739609748 

 At row:18, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:18, column:18,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:18,the value of plot_cost is         : 75.40618148170861 

 At row:18, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:18, column:19,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:19,the value of plot_cost is         : 75.09891362772224 

 At row:18, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:18, column:20,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:20,the value of plot_cost is         : 74.79245383413837 

 At row:18, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:18, column:21,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:21,the value of plot_cost is         : 74.48680210095704 

 At row:18, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:18, column:22,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:22,the value of plot_cost is         : 74.1819584281782 

 At row:18, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:18, column:23,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:23,the value of plot_cost is         : 73.87792281580191 

 At row:18, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:18, column:24,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:24,the value of plot_cost is         : 73.57469526382809 

 At row:18, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:18, column:25,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:25,the value of plot_cost is         : 73.27227577225682 

 At row:18, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:18, column:26,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:26,the value of plot_cost is         : 72.97066434108804 

 At row:18, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:18, column:27,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:27,the value of plot_cost is         : 72.6698609703218 

 At row:18, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:18, column:28,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:28,the value of plot_cost is         : 72.36986565995807 

 At row:18, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:18, column:29,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:29,the value of plot_cost is         : 72.07067840999684 

 At row:18, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:18, column:30,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:30,the value of plot_cost is         : 71.77229922043814 

 At row:18, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:18, column:31,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:31,the value of plot_cost is         : 71.47472809128196 

 At row:18, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:18, column:32,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:32,the value of plot_cost is         : 71.17796502252828 

 At row:18, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:18, column:33,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:33,the value of plot_cost is         : 70.88201001417713 

 At row:18, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:18, column:34,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:34,the value of plot_cost is         : 70.58686306622849 

 At row:18, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:18, column:35,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:35,the value of plot_cost is         : 70.29252417868236 

 At row:18, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:18, column:36,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:36,the value of plot_cost is         : 69.99899335153873 

 At row:18, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:18, column:37,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:37,the value of plot_cost is         : 69.70627058479764 

 At row:18, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:18, column:38,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:38,the value of plot_cost is         : 69.41435587845905 

 At row:18, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:18, column:39,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:39,the value of plot_cost is         : 69.12324923252298 

 At row:18, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:18, column:40,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:40,the value of plot_cost is         : 68.83295064698943 

 At row:18, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:18, column:41,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:41,the value of plot_cost is         : 68.54346012185837 

 At row:18, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:18, column:42,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:42,the value of plot_cost is         : 68.25477765712985 

 At row:18, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:18, column:43,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:43,the value of plot_cost is         : 67.96690325280386 

 At row:18, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:18, column:44,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:44,the value of plot_cost is         : 67.67983690888036 

 At row:18, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:18, column:45,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:45,the value of plot_cost is         : 67.39357862535938 

 At row:18, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:18, column:46,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:46,the value of plot_cost is         : 67.10812840224092 

 At row:18, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:18, column:47,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:47,the value of plot_cost is         : 66.82348623952497 

 At row:18, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:18, column:48,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:48,the value of plot_cost is         : 66.53965213721153 

 At row:18, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:18, column:49,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:49,the value of plot_cost is         : 66.25662609530062 

 At row:18, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:18, column:50,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:50,the value of plot_cost is         : 65.97440811379221 

 At row:18, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:18, column:51,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:51,the value of plot_cost is         : 65.69299819268633 

 At row:18, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:18, column:52,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:52,the value of plot_cost is         : 65.41239633198295 

 At row:18, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:18, column:53,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:53,the value of plot_cost is         : 65.1326025316821 

 At row:18, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:18, column:54,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:54,the value of plot_cost is         : 64.85361679178374 

 At row:18, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:18, column:55,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:55,the value of plot_cost is         : 64.57543911228792 

 At row:18, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:18, column:56,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:56,the value of plot_cost is         : 64.2980694931946 

 At row:18, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:18, column:57,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:57,the value of plot_cost is         : 64.02150793450382 

 At row:18, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:18, column:58,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:58,the value of plot_cost is         : 63.745754436215535 

 At row:18, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:18, column:59,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:59,the value of plot_cost is         : 63.47080899832976 

 At row:18, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:18, column:60,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:60,the value of plot_cost is         : 63.1966716208465 

 At row:18, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:18, column:61,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:61,the value of plot_cost is         : 62.92334230376577 

 At row:18, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:18, column:62,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:62,the value of plot_cost is         : 62.65082104708754 

 At row:18, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:18, column:63,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:63,the value of plot_cost is         : 62.37910785081184 

 At row:18, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:18, column:64,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:64,the value of plot_cost is         : 62.10820271493865 

 At row:18, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:18, column:65,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:65,the value of plot_cost is         : 61.83810563946797 

 At row:18, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:18, column:66,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:66,the value of plot_cost is         : 61.5688166243998 

 At row:18, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:18, column:67,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:67,the value of plot_cost is         : 61.30033566973416 

 At row:18, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:18, column:68,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:68,the value of plot_cost is         : 61.03266277547103 

 At row:18, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:18, column:69,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:69,the value of plot_cost is         : 60.76579794161042 

 At row:18, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:18, column:70,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:70,the value of plot_cost is         : 60.49974116815232 

 At row:18, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:18, column:71,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:71,the value of plot_cost is         : 60.23449245509672 

 At row:18, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:18, column:72,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:72,the value of plot_cost is         : 59.97005180244364 

 At row:18, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:18, column:73,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:73,the value of plot_cost is         : 59.7064192101931 

 At row:18, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:18, column:74,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:74,the value of plot_cost is         : 59.44359467834506 

 At row:18, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:18, column:75,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:75,the value of plot_cost is         : 59.18157820689953 

 At row:18, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:18, column:76,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:76,the value of plot_cost is         : 58.92036979585652 

 At row:18, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:18, column:77,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:77,the value of plot_cost is         : 58.65996944521602 

 At row:18, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:18, column:78,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:78,the value of plot_cost is         : 58.40037715497804 

 At row:18, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:18, column:79,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:79,the value of plot_cost is         : 58.14159292514258 

 At row:18, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:18, column:80,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:80,the value of plot_cost is         : 57.88361675570963 

 At row:18, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:18, column:81,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:81,the value of plot_cost is         : 57.62644864667918 

 At row:18, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:18, column:82,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:82,the value of plot_cost is         : 57.370088598051275 

 At row:18, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:18, column:83,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:83,the value of plot_cost is         : 57.11453660982587 

 At row:18, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:18, column:84,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:84,the value of plot_cost is         : 56.859792682002976 

 At row:18, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:18, column:85,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:85,the value of plot_cost is         : 56.6058568145826 

 At row:18, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:18, column:86,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:86,the value of plot_cost is         : 56.35272900756474 

 At row:18, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:18, column:87,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:87,the value of plot_cost is         : 56.10040926094939 

 At row:18, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:18, column:88,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:88,the value of plot_cost is         : 55.84889757473656 

 At row:18, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:18, column:89,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:89,the value of plot_cost is         : 55.598193948926244 

 At row:18, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:18, column:90,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:90,the value of plot_cost is         : 55.348298383518454 

 At row:18, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:18, column:91,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:91,the value of plot_cost is         : 55.099210878513155 

 At row:18, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:18, column:92,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:92,the value of plot_cost is         : 54.8509314339104 

 At row:18, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:18, column:93,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:93,the value of plot_cost is         : 54.603460049710144 

 At row:18, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:18, column:94,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:94,the value of plot_cost is         : 54.356796725912396 

 At row:18, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:18, column:95,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:95,the value of plot_cost is         : 54.11094146251717 

 At row:18, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:18, column:96,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:96,the value of plot_cost is         : 53.86589425952447 

 At row:18, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:18, column:97,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:97,the value of plot_cost is         : 53.621655116934264 

 At row:18, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:18, column:98,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:98,the value of plot_cost is         : 53.37822403474659 

 At row:18, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:18, column:99,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:99,the value of plot_cost is         : 53.13560101296142 

 At row:18, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:18, column:100,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:100,the value of plot_cost is         : 52.893786051578786 

 At row:18, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:18, column:101,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:101,the value of plot_cost is         : 52.65277915059864 

 At row:18, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:18, column:102,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:102,the value of plot_cost is         : 52.41258031002102 

 At row:18, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:18, column:103,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:103,the value of plot_cost is         : 52.17318952984592 

 At row:18, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:18, column:104,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:104,the value of plot_cost is         : 51.93460681007333 

 At row:18, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:18, column:105,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:105,the value of plot_cost is         : 51.69683215070326 

 At row:18, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:18, column:106,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:106,the value of plot_cost is         : 51.459865551735696 

 At row:18, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:18, column:107,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:107,the value of plot_cost is         : 51.22370701317065 

 At row:18, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:18, column:108,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:108,the value of plot_cost is         : 50.98835653500813 

 At row:18, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:18, column:109,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:109,the value of plot_cost is         : 50.75381411724811 

 At row:18, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:18, column:110,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:110,the value of plot_cost is         : 50.520079759890606 

 At row:18, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:18, column:111,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:111,the value of plot_cost is         : 50.287153462935635 

 At row:18, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:18, column:112,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:112,the value of plot_cost is         : 50.05503522638317 

 At row:18, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:18, column:113,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:113,the value of plot_cost is         : 49.823725050233215 

 At row:18, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:18, column:114,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:114,the value of plot_cost is         : 49.59322293448577 

 At row:18, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:18, column:115,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:115,the value of plot_cost is         : 49.36352887914084 

 At row:18, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:18, column:116,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:116,the value of plot_cost is         : 49.13464288419844 

 At row:18, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:18, column:117,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:117,the value of plot_cost is         : 48.90656494965856 

 At row:18, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:18, column:118,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:118,the value of plot_cost is         : 48.679295075521175 

 At row:18, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:18, column:119,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:119,the value of plot_cost is         : 48.45283326178631 

 At row:18, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:18, column:120,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:120,the value of plot_cost is         : 48.227179508453965 

 At row:18, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:18, column:121,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:121,the value of plot_cost is         : 48.00233381552414 

 At row:18, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:18, column:122,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:122,the value of plot_cost is         : 47.77829618299681 

 At row:18, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:18, column:123,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:123,the value of plot_cost is         : 47.55506661087202 

 At row:18, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:18, column:124,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:124,the value of plot_cost is         : 47.33264509914973 

 At row:18, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:18, column:125,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:125,the value of plot_cost is         : 47.111031647829954 

 At row:18, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:18, column:126,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:126,the value of plot_cost is         : 46.8902262569127 

 At row:18, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:18, column:127,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:127,the value of plot_cost is         : 46.670228926397954 

 At row:18, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:18, column:128,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:128,the value of plot_cost is         : 46.45103965628573 

 At row:18, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:18, column:129,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:129,the value of plot_cost is         : 46.23265844657602 

 At row:18, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:18, column:130,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:130,the value of plot_cost is         : 46.01508529726881 

 At row:18, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:18, column:131,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:131,the value of plot_cost is         : 45.79832020836413 

 At row:18, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:18, column:132,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:132,the value of plot_cost is         : 45.58236317986197 

 At row:18, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:18, column:133,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:133,the value of plot_cost is         : 45.36721421176233 

 At row:18, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:18, column:134,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:134,the value of plot_cost is         : 45.15287330406518 

 At row:18, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:18, column:135,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:135,the value of plot_cost is         : 44.93934045677056 

 At row:18, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:18, column:136,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:136,the value of plot_cost is         : 44.72661566987846 

 At row:18, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:18, column:137,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:137,the value of plot_cost is         : 44.51469894338887 

 At row:18, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:18, column:138,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:138,the value of plot_cost is         : 44.3035902773018 

 At row:18, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:18, column:139,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:139,the value of plot_cost is         : 44.093289671617235 

 At row:18, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:18, column:140,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:140,the value of plot_cost is         : 43.88379712633519 

 At row:18, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:18, column:141,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:141,the value of plot_cost is         : 43.67511264145566 

 At row:18, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:18, column:142,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:142,the value of plot_cost is         : 43.46723621697864 

 At row:18, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:18, column:143,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:143,the value of plot_cost is         : 43.26016785290415 

 At row:18, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:18, column:144,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:144,the value of plot_cost is         : 43.05390754923216 

 At row:18, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:18, column:145,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:145,the value of plot_cost is         : 42.84845530596268 

 At row:18, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:18, column:146,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:146,the value of plot_cost is         : 42.64381112309573 

 At row:18, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:18, column:147,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:147,the value of plot_cost is         : 42.4399750006313 

 At row:18, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:18, column:148,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:148,the value of plot_cost is         : 42.236946938569375 

 At row:18, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:18, column:149,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:149,the value of plot_cost is         : 42.034726936909955 

 At row:18, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:18, column:150,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:150,the value of plot_cost is         : 41.833314995653055 

 At row:18, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:18, column:151,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:151,the value of plot_cost is         : 41.63271111479868 

 At row:18, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:18, column:152,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:152,the value of plot_cost is         : 41.43291529434681 

 At row:18, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:18, column:153,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:153,the value of plot_cost is         : 41.23392753429747 

 At row:18, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:18, column:154,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:154,the value of plot_cost is         : 41.035747834650635 

 At row:18, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:18, column:155,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:155,the value of plot_cost is         : 40.838376195406305 

 At row:18, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:18, column:156,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:156,the value of plot_cost is         : 40.64181261656451 

 At row:18, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:18, column:157,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:157,the value of plot_cost is         : 40.44605709812522 

 At row:18, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:18, column:158,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:158,the value of plot_cost is         : 40.25110964008845 

 At row:18, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:18, column:159,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:159,the value of plot_cost is         : 40.05697024245419 

 At row:18, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:18, column:160,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:160,the value of plot_cost is         : 39.863638905222444 

 At row:18, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:18, column:161,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:161,the value of plot_cost is         : 39.67111562839321 

 At row:18, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:18, column:162,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:162,the value of plot_cost is         : 39.4794004119665 

 At row:18, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:18, column:163,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:163,the value of plot_cost is         : 39.28849325594231 

 At row:18, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:18, column:164,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:164,the value of plot_cost is         : 39.09839416032062 

 At row:18, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:18, column:165,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:165,the value of plot_cost is         : 38.909103125101446 

 At row:18, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:18, column:166,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:166,the value of plot_cost is         : 38.7206201502848 

 At row:18, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:18, column:167,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:167,the value of plot_cost is         : 38.53294523587067 

 At row:18, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:18, column:168,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:168,the value of plot_cost is         : 38.34607838185905 

 At row:18, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:18, column:169,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:169,the value of plot_cost is         : 38.16001958824993 

 At row:18, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:18, column:170,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:170,the value of plot_cost is         : 37.97476885504333 

 At row:18, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:18, column:171,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:171,the value of plot_cost is         : 37.79032618223926 

 At row:18, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:18, column:172,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:172,the value of plot_cost is         : 37.60669156983769 

 At row:18, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:18, column:173,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:173,the value of plot_cost is         : 37.42386501783866 

 At row:18, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:18, column:174,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:174,the value of plot_cost is         : 37.24184652624212 

 At row:18, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:18, column:175,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:175,the value of plot_cost is         : 37.060636095048096 

 At row:18, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:18, column:176,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:176,the value of plot_cost is         : 36.88023372425659 

 At row:18, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:18, column:177,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:177,the value of plot_cost is         : 36.70063941386761 

 At row:18, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:18, column:178,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:178,the value of plot_cost is         : 36.52185316388114 

 At row:18, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:18, column:179,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:179,the value of plot_cost is         : 36.34387497429717 

 At row:18, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:18, column:180,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:180,the value of plot_cost is         : 36.16670484511573 

 At row:18, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:18, column:181,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:181,the value of plot_cost is         : 35.99034277633681 

 At row:18, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:18, column:182,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:182,the value of plot_cost is         : 35.8147887679604 

 At row:18, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:18, column:183,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:183,the value of plot_cost is         : 35.64004281998651 

 At row:18, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:18, column:184,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:184,the value of plot_cost is         : 35.46610493241512 

 At row:18, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:18, column:185,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:185,the value of plot_cost is         : 35.29297510524625 

 At row:18, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:18, column:186,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:186,the value of plot_cost is         : 35.120653338479904 

 At row:18, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:18, column:187,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:187,the value of plot_cost is         : 34.94913963211607 

 At row:18, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:18, column:188,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:188,the value of plot_cost is         : 34.778433986154745 

 At row:18, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:18, column:189,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:189,the value of plot_cost is         : 34.608536400595945 

 At row:18, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:18, column:190,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:190,the value of plot_cost is         : 34.43944687543964 

 At row:18, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:18, column:191,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:191,the value of plot_cost is         : 34.271165410685875 

 At row:18, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:18, column:192,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:192,the value of plot_cost is         : 34.10369200633462 

 At row:18, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:18, column:193,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:193,the value of plot_cost is         : 33.93702666238587 

 At row:18, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:18, column:194,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:194,the value of plot_cost is         : 33.77116937883963 

 At row:18, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:18, column:195,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:195,the value of plot_cost is         : 33.60612015569592 

 At row:18, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:18, column:196,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:196,the value of plot_cost is         : 33.44187899295471 

 At row:18, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:18, column:197,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:197,the value of plot_cost is         : 33.278445890616034 

 At row:18, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:18, column:198,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:198,the value of plot_cost is         : 33.11582084867987 

 At row:18, column:199,the value of plot_t0 is           : 3.0
 At row:18, column:199,the value of plot_t1 is           : -0.6381909547738693
 At row:18, column:199,the value of plot_cost is         : 32.954003867146206 

 At row:19, column:0,the value of plot_t0 is           : -1.0
 At row:19, column:0,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:0,the value of plot_cost is         : 79.670401072123 

 At row:19, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:19, column:1,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:1,the value of plot_cost is         : 79.35126627393969 

 At row:19, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:19, column:2,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:2,the value of plot_cost is         : 79.03293953615889 

 At row:19, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:19, column:3,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:3,the value of plot_cost is         : 78.71542085878062 

 At row:19, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:19, column:4,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:4,the value of plot_cost is         : 78.39871024180485 

 At row:19, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:19, column:5,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:5,the value of plot_cost is         : 78.0828076852316 

 At row:19, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:19, column:6,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:6,the value of plot_cost is         : 77.76771318906087 

 At row:19, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:19, column:7,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:7,the value of plot_cost is         : 77.45342675329266 

 At row:19, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:19, column:8,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:8,the value of plot_cost is         : 77.13994837792694 

 At row:19, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:19, column:9,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:9,the value of plot_cost is         : 76.82727806296377 

 At row:19, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:19, column:10,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:10,the value of plot_cost is         : 76.5154158084031 

 At row:19, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:19, column:11,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:11,the value of plot_cost is         : 76.20436161424495 

 At row:19, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:19, column:12,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:12,the value of plot_cost is         : 75.8941154804893 

 At row:19, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:19, column:13,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:13,the value of plot_cost is         : 75.58467740713617 

 At row:19, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:19, column:14,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:14,the value of plot_cost is         : 75.27604739418557 

 At row:19, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:19, column:15,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:15,the value of plot_cost is         : 74.96822544163746 

 At row:19, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:19, column:16,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:16,the value of plot_cost is         : 74.6612115494919 

 At row:19, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:19, column:17,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:17,the value of plot_cost is         : 74.35500571774881 

 At row:19, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:19, column:18,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:18,the value of plot_cost is         : 74.04960794640829 

 At row:19, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:19, column:19,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:19,the value of plot_cost is         : 73.74501823547024 

 At row:19, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:19, column:20,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:20,the value of plot_cost is         : 73.44123658493471 

 At row:19, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:19, column:21,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:21,the value of plot_cost is         : 73.13826299480172 

 At row:19, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:19, column:22,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:22,the value of plot_cost is         : 72.83609746507123 

 At row:19, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:19, column:23,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:23,the value of plot_cost is         : 72.53473999574324 

 At row:19, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:19, column:24,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:24,the value of plot_cost is         : 72.23419058681779 

 At row:19, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:19, column:25,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:25,the value of plot_cost is         : 71.93444923829485 

 At row:19, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:19, column:26,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:26,the value of plot_cost is         : 71.63551595017442 

 At row:19, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:19, column:27,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:27,the value of plot_cost is         : 71.3373907224565 

 At row:19, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:19, column:28,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:28,the value of plot_cost is         : 71.04007355514109 

 At row:19, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:19, column:29,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:29,the value of plot_cost is         : 70.7435644482282 

 At row:19, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:19, column:30,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:30,the value of plot_cost is         : 70.44786340171784 

 At row:19, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:19, column:31,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:31,the value of plot_cost is         : 70.15297041560999 

 At row:19, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:19, column:32,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:32,the value of plot_cost is         : 69.85888548990465 

 At row:19, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:19, column:33,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:33,the value of plot_cost is         : 69.56560862460184 

 At row:19, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:19, column:34,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:34,the value of plot_cost is         : 69.27313981970151 

 At row:19, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:19, column:35,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:35,the value of plot_cost is         : 68.98147907520372 

 At row:19, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:19, column:36,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:36,the value of plot_cost is         : 68.69062639110844 

 At row:19, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:19, column:37,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:37,the value of plot_cost is         : 68.40058176741567 

 At row:19, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:19, column:38,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:38,the value of plot_cost is         : 68.11134520412543 

 At row:19, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:19, column:39,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:39,the value of plot_cost is         : 67.82291670123769 

 At row:19, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:19, column:40,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:40,the value of plot_cost is         : 67.53529625875247 

 At row:19, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:19, column:41,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:41,the value of plot_cost is         : 67.24848387666978 

 At row:19, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:19, column:42,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:42,the value of plot_cost is         : 66.96247955498957 

 At row:19, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:19, column:43,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:43,the value of plot_cost is         : 66.67728329371191 

 At row:19, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:19, column:44,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:44,the value of plot_cost is         : 66.39289509283675 

 At row:19, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:19, column:45,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:45,the value of plot_cost is         : 66.10931495236412 

 At row:19, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:19, column:46,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:46,the value of plot_cost is         : 65.82654287229398 

 At row:19, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:19, column:47,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:47,the value of plot_cost is         : 65.54457885262639 

 At row:19, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:19, column:48,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:48,the value of plot_cost is         : 65.26342289336128 

 At row:19, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:19, column:49,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:49,the value of plot_cost is         : 64.9830749944987 

 At row:19, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:19, column:50,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:50,the value of plot_cost is         : 64.70353515603863 

 At row:19, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:19, column:51,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:51,the value of plot_cost is         : 64.42480337798106 

 At row:19, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:19, column:52,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:52,the value of plot_cost is         : 64.14687966032604 

 At row:19, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:19, column:53,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:53,the value of plot_cost is         : 63.86976400307352 

 At row:19, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:19, column:54,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:54,the value of plot_cost is         : 63.59345640622351 

 At row:19, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:19, column:55,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:55,the value of plot_cost is         : 63.317956869776005 

 At row:19, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:19, column:56,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:56,the value of plot_cost is         : 63.043265393731026 

 At row:19, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:19, column:57,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:57,the value of plot_cost is         : 62.76938197808858 

 At row:19, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:19, column:58,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:58,the value of plot_cost is         : 62.49630662284862 

 At row:19, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:19, column:59,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:59,the value of plot_cost is         : 62.22403932801119 

 At row:19, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:19, column:60,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:60,the value of plot_cost is         : 61.95258009357628 

 At row:19, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:19, column:61,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:61,the value of plot_cost is         : 61.68192891954388 

 At row:19, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:19, column:62,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:62,the value of plot_cost is         : 61.41208580591399 

 At row:19, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:19, column:63,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:63,the value of plot_cost is         : 61.14305075268662 

 At row:19, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:19, column:64,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:64,the value of plot_cost is         : 60.87482375986176 

 At row:19, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:19, column:65,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:65,the value of plot_cost is         : 60.60740482743941 

 At row:19, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:19, column:66,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:66,the value of plot_cost is         : 60.3407939554196 

 At row:19, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:19, column:67,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:67,the value of plot_cost is         : 60.074991143802286 

 At row:19, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:19, column:68,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:68,the value of plot_cost is         : 59.80999639258748 

 At row:19, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:19, column:69,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:69,the value of plot_cost is         : 59.5458097017752 

 At row:19, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:19, column:70,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:70,the value of plot_cost is         : 59.28243107136544 

 At row:19, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:19, column:71,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:71,the value of plot_cost is         : 59.01986050135819 

 At row:19, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:19, column:72,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:72,the value of plot_cost is         : 58.758097991753445 

 At row:19, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:19, column:73,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:73,the value of plot_cost is         : 58.497143542551235 

 At row:19, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:19, column:74,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:74,the value of plot_cost is         : 58.23699715375153 

 At row:19, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:19, column:75,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:75,the value of plot_cost is         : 57.97765882535433 

 At row:19, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:19, column:76,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:76,the value of plot_cost is         : 57.71912855735965 

 At row:19, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:19, column:77,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:77,the value of plot_cost is         : 57.4614063497675 

 At row:19, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:19, column:78,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:78,the value of plot_cost is         : 57.20449220257785 

 At row:19, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:19, column:79,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:79,the value of plot_cost is         : 56.94838611579072 

 At row:19, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:19, column:80,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:80,the value of plot_cost is         : 56.69308808940611 

 At row:19, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:19, column:81,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:81,the value of plot_cost is         : 56.438598123424 

 At row:19, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:19, column:82,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:82,the value of plot_cost is         : 56.18491621784442 

 At row:19, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:19, column:83,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:83,the value of plot_cost is         : 55.93204237266736 

 At row:19, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:19, column:84,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:84,the value of plot_cost is         : 55.6799765878928 

 At row:19, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:19, column:85,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:85,the value of plot_cost is         : 55.42871886352075 

 At row:19, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:19, column:86,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:86,the value of plot_cost is         : 55.17826919955124 

 At row:19, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:19, column:87,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:87,the value of plot_cost is         : 54.92862759598423 

 At row:19, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:19, column:88,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:88,the value of plot_cost is         : 54.67979405281972 

 At row:19, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:19, column:89,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:89,the value of plot_cost is         : 54.43176857005775 

 At row:19, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:19, column:90,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:90,the value of plot_cost is         : 54.18455114769828 

 At row:19, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:19, column:91,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:91,the value of plot_cost is         : 53.93814178574134 

 At row:19, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:19, column:92,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:92,the value of plot_cost is         : 53.69254048418691 

 At row:19, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:19, column:93,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:93,the value of plot_cost is         : 53.447747243034975 

 At row:19, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:19, column:94,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:94,the value of plot_cost is         : 53.20376206228559 

 At row:19, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:19, column:95,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:95,the value of plot_cost is         : 52.96058494193869 

 At row:19, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:19, column:96,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:96,the value of plot_cost is         : 52.71821588199432 

 At row:19, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:19, column:97,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:97,the value of plot_cost is         : 52.476654882452465 

 At row:19, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:19, column:98,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:98,the value of plot_cost is         : 52.2359019433131 

 At row:19, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:19, column:99,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:99,the value of plot_cost is         : 51.99595706457628 

 At row:19, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:19, column:100,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:100,the value of plot_cost is         : 51.75682024624197 

 At row:19, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:19, column:101,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:101,the value of plot_cost is         : 51.518491488310175 

 At row:19, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:19, column:102,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:102,the value of plot_cost is         : 51.28097079078089 

 At row:19, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:19, column:103,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:103,the value of plot_cost is         : 51.04425815365412 

 At row:19, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:19, column:104,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:104,the value of plot_cost is         : 50.80835357692987 

 At row:19, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:19, column:105,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:105,the value of plot_cost is         : 50.573257060608135 

 At row:19, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:19, column:106,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:106,the value of plot_cost is         : 50.338968604688915 

 At row:19, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:19, column:107,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:107,the value of plot_cost is         : 50.1054882091722 

 At row:19, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:19, column:108,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:108,the value of plot_cost is         : 49.872815874058006 

 At row:19, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:19, column:109,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:109,the value of plot_cost is         : 49.64095159934632 

 At row:19, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:19, column:110,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:110,the value of plot_cost is         : 49.40989538503717 

 At row:19, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:19, column:111,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:111,the value of plot_cost is         : 49.17964723113053 

 At row:19, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:19, column:112,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:112,the value of plot_cost is         : 48.950207137626386 

 At row:19, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:19, column:113,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:113,the value of plot_cost is         : 48.721575104524774 

 At row:19, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:19, column:114,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:114,the value of plot_cost is         : 48.493751131825675 

 At row:19, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:19, column:115,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:115,the value of plot_cost is         : 48.266735219529075 

 At row:19, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:19, column:116,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:116,the value of plot_cost is         : 48.040527367635015 

 At row:19, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:19, column:117,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:117,the value of plot_cost is         : 47.81512757614346 

 At row:19, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:19, column:118,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:118,the value of plot_cost is         : 47.590535845054404 

 At row:19, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:19, column:119,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:119,the value of plot_cost is         : 47.36675217436789 

 At row:19, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:19, column:120,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:120,the value of plot_cost is         : 47.14377656408388 

 At row:19, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:19, column:121,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:121,the value of plot_cost is         : 46.92160901420238 

 At row:19, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:19, column:122,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:122,the value of plot_cost is         : 46.70024952472339 

 At row:19, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:19, column:123,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:123,the value of plot_cost is         : 46.479698095646924 

 At row:19, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:19, column:124,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:124,the value of plot_cost is         : 46.25995472697298 

 At row:19, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:19, column:125,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:125,the value of plot_cost is         : 46.041019418701545 

 At row:19, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:19, column:126,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:126,the value of plot_cost is         : 45.82289217083262 

 At row:19, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:19, column:127,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:127,the value of plot_cost is         : 45.605572983366216 

 At row:19, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:19, column:128,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:128,the value of plot_cost is         : 45.38906185630232 

 At row:19, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:19, column:129,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:129,the value of plot_cost is         : 45.17335878964095 

 At row:19, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:19, column:130,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:130,the value of plot_cost is         : 44.958463783382086 

 At row:19, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:19, column:131,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:131,the value of plot_cost is         : 44.74437683752575 

 At row:19, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:19, column:132,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:132,the value of plot_cost is         : 44.53109795207191 

 At row:19, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:19, column:133,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:133,the value of plot_cost is         : 44.3186271270206 

 At row:19, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:19, column:134,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:134,the value of plot_cost is         : 44.106964362371805 

 At row:19, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:19, column:135,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:135,the value of plot_cost is         : 43.89610965812551 

 At row:19, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:19, column:136,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:136,the value of plot_cost is         : 43.68606301428175 

 At row:19, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:19, column:137,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:137,the value of plot_cost is         : 43.47682443084049 

 At row:19, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:19, column:138,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:138,the value of plot_cost is         : 43.26839390780174 

 At row:19, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:19, column:139,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:139,the value of plot_cost is         : 43.06077144516552 

 At row:19, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:19, column:140,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:140,the value of plot_cost is         : 42.85395704293182 

 At row:19, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:19, column:141,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:141,the value of plot_cost is         : 42.647950701100626 

 At row:19, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:19, column:142,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:142,the value of plot_cost is         : 42.44275241967194 

 At row:19, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:19, column:143,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:143,the value of plot_cost is         : 42.238362198645774 

 At row:19, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:19, column:144,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:144,the value of plot_cost is         : 42.03478003802212 

 At row:19, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:19, column:145,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:145,the value of plot_cost is         : 41.83200593780099 

 At row:19, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:19, column:146,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:146,the value of plot_cost is         : 41.63003989798238 

 At row:19, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:19, column:147,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:147,the value of plot_cost is         : 41.428881918566276 

 At row:19, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:19, column:148,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:148,the value of plot_cost is         : 41.22853199955267 

 At row:19, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:19, column:149,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:149,the value of plot_cost is         : 41.0289901409416 

 At row:19, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:19, column:150,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:150,the value of plot_cost is         : 40.830256342733044 

 At row:19, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:19, column:151,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:151,the value of plot_cost is         : 40.632330604927 

 At row:19, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:19, column:152,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:152,the value of plot_cost is         : 40.43521292752347 

 At row:19, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:19, column:153,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:153,the value of plot_cost is         : 40.23890331052246 

 At row:19, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:19, column:154,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:154,the value of plot_cost is         : 40.04340175392396 

 At row:19, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:19, column:155,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:155,the value of plot_cost is         : 39.84870825772797 

 At row:19, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:19, column:156,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:156,the value of plot_cost is         : 39.65482282193451 

 At row:19, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:19, column:157,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:157,the value of plot_cost is         : 39.46174544654356 

 At row:19, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:19, column:158,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:158,the value of plot_cost is         : 39.269476131555116 

 At row:19, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:19, column:159,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:159,the value of plot_cost is         : 39.07801487696919 

 At row:19, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:19, column:160,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:160,the value of plot_cost is         : 38.88736168278579 

 At row:19, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:19, column:161,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:161,the value of plot_cost is         : 38.69751654900489 

 At row:19, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:19, column:162,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:162,the value of plot_cost is         : 38.50847947562651 

 At row:19, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:19, column:163,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:163,the value of plot_cost is         : 38.32025046265065 

 At row:19, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:19, column:164,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:164,the value of plot_cost is         : 38.1328295100773 

 At row:19, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:19, column:165,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:165,the value of plot_cost is         : 37.94621661790648 

 At row:19, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:19, column:166,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:166,the value of plot_cost is         : 37.76041178613816 

 At row:19, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:19, column:167,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:167,the value of plot_cost is         : 37.575415014772354 

 At row:19, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:19, column:168,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:168,the value of plot_cost is         : 37.39122630380906 

 At row:19, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:19, column:169,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:169,the value of plot_cost is         : 37.20784565324829 

 At row:19, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:19, column:170,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:170,the value of plot_cost is         : 37.02527306309003 

 At row:19, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:19, column:171,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:171,the value of plot_cost is         : 36.84350853333429 

 At row:19, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:19, column:172,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:172,the value of plot_cost is         : 36.66255206398106 

 At row:19, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:19, column:173,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:173,the value of plot_cost is         : 36.48240365503035 

 At row:19, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:19, column:174,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:174,the value of plot_cost is         : 36.30306330648216 

 At row:19, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:19, column:175,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:175,the value of plot_cost is         : 36.12453101833648 

 At row:19, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:19, column:176,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:176,the value of plot_cost is         : 35.946806790593314 

 At row:19, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:19, column:177,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:177,the value of plot_cost is         : 35.769890623252664 

 At row:19, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:19, column:178,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:178,the value of plot_cost is         : 35.59378251631452 

 At row:19, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:19, column:179,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:179,the value of plot_cost is         : 35.4184824697789 

 At row:19, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:19, column:180,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:180,the value of plot_cost is         : 35.243990483645796 

 At row:19, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:19, column:181,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:181,the value of plot_cost is         : 35.070306557915195 

 At row:19, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:19, column:182,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:182,the value of plot_cost is         : 34.89743069258713 

 At row:19, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:19, column:183,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:183,the value of plot_cost is         : 34.72536288766157 

 At row:19, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:19, column:184,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:184,the value of plot_cost is         : 34.55410314313852 

 At row:19, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:19, column:185,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:185,the value of plot_cost is         : 34.38365145901799 

 At row:19, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:19, column:186,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:186,the value of plot_cost is         : 34.214007835299974 

 At row:19, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:19, column:187,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:187,the value of plot_cost is         : 34.04517227198448 

 At row:19, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:19, column:188,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:188,the value of plot_cost is         : 33.877144769071485 

 At row:19, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:19, column:189,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:189,the value of plot_cost is         : 33.70992532656101 

 At row:19, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:19, column:190,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:190,the value of plot_cost is         : 33.54351394445306 

 At row:19, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:19, column:191,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:191,the value of plot_cost is         : 33.37791062274761 

 At row:19, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:19, column:192,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:192,the value of plot_cost is         : 33.21311536144469 

 At row:19, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:19, column:193,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:193,the value of plot_cost is         : 33.049128160544285 

 At row:19, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:19, column:194,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:194,the value of plot_cost is         : 32.88594902004639 

 At row:19, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:19, column:195,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:195,the value of plot_cost is         : 32.72357793995101 

 At row:19, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:19, column:196,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:196,the value of plot_cost is         : 32.56201492025815 

 At row:19, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:19, column:197,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:197,the value of plot_cost is         : 32.401259960967785 

 At row:19, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:19, column:198,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:198,the value of plot_cost is         : 32.24131306207995 

 At row:19, column:199,the value of plot_t0 is           : 3.0
 At row:19, column:199,the value of plot_t1 is           : -0.6180904522613065
 At row:19, column:199,the value of plot_cost is         : 32.08217422359464 

 At row:20, column:0,the value of plot_t0 is           : -1.0
 At row:20, column:0,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:0,the value of plot_cost is         : 78.27820361679179 

 At row:20, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:20, column:1,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:1,the value of plot_cost is         : 77.96174696165681 

 At row:20, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:20, column:2,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:2,the value of plot_cost is         : 77.64609836692436 

 At row:20, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:20, column:3,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:3,the value of plot_cost is         : 77.33125783259442 

 At row:20, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:20, column:4,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:4,the value of plot_cost is         : 77.01722535866698 

 At row:20, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:20, column:5,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:5,the value of plot_cost is         : 76.70400094514208 

 At row:20, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:20, column:6,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:6,the value of plot_cost is         : 76.39158459201968 

 At row:20, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:20, column:7,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:7,the value of plot_cost is         : 76.0799762992998 

 At row:20, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:20, column:8,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:8,the value of plot_cost is         : 75.76917606698242 

 At row:20, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:20, column:9,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:9,the value of plot_cost is         : 75.45918389506758 

 At row:20, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:20, column:10,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:10,the value of plot_cost is         : 75.14999978355526 

 At row:20, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:20, column:11,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:11,the value of plot_cost is         : 74.84162373244543 

 At row:20, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:20, column:12,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:12,the value of plot_cost is         : 74.53405574173813 

 At row:20, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:20, column:13,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:13,the value of plot_cost is         : 74.22729581143334 

 At row:20, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:20, column:14,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:14,the value of plot_cost is         : 73.92134394153106 

 At row:20, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:20, column:15,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:15,the value of plot_cost is         : 73.6162001320313 

 At row:20, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:20, column:16,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:16,the value of plot_cost is         : 73.31186438293405 

 At row:20, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:20, column:17,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:17,the value of plot_cost is         : 73.00833669423933 

 At row:20, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:20, column:18,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:18,the value of plot_cost is         : 72.7056170659471 

 At row:20, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:20, column:19,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:19,the value of plot_cost is         : 72.40370549805742 

 At row:20, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:20, column:20,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:20,the value of plot_cost is         : 72.10260199057022 

 At row:20, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:20, column:21,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:21,the value of plot_cost is         : 71.80230654348556 

 At row:20, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:20, column:22,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:22,the value of plot_cost is         : 71.5028191568034 

 At row:20, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:20, column:23,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:23,the value of plot_cost is         : 71.20413983052376 

 At row:20, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:20, column:24,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:24,the value of plot_cost is         : 70.90626856464662 

 At row:20, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:20, column:25,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:25,the value of plot_cost is         : 70.60920535917201 

 At row:20, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:20, column:26,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:26,the value of plot_cost is         : 70.31295021409994 

 At row:20, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:20, column:27,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:27,the value of plot_cost is         : 70.01750312943035 

 At row:20, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:20, column:28,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:28,the value of plot_cost is         : 69.72286410516328 

 At row:20, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:20, column:29,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:29,the value of plot_cost is         : 69.42903314129875 

 At row:20, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:20, column:30,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:30,the value of plot_cost is         : 69.1360102378367 

 At row:20, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:20, column:31,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:31,the value of plot_cost is         : 68.84379539477719 

 At row:20, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:20, column:32,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:32,the value of plot_cost is         : 68.55238861212018 

 At row:20, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:20, column:33,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:33,the value of plot_cost is         : 68.2617898898657 

 At row:20, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:20, column:34,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:34,the value of plot_cost is         : 67.97199922801371 

 At row:20, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:20, column:35,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:35,the value of plot_cost is         : 67.68301662656427 

 At row:20, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:20, column:36,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:36,the value of plot_cost is         : 67.39484208551733 

 At row:20, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:20, column:37,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:37,the value of plot_cost is         : 67.10747560487289 

 At row:20, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:20, column:38,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:38,the value of plot_cost is         : 66.82091718463097 

 At row:20, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:20, column:39,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:39,the value of plot_cost is         : 66.53516682479159 

 At row:20, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:20, column:40,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:40,the value of plot_cost is         : 66.2502245253547 

 At row:20, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:20, column:41,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:41,the value of plot_cost is         : 65.96609028632032 

 At row:20, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:20, column:42,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:42,the value of plot_cost is         : 65.68276410768847 

 At row:20, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:20, column:43,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:43,the value of plot_cost is         : 65.40024598945914 

 At row:20, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:20, column:44,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:44,the value of plot_cost is         : 65.11853593163232 

 At row:20, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:20, column:45,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:45,the value of plot_cost is         : 64.837633934208 

 At row:20, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:20, column:46,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:46,the value of plot_cost is         : 64.55753999718623 

 At row:20, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:20, column:47,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:47,the value of plot_cost is         : 64.27825412056693 

 At row:20, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:20, column:48,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:48,the value of plot_cost is         : 63.99977630435018 

 At row:20, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:20, column:49,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:49,the value of plot_cost is         : 63.722106548535926 

 At row:20, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:20, column:50,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:50,the value of plot_cost is         : 63.445244853124194 

 At row:20, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:20, column:51,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:51,the value of plot_cost is         : 63.16919121811499 

 At row:20, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:20, column:52,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:52,the value of plot_cost is         : 62.893945643508275 

 At row:20, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:20, column:53,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:53,the value of plot_cost is         : 62.619508129304094 

 At row:20, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:20, column:54,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:54,the value of plot_cost is         : 62.34587867550242 

 At row:20, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:20, column:55,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:55,the value of plot_cost is         : 62.073057282103264 

 At row:20, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:20, column:56,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:56,the value of plot_cost is         : 61.80104394910662 

 At row:20, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:20, column:57,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:57,the value of plot_cost is         : 61.52983867651248 

 At row:20, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:20, column:58,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:58,the value of plot_cost is         : 61.25944146432088 

 At row:20, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:20, column:59,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:59,the value of plot_cost is         : 60.98985231253178 

 At row:20, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:20, column:60,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:60,the value of plot_cost is         : 60.7210712211452 

 At row:20, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:20, column:61,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:61,the value of plot_cost is         : 60.45309819016115 

 At row:20, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:20, column:62,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:62,the value of plot_cost is         : 60.18593321957959 

 At row:20, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:20, column:63,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:63,the value of plot_cost is         : 59.919576309400554 

 At row:20, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:20, column:64,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:64,the value of plot_cost is         : 59.65402745962403 

 At row:20, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:20, column:65,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:65,the value of plot_cost is         : 59.38928667025002 

 At row:20, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:20, column:66,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:66,the value of plot_cost is         : 59.12535394127853 

 At row:20, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:20, column:67,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:67,the value of plot_cost is         : 58.862229272709556 

 At row:20, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:20, column:68,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:68,the value of plot_cost is         : 58.599912664543105 

 At row:20, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:20, column:69,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:69,the value of plot_cost is         : 58.33840411677915 

 At row:20, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:20, column:70,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:70,the value of plot_cost is         : 58.07770362941771 

 At row:20, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:20, column:71,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:71,the value of plot_cost is         : 57.81781120245881 

 At row:20, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:20, column:72,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:72,the value of plot_cost is         : 57.55872683590241 

 At row:20, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:20, column:73,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:73,the value of plot_cost is         : 57.300450529748524 

 At row:20, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:20, column:74,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:74,the value of plot_cost is         : 57.04298228399715 

 At row:20, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:20, column:75,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:75,the value of plot_cost is         : 56.7863220986483 

 At row:20, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:20, column:76,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:76,the value of plot_cost is         : 56.53046997370196 

 At row:20, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:20, column:77,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:77,the value of plot_cost is         : 56.27542590915813 

 At row:20, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:20, column:78,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:78,the value of plot_cost is         : 56.02118990501682 

 At row:20, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:20, column:79,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:79,the value of plot_cost is         : 55.767761961278026 

 At row:20, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:20, column:80,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:80,the value of plot_cost is         : 55.515142077941746 

 At row:20, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:20, column:81,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:81,the value of plot_cost is         : 55.263330255007986 

 At row:20, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:20, column:82,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:82,the value of plot_cost is         : 55.012326492476745 

 At row:20, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:20, column:83,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:83,the value of plot_cost is         : 54.76213079034801 

 At row:20, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:20, column:84,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:84,the value of plot_cost is         : 54.512743148621794 

 At row:20, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:20, column:85,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:85,the value of plot_cost is         : 54.264163567298084 

 At row:20, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:20, column:86,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:86,the value of plot_cost is         : 54.0163920463769 

 At row:20, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:20, column:87,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:87,the value of plot_cost is         : 53.769428585858215 

 At row:20, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:20, column:88,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:88,the value of plot_cost is         : 53.523273185742056 

 At row:20, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:20, column:89,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:89,the value of plot_cost is         : 53.27792584602842 

 At row:20, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:20, column:90,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:90,the value of plot_cost is         : 53.03338656671728 

 At row:20, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:20, column:91,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:91,the value of plot_cost is         : 52.789655347808676 

 At row:20, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:20, column:92,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:92,the value of plot_cost is         : 52.546732189302574 

 At row:20, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:20, column:93,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:93,the value of plot_cost is         : 52.30461709119899 

 At row:20, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:20, column:94,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:94,the value of plot_cost is         : 52.06331005349792 

 At row:20, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:20, column:95,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:95,the value of plot_cost is         : 51.82281107619937 

 At row:20, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:20, column:96,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:96,the value of plot_cost is         : 51.583120159303334 

 At row:20, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:20, column:97,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:97,the value of plot_cost is         : 51.34423730280981 

 At row:20, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:20, column:98,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:98,the value of plot_cost is         : 51.106162506718796 

 At row:20, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:20, column:99,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:99,the value of plot_cost is         : 50.86889577103031 

 At row:20, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:20, column:100,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:100,the value of plot_cost is         : 50.632437095744336 

 At row:20, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:20, column:101,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:101,the value of plot_cost is         : 50.39678648086087 

 At row:20, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:20, column:102,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:102,the value of plot_cost is         : 50.16194392637992 

 At row:20, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:20, column:103,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:103,the value of plot_cost is         : 49.92790943230149 

 At row:20, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:20, column:104,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:104,the value of plot_cost is         : 49.69468299862558 

 At row:20, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:20, column:105,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:105,the value of plot_cost is         : 49.46226462535218 

 At row:20, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:20, column:106,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:106,the value of plot_cost is         : 49.230654312481285 

 At row:20, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:20, column:107,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:107,the value of plot_cost is         : 48.999852060012905 

 At row:20, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:20, column:108,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:108,the value of plot_cost is         : 48.76985786794705 

 At row:20, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:20, column:109,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:109,the value of plot_cost is         : 48.54067173628371 

 At row:20, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:20, column:110,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:110,the value of plot_cost is         : 48.312293665022885 

 At row:20, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:20, column:111,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:111,the value of plot_cost is         : 48.08472365416458 

 At row:20, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:20, column:112,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:112,the value of plot_cost is         : 47.85796170370878 

 At row:20, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:20, column:113,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:113,the value of plot_cost is         : 47.6320078136555 

 At row:20, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:20, column:114,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:114,the value of plot_cost is         : 47.40686198400473 

 At row:20, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:20, column:115,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:115,the value of plot_cost is         : 47.182524214756484 

 At row:20, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:20, column:116,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:116,the value of plot_cost is         : 46.958994505910745 

 At row:20, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:20, column:117,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:117,the value of plot_cost is         : 46.73627285746751 

 At row:20, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:20, column:118,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:118,the value of plot_cost is         : 46.51435926942681 

 At row:20, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:20, column:119,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:119,the value of plot_cost is         : 46.293253741788625 

 At row:20, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:20, column:120,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:120,the value of plot_cost is         : 46.072956274552936 

 At row:20, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:20, column:121,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:121,the value of plot_cost is         : 45.85346686771979 

 At row:20, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:20, column:122,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:122,the value of plot_cost is         : 45.634785521289146 

 At row:20, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:20, column:123,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:123,the value of plot_cost is         : 45.41691223526101 

 At row:20, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:20, column:124,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:124,the value of plot_cost is         : 45.1998470096354 

 At row:20, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:20, column:125,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:125,the value of plot_cost is         : 44.9835898444123 

 At row:20, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:20, column:126,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:126,the value of plot_cost is         : 44.76814073959172 

 At row:20, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:20, column:127,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:127,the value of plot_cost is         : 44.553499695173635 

 At row:20, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:20, column:128,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:128,the value of plot_cost is         : 44.33966671115809 

 At row:20, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:20, column:129,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:129,the value of plot_cost is         : 44.12664178754505 

 At row:20, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:20, column:130,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:130,the value of plot_cost is         : 43.91442492433452 

 At row:20, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:20, column:131,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:131,the value of plot_cost is         : 43.70301612152651 

 At row:20, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:20, column:132,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:132,the value of plot_cost is         : 43.49241537912101 

 At row:20, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:20, column:133,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:133,the value of plot_cost is         : 43.282622697118036 

 At row:20, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:20, column:134,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:134,the value of plot_cost is         : 43.07363807551758 

 At row:20, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:20, column:135,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:135,the value of plot_cost is         : 42.86546151431963 

 At row:20, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:20, column:136,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:136,the value of plot_cost is         : 42.658093013524194 

 At row:20, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:20, column:137,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:137,the value of plot_cost is         : 42.45153257313127 

 At row:20, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:20, column:138,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:138,the value of plot_cost is         : 42.24578019314086 

 At row:20, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:20, column:139,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:139,the value of plot_cost is         : 42.04083587355298 

 At row:20, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:20, column:140,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:140,the value of plot_cost is         : 41.8366996143676 

 At row:20, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:20, column:141,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:141,the value of plot_cost is         : 41.63337141558475 

 At row:20, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:20, column:142,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:142,the value of plot_cost is         : 41.430851277204404 

 At row:20, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:20, column:143,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:143,the value of plot_cost is         : 41.229139199226566 

 At row:20, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:20, column:144,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:144,the value of plot_cost is         : 41.02823518165126 

 At row:20, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:20, column:145,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:145,the value of plot_cost is         : 40.828139224478456 

 At row:20, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:20, column:146,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:146,the value of plot_cost is         : 40.628851327708176 

 At row:20, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:20, column:147,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:147,the value of plot_cost is         : 40.4303714913404 

 At row:20, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:20, column:148,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:148,the value of plot_cost is         : 40.23269971537515 

 At row:20, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:20, column:149,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:149,the value of plot_cost is         : 40.03583599981241 

 At row:20, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:20, column:150,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:150,the value of plot_cost is         : 39.83978034465219 

 At row:20, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:20, column:151,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:151,the value of plot_cost is         : 39.64453274989447 

 At row:20, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:20, column:152,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:152,the value of plot_cost is         : 39.45009321553929 

 At row:20, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:20, column:153,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:153,the value of plot_cost is         : 39.25646174158661 

 At row:20, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:20, column:154,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:154,the value of plot_cost is         : 39.063638328036454 

 At row:20, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:20, column:155,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:155,the value of plot_cost is         : 38.8716229748888 

 At row:20, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:20, column:156,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:156,the value of plot_cost is         : 38.68041568214366 

 At row:20, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:20, column:157,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:157,the value of plot_cost is         : 38.49001644980105 

 At row:20, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:20, column:158,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:158,the value of plot_cost is         : 38.300425277860946 

 At row:20, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:20, column:159,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:159,the value of plot_cost is         : 38.111642166323364 

 At row:20, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:20, column:160,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:160,the value of plot_cost is         : 37.92366711518828 

 At row:20, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:20, column:161,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:161,the value of plot_cost is         : 37.73650012445572 

 At row:20, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:20, column:162,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:162,the value of plot_cost is         : 37.550141194125686 

 At row:20, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:20, column:163,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:163,the value of plot_cost is         : 37.36459032419816 

 At row:20, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:20, column:164,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:164,the value of plot_cost is         : 37.179847514673156 

 At row:20, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:20, column:165,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:165,the value of plot_cost is         : 36.995912765550656 

 At row:20, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:20, column:166,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:166,the value of plot_cost is         : 36.81278607683066 

 At row:20, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:20, column:167,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:167,the value of plot_cost is         : 36.630467448513194 

 At row:20, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:20, column:168,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:168,the value of plot_cost is         : 36.448956880598246 

 At row:20, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:20, column:169,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:169,the value of plot_cost is         : 36.26825437308582 

 At row:20, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:20, column:170,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:170,the value of plot_cost is         : 36.088359925975894 

 At row:20, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:20, column:171,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:171,the value of plot_cost is         : 35.90927353926848 

 At row:20, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:20, column:172,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:172,the value of plot_cost is         : 35.7309952129636 

 At row:20, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:20, column:173,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:173,the value of plot_cost is         : 35.55352494706122 

 At row:20, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:20, column:174,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:174,the value of plot_cost is         : 35.37686274156136 

 At row:20, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:20, column:175,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:175,the value of plot_cost is         : 35.20100859646402 

 At row:20, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:20, column:176,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:176,the value of plot_cost is         : 35.02596251176917 

 At row:20, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:20, column:177,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:177,the value of plot_cost is         : 34.851724487476865 

 At row:20, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:20, column:178,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:178,the value of plot_cost is         : 34.67829452358706 

 At row:20, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:20, column:179,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:179,the value of plot_cost is         : 34.50567262009978 

 At row:20, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:20, column:180,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:180,the value of plot_cost is         : 34.33385877701501 

 At row:20, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:20, column:181,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:181,the value of plot_cost is         : 34.16285299433275 

 At row:20, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:20, column:182,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:182,the value of plot_cost is         : 33.992655272053014 

 At row:20, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:20, column:183,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:183,the value of plot_cost is         : 33.82326561017579 

 At row:20, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:20, column:184,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:184,the value of plot_cost is         : 33.654684008701075 

 At row:20, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:20, column:185,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:185,the value of plot_cost is         : 33.48691046762889 

 At row:20, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:20, column:186,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:186,the value of plot_cost is         : 33.31994498695919 

 At row:20, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:20, column:187,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:187,the value of plot_cost is         : 33.15378756669204 

 At row:20, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:20, column:188,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:188,the value of plot_cost is         : 32.98843820682739 

 At row:20, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:20, column:189,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:189,the value of plot_cost is         : 32.82389690736525 

 At row:20, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:20, column:190,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:190,the value of plot_cost is         : 32.660163668305636 

 At row:20, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:20, column:191,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:191,the value of plot_cost is         : 32.49723848964853 

 At row:20, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:20, column:192,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:192,the value of plot_cost is         : 32.33512137139394 

 At row:20, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:20, column:193,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:193,the value of plot_cost is         : 32.173812313541866 

 At row:20, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:20, column:194,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:194,the value of plot_cost is         : 32.013311316092306 

 At row:20, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:20, column:195,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:195,the value of plot_cost is         : 31.853618379045265 

 At row:20, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:20, column:196,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:196,the value of plot_cost is         : 31.694733502400727 

 At row:20, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:20, column:197,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:197,the value of plot_cost is         : 31.536656686158715 

 At row:20, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:20, column:198,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:198,the value of plot_cost is         : 31.379387930319222 

 At row:20, column:199,the value of plot_t0 is           : 3.0
 At row:20, column:199,the value of plot_t1 is           : -0.5979899497487438
 At row:20, column:199,the value of plot_cost is         : 31.22292723488224 

 At row:21, column:0,the value of plot_t0 is           : -1.0
 At row:21, column:0,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:0,the value of plot_cost is         : 76.89858881629974 

 At row:21, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:21, column:1,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:1,the value of plot_cost is         : 76.58481030421308 

 At row:21, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:21, column:2,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:2,the value of plot_cost is         : 76.27183985252897 

 At row:21, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:21, column:3,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:3,the value of plot_cost is         : 75.95967746124737 

 At row:21, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:21, column:4,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:4,the value of plot_cost is         : 75.64832313036828 

 At row:21, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:21, column:5,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:5,the value of plot_cost is         : 75.33777685989172 

 At row:21, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:21, column:6,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:6,the value of plot_cost is         : 75.02803864981765 

 At row:21, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:21, column:7,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:7,the value of plot_cost is         : 74.71910850014609 

 At row:21, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:21, column:8,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:8,the value of plot_cost is         : 74.41098641087706 

 At row:21, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:21, column:9,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:9,the value of plot_cost is         : 74.10367238201054 

 At row:21, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:21, column:10,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:10,the value of plot_cost is         : 73.79716641354655 

 At row:21, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:21, column:11,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:11,the value of plot_cost is         : 73.49146850548505 

 At row:21, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:21, column:12,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:12,the value of plot_cost is         : 73.18657865782609 

 At row:21, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:21, column:13,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:13,the value of plot_cost is         : 72.88249687056964 

 At row:21, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:21, column:14,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:14,the value of plot_cost is         : 72.57922314371571 

 At row:21, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:21, column:15,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:15,the value of plot_cost is         : 72.27675747726428 

 At row:21, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:21, column:16,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:16,the value of plot_cost is         : 71.97509987121536 

 At row:21, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:21, column:17,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:17,the value of plot_cost is         : 71.67425032556896 

 At row:21, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:21, column:18,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:18,the value of plot_cost is         : 71.3742088403251 

 At row:21, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:21, column:19,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:19,the value of plot_cost is         : 71.07497541548372 

 At row:21, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:21, column:20,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:20,the value of plot_cost is         : 70.77655005104488 

 At row:21, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:21, column:21,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:21,the value of plot_cost is         : 70.47893274700853 

 At row:21, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:21, column:22,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:22,the value of plot_cost is         : 70.18212350337473 

 At row:21, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:21, column:23,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:23,the value of plot_cost is         : 69.88612232014343 

 At row:21, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:21, column:24,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:24,the value of plot_cost is         : 69.59092919731464 

 At row:21, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:21, column:25,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:25,the value of plot_cost is         : 69.29654413488836 

 At row:21, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:21, column:26,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:26,the value of plot_cost is         : 69.0029671328646 

 At row:21, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:21, column:27,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:27,the value of plot_cost is         : 68.71019819124335 

 At row:21, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:21, column:28,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:28,the value of plot_cost is         : 68.41823731002464 

 At row:21, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:21, column:29,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:29,the value of plot_cost is         : 68.12708448920841 

 At row:21, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:21, column:30,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:30,the value of plot_cost is         : 67.83673972879473 

 At row:21, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:21, column:31,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:31,the value of plot_cost is         : 67.54720302878353 

 At row:21, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:21, column:32,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:32,the value of plot_cost is         : 67.25847438917486 

 At row:21, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:21, column:33,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:33,the value of plot_cost is         : 66.97055380996872 

 At row:21, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:21, column:34,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:34,the value of plot_cost is         : 66.68344129116508 

 At row:21, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:21, column:35,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:35,the value of plot_cost is         : 66.39713683276396 

 At row:21, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:21, column:36,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:36,the value of plot_cost is         : 66.11164043476533 

 At row:21, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:21, column:37,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:37,the value of plot_cost is         : 65.82695209716924 

 At row:21, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:21, column:38,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:38,the value of plot_cost is         : 65.54307181997568 

 At row:21, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:21, column:39,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:39,the value of plot_cost is         : 65.25999960318461 

 At row:21, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:21, column:40,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:40,the value of plot_cost is         : 64.97773544679606 

 At row:21, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:21, column:41,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:41,the value of plot_cost is         : 64.69627935081003 

 At row:21, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:21, column:42,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:42,the value of plot_cost is         : 64.41563131522652 

 At row:21, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:21, column:43,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:43,the value of plot_cost is         : 64.13579134004551 

 At row:21, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:21, column:44,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:44,the value of plot_cost is         : 63.85675942526703 

 At row:21, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:21, column:45,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:45,the value of plot_cost is         : 63.57853557089106 

 At row:21, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:21, column:46,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:46,the value of plot_cost is         : 63.301119776917595 

 At row:21, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:21, column:47,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:47,the value of plot_cost is         : 63.024512043346654 

 At row:21, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:21, column:48,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:48,the value of plot_cost is         : 62.74871237017824 

 At row:21, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:21, column:49,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:49,the value of plot_cost is         : 62.47372075741233 

 At row:21, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:21, column:50,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:50,the value of plot_cost is         : 62.19953720504892 

 At row:21, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:21, column:51,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:51,the value of plot_cost is         : 61.92616171308803 

 At row:21, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:21, column:52,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:52,the value of plot_cost is         : 61.65359428152967 

 At row:21, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:21, column:53,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:53,the value of plot_cost is         : 61.38183491037383 

 At row:21, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:21, column:54,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:54,the value of plot_cost is         : 61.11088359962049 

 At row:21, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:21, column:55,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:55,the value of plot_cost is         : 60.84074034926967 

 At row:21, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:21, column:56,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:56,the value of plot_cost is         : 60.571405159321365 

 At row:21, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:21, column:57,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:57,the value of plot_cost is         : 60.302878029775584 

 At row:21, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:21, column:58,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:58,the value of plot_cost is         : 60.0351589606323 

 At row:21, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:21, column:59,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:59,the value of plot_cost is         : 59.76824795189154 

 At row:21, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:21, column:60,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:60,the value of plot_cost is         : 59.50214500355329 

 At row:21, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:21, column:61,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:61,the value of plot_cost is         : 59.23685011561755 

 At row:21, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:21, column:62,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:62,the value of plot_cost is         : 58.97236328808435 

 At row:21, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:21, column:63,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:63,the value of plot_cost is         : 58.70868452095365 

 At row:21, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:21, column:64,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:64,the value of plot_cost is         : 58.44581381422547 

 At row:21, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:21, column:65,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:65,the value of plot_cost is         : 58.1837511678998 

 At row:21, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:21, column:66,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:66,the value of plot_cost is         : 57.92249658197663 

 At row:21, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:21, column:67,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:67,the value of plot_cost is         : 57.662050056455996 

 At row:21, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:21, column:68,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:68,the value of plot_cost is         : 57.402411591337874 

 At row:21, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:21, column:69,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:69,the value of plot_cost is         : 57.14358118662226 

 At row:21, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:21, column:70,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:70,the value of plot_cost is         : 56.88555884230916 

 At row:21, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:21, column:71,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:71,the value of plot_cost is         : 56.62834455839858 

 At row:21, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:21, column:72,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:72,the value of plot_cost is         : 56.37193833489053 

 At row:21, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:21, column:73,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:73,the value of plot_cost is         : 56.116340171784984 

 At row:21, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:21, column:74,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:74,the value of plot_cost is         : 55.86155006908195 

 At row:21, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:21, column:75,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:75,the value of plot_cost is         : 55.60756802678142 

 At row:21, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:21, column:76,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:76,the value of plot_cost is         : 55.35439404488342 

 At row:21, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:21, column:77,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:77,the value of plot_cost is         : 55.10202812338793 

 At row:21, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:21, column:78,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:78,the value of plot_cost is         : 54.850470262294955 

 At row:21, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:21, column:79,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:79,the value of plot_cost is         : 54.5997204616045 

 At row:21, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:21, column:80,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:80,the value of plot_cost is         : 54.34977872131655 

 At row:21, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:21, column:81,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:81,the value of plot_cost is         : 54.10064504143112 

 At row:21, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:21, column:82,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:82,the value of plot_cost is         : 53.85231942194821 

 At row:21, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:21, column:83,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:83,the value of plot_cost is         : 53.60480186286782 

 At row:21, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:21, column:84,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:84,the value of plot_cost is         : 53.35809236418993 

 At row:21, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:21, column:85,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:85,the value of plot_cost is         : 53.11219092591457 

 At row:21, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:21, column:86,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:86,the value of plot_cost is         : 52.867097548041706 

 At row:21, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:21, column:87,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:87,the value of plot_cost is         : 52.62281223057137 

 At row:21, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:21, column:88,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:88,the value of plot_cost is         : 52.37933497350355 

 At row:21, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:21, column:89,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:89,the value of plot_cost is         : 52.13666577683824 

 At row:21, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:21, column:90,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:90,the value of plot_cost is         : 51.894804640575444 

 At row:21, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:21, column:91,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:91,the value of plot_cost is         : 51.653751564715165 

 At row:21, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:21, column:92,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:92,the value of plot_cost is         : 51.4135065492574 

 At row:21, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:21, column:93,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:93,the value of plot_cost is         : 51.17406959420216 

 At row:21, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:21, column:94,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:94,the value of plot_cost is         : 50.93544069954943 

 At row:21, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:21, column:95,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:95,the value of plot_cost is         : 50.69761986529922 

 At row:21, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:21, column:96,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:96,the value of plot_cost is         : 50.46060709145151 

 At row:21, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:21, column:97,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:97,the value of plot_cost is         : 50.22440237800632 

 At row:21, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:21, column:98,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:98,the value of plot_cost is         : 49.989005724963654 

 At row:21, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:21, column:99,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:99,the value of plot_cost is         : 49.75441713232349 

 At row:21, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:21, column:100,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:100,the value of plot_cost is         : 49.52063660008585 

 At row:21, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:21, column:101,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:101,the value of plot_cost is         : 49.28766412825072 

 At row:21, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:21, column:102,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:102,the value of plot_cost is         : 49.055499716818105 

 At row:21, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:21, column:103,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:103,the value of plot_cost is         : 48.82414336578802 

 At row:21, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:21, column:104,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:104,the value of plot_cost is         : 48.59359507516044 

 At row:21, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:21, column:105,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:105,the value of plot_cost is         : 48.36385484493537 

 At row:21, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:21, column:106,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:106,the value of plot_cost is         : 48.13492267511282 

 At row:21, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:21, column:107,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:107,the value of plot_cost is         : 47.90679856569278 

 At row:21, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:21, column:108,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:108,the value of plot_cost is         : 47.67948251667526 

 At row:21, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:21, column:109,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:109,the value of plot_cost is         : 47.452974528060246 

 At row:21, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:21, column:110,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:110,the value of plot_cost is         : 47.227274599847746 

 At row:21, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:21, column:111,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:111,the value of plot_cost is         : 47.00238273203778 

 At row:21, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:21, column:112,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:112,the value of plot_cost is         : 46.77829892463031 

 At row:21, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:21, column:113,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:113,the value of plot_cost is         : 46.55502317762537 

 At row:21, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:21, column:114,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:114,the value of plot_cost is         : 46.332555491022944 

 At row:21, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:21, column:115,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:115,the value of plot_cost is         : 46.11089586482303 

 At row:21, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:21, column:116,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:116,the value of plot_cost is         : 45.89004429902563 

 At row:21, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:21, column:117,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:117,the value of plot_cost is         : 45.67000079363075 

 At row:21, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:21, column:118,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:118,the value of plot_cost is         : 45.45076534863838 

 At row:21, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:21, column:119,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:119,the value of plot_cost is         : 45.23233796404852 

 At row:21, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:21, column:120,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:120,the value of plot_cost is         : 45.01471863986117 

 At row:21, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:21, column:121,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:121,the value of plot_cost is         : 44.79790737607636 

 At row:21, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:21, column:122,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:122,the value of plot_cost is         : 44.581904172694045 

 At row:21, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:21, column:123,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:123,the value of plot_cost is         : 44.36670902971425 

 At row:21, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:21, column:124,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:124,the value of plot_cost is         : 44.152321947136976 

 At row:21, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:21, column:125,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:125,the value of plot_cost is         : 43.9387429249622 

 At row:21, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:21, column:126,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:126,the value of plot_cost is         : 43.725971963189956 

 At row:21, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:21, column:127,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:127,the value of plot_cost is         : 43.514009061820225 

 At row:21, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:21, column:128,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:128,the value of plot_cost is         : 43.302854220853014 

 At row:21, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:21, column:129,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:129,the value of plot_cost is         : 43.0925074402883 

 At row:21, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:21, column:130,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:130,the value of plot_cost is         : 42.8829687201261 

 At row:21, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:21, column:131,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:131,the value of plot_cost is         : 42.67423806036643 

 At row:21, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:21, column:132,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:132,the value of plot_cost is         : 42.466315461009266 

 At row:21, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:21, column:133,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:133,the value of plot_cost is         : 42.25920092205464 

 At row:21, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:21, column:134,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:134,the value of plot_cost is         : 42.05289444350251 

 At row:21, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:21, column:135,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:135,the value of plot_cost is         : 41.847396025352886 

 At row:21, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:21, column:136,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:136,the value of plot_cost is         : 41.64270566760579 

 At row:21, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:21, column:137,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:137,the value of plot_cost is         : 41.43882337026121 

 At row:21, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:21, column:138,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:138,the value of plot_cost is         : 41.23574913331914 

 At row:21, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:21, column:139,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:139,the value of plot_cost is         : 41.03348295677958 

 At row:21, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:21, column:140,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:140,the value of plot_cost is         : 40.83202484064254 

 At row:21, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:21, column:141,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:141,the value of plot_cost is         : 40.631374784908026 

 At row:21, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:21, column:142,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:142,the value of plot_cost is         : 40.43153278957602 

 At row:21, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:21, column:143,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:143,the value of plot_cost is         : 40.23249885464652 

 At row:21, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:21, column:144,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:144,the value of plot_cost is         : 40.034272980119546 

 At row:21, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:21, column:145,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:145,the value of plot_cost is         : 39.83685516599508 

 At row:21, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:21, column:146,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:146,the value of plot_cost is         : 39.64024541227314 

 At row:21, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:21, column:147,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:147,the value of plot_cost is         : 39.4444437189537 

 At row:21, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:21, column:148,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:148,the value of plot_cost is         : 39.24945008603678 

 At row:21, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:21, column:149,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:149,the value of plot_cost is         : 39.05526451352238 

 At row:21, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:21, column:150,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:150,the value of plot_cost is         : 38.86188700141049 

 At row:21, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:21, column:151,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:151,the value of plot_cost is         : 38.66931754970111 

 At row:21, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:21, column:152,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:152,the value of plot_cost is         : 38.477556158394265 

 At row:21, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:21, column:153,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:153,the value of plot_cost is         : 38.28660282748992 

 At row:21, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:21, column:154,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:154,the value of plot_cost is         : 38.09645755698809 

 At row:21, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:21, column:155,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:155,the value of plot_cost is         : 37.907120346888775 

 At row:21, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:21, column:156,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:156,the value of plot_cost is         : 37.718591197191984 

 At row:21, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:21, column:157,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:157,the value of plot_cost is         : 37.5308701078977 

 At row:21, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:21, column:158,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:158,the value of plot_cost is         : 37.34395707900594 

 At row:21, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:21, column:159,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:159,the value of plot_cost is         : 37.15785211051668 

 At row:21, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:21, column:160,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:160,the value of plot_cost is         : 36.972555202429945 

 At row:21, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:21, column:161,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:161,the value of plot_cost is         : 36.78806635474572 

 At row:21, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:21, column:162,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:162,the value of plot_cost is         : 36.60438556746402 

 At row:21, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:21, column:163,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:163,the value of plot_cost is         : 36.42151284058483 

 At row:21, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:21, column:164,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:164,the value of plot_cost is         : 36.239448174108155 

 At row:21, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:21, column:165,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:165,the value of plot_cost is         : 36.05819156803399 

 At row:21, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:21, column:166,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:166,the value of plot_cost is         : 35.87774302236234 

 At row:21, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:21, column:167,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:167,the value of plot_cost is         : 35.69810253709321 

 At row:21, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:21, column:168,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:168,the value of plot_cost is         : 35.5192701122266 

 At row:21, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:21, column:169,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:169,the value of plot_cost is         : 35.34124574776249 

 At row:21, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:21, column:170,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:170,the value of plot_cost is         : 35.164029443700905 

 At row:21, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:21, column:171,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:171,the value of plot_cost is         : 34.987621200041836 

 At row:21, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:21, column:172,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:172,the value of plot_cost is         : 34.81202101678528 

 At row:21, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:21, column:173,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:173,the value of plot_cost is         : 34.63722889393125 

 At row:21, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:21, column:174,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:174,the value of plot_cost is         : 34.46324483147972 

 At row:21, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:21, column:175,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:175,the value of plot_cost is         : 34.29006882943071 

 At row:21, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:21, column:176,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:176,the value of plot_cost is         : 34.11770088778421 

 At row:21, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:21, column:177,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:177,the value of plot_cost is         : 33.94614100654024 

 At row:21, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:21, column:178,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:178,the value of plot_cost is         : 33.77538918569877 

 At row:21, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:21, column:179,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:179,the value of plot_cost is         : 33.605445425259816 

 At row:21, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:21, column:180,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:180,the value of plot_cost is         : 33.436309725223374 

 At row:21, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:21, column:181,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:181,the value of plot_cost is         : 33.26798208558946 

 At row:21, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:21, column:182,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:182,the value of plot_cost is         : 33.100462506358056 

 At row:21, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:21, column:183,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:183,the value of plot_cost is         : 32.93375098752917 

 At row:21, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:21, column:184,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:184,the value of plot_cost is         : 32.7678475291028 

 At row:21, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:21, column:185,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:185,the value of plot_cost is         : 32.60275213107894 

 At row:21, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:21, column:186,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:186,the value of plot_cost is         : 32.43846479345759 

 At row:21, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:21, column:187,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:187,the value of plot_cost is         : 32.274985516238765 

 At row:21, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:21, column:188,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:188,the value of plot_cost is         : 32.11231429942245 

 At row:21, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:21, column:189,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:189,the value of plot_cost is         : 31.950451143008653 

 At row:21, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:21, column:190,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:190,the value of plot_cost is         : 31.78939604699736 

 At row:21, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:21, column:191,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:191,the value of plot_cost is         : 31.629149011388595 

 At row:21, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:21, column:192,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:192,the value of plot_cost is         : 31.46971003618234 

 At row:21, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:21, column:193,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:193,the value of plot_cost is         : 31.31107912137861 

 At row:21, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:21, column:194,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:194,the value of plot_cost is         : 31.153256266977383 

 At row:21, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:21, column:195,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:195,the value of plot_cost is         : 30.99624147297867 

 At row:21, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:21, column:196,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:196,the value of plot_cost is         : 30.840034739382475 

 At row:21, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:21, column:197,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:197,the value of plot_cost is         : 30.6846360661888 

 At row:21, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:21, column:198,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:198,the value of plot_cost is         : 30.53004545339764 

 At row:21, column:199,the value of plot_t0 is           : 3.0
 At row:21, column:199,the value of plot_t1 is           : -0.5778894472361809
 At row:21, column:199,the value of plot_cost is         : 30.37626290100899 

 At row:22, column:0,the value of plot_t0 is           : -1.0
 At row:22, column:0,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:0,the value of plot_cost is         : 75.53155667064682 

 At row:22, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:22, column:1,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:1,the value of plot_cost is         : 75.22045630160854 

 At row:22, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:22, column:2,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:2,the value of plot_cost is         : 74.91016399297274 

 At row:22, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:22, column:3,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:3,the value of plot_cost is         : 74.60067974473947 

 At row:22, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:22, column:4,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:4,the value of plot_cost is         : 74.29200355690874 

 At row:22, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:22, column:5,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:5,the value of plot_cost is         : 73.98413542948049 

 At row:22, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:22, column:6,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:6,the value of plot_cost is         : 73.67707536245476 

 At row:22, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:22, column:7,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:7,the value of plot_cost is         : 73.37082335583155 

 At row:22, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:22, column:8,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:8,the value of plot_cost is         : 73.06537940961087 

 At row:22, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:22, column:9,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:9,the value of plot_cost is         : 72.7607435237927 

 At row:22, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:22, column:10,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:10,the value of plot_cost is         : 72.45691569837702 

 At row:22, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:22, column:11,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:11,the value of plot_cost is         : 72.15389593336387 

 At row:22, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:22, column:12,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:12,the value of plot_cost is         : 71.85168422875324 

 At row:22, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:22, column:13,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:13,the value of plot_cost is         : 71.5502805845451 

 At row:22, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:22, column:14,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:14,the value of plot_cost is         : 71.24968500073952 

 At row:22, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:22, column:15,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:15,the value of plot_cost is         : 70.94989747733642 

 At row:22, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:22, column:16,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:16,the value of plot_cost is         : 70.65091801433584 

 At row:22, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:22, column:17,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:17,the value of plot_cost is         : 70.35274661173779 

 At row:22, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:22, column:18,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:18,the value of plot_cost is         : 70.05538326954225 

 At row:22, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:22, column:19,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:19,the value of plot_cost is         : 69.75882798774923 

 At row:22, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:22, column:20,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:20,the value of plot_cost is         : 69.4630807663587 

 At row:22, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:22, column:21,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:21,the value of plot_cost is         : 69.1681416053707 

 At row:22, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:22, column:22,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:22,the value of plot_cost is         : 68.87401050478523 

 At row:22, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:22, column:23,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:23,the value of plot_cost is         : 68.58068746460225 

 At row:22, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:22, column:24,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:24,the value of plot_cost is         : 68.2881724848218 

 At row:22, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:22, column:25,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:25,the value of plot_cost is         : 67.99646556544386 

 At row:22, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:22, column:26,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:26,the value of plot_cost is         : 67.70556670646845 

 At row:22, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:22, column:27,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:27,the value of plot_cost is         : 67.41547590789554 

 At row:22, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:22, column:28,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:28,the value of plot_cost is         : 67.12619316972514 

 At row:22, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:22, column:29,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:29,the value of plot_cost is         : 66.83771849195729 

 At row:22, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:22, column:30,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:30,the value of plot_cost is         : 66.5500518745919 

 At row:22, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:22, column:31,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:31,the value of plot_cost is         : 66.26319331762905 

 At row:22, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:22, column:32,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:32,the value of plot_cost is         : 65.97714282106872 

 At row:22, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:22, column:33,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:33,the value of plot_cost is         : 65.69190038491091 

 At row:22, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:22, column:34,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:34,the value of plot_cost is         : 65.4074660091556 

 At row:22, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:22, column:35,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:35,the value of plot_cost is         : 65.12383969380282 

 At row:22, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:22, column:36,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:36,the value of plot_cost is         : 64.84102143885255 

 At row:22, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:22, column:37,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:37,the value of plot_cost is         : 64.55901124430478 

 At row:22, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:22, column:38,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:38,the value of plot_cost is         : 64.27780911015955 

 At row:22, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:22, column:39,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:39,the value of plot_cost is         : 63.997415036416825 

 At row:22, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:22, column:40,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:40,the value of plot_cost is         : 63.71782902307661 

 At row:22, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:22, column:41,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:41,the value of plot_cost is         : 63.43905107013891 

 At row:22, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:22, column:42,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:42,the value of plot_cost is         : 63.161081177603734 

 At row:22, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:22, column:43,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:43,the value of plot_cost is         : 62.883919345471064 

 At row:22, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:22, column:44,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:44,the value of plot_cost is         : 62.607565573740914 

 At row:22, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:22, column:45,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:45,the value of plot_cost is         : 62.33201986241327 

 At row:22, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:22, column:46,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:46,the value of plot_cost is         : 62.05728221148815 

 At row:22, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:22, column:47,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:47,the value of plot_cost is         : 61.78335262096556 

 At row:22, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:22, column:48,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:48,the value of plot_cost is         : 61.510231090845465 

 At row:22, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:22, column:49,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:49,the value of plot_cost is         : 61.23791762112789 

 At row:22, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:22, column:50,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:50,the value of plot_cost is         : 60.96641221181282 

 At row:22, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:22, column:51,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:51,the value of plot_cost is         : 60.695714862900275 

 At row:22, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:22, column:52,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:52,the value of plot_cost is         : 60.42582557439025 

 At row:22, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:22, column:53,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:53,the value of plot_cost is         : 60.156744346282736 

 At row:22, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:22, column:54,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:54,the value of plot_cost is         : 59.88847117857772 

 At row:22, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:22, column:55,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:55,the value of plot_cost is         : 59.62100607127525 

 At row:22, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:22, column:56,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:56,the value of plot_cost is         : 59.35434902437528 

 At row:22, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:22, column:57,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:57,the value of plot_cost is         : 59.08850003787782 

 At row:22, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:22, column:58,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:58,the value of plot_cost is         : 58.82345911178289 

 At row:22, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:22, column:59,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:59,the value of plot_cost is         : 58.559226246090475 

 At row:22, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:22, column:60,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:60,the value of plot_cost is         : 58.29580144080055 

 At row:22, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:22, column:61,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:61,the value of plot_cost is         : 58.03318469591315 

 At row:22, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:22, column:62,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:62,the value of plot_cost is         : 57.77137601142829 

 At row:22, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:22, column:63,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:63,the value of plot_cost is         : 57.51037538734591 

 At row:22, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:22, column:64,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:64,the value of plot_cost is         : 57.25018282366606 

 At row:22, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:22, column:65,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:65,the value of plot_cost is         : 56.99079832038873 

 At row:22, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:22, column:66,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:66,the value of plot_cost is         : 56.73222187751391 

 At row:22, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:22, column:67,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:67,the value of plot_cost is         : 56.47445349504161 

 At row:22, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:22, column:68,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:68,the value of plot_cost is         : 56.21749317297182 

 At row:22, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:22, column:69,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:69,the value of plot_cost is         : 55.961340911304546 

 At row:22, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:22, column:70,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:70,the value of plot_cost is         : 55.70599671003978 

 At row:22, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:22, column:71,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:71,the value of plot_cost is         : 55.451460569177534 

 At row:22, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:22, column:72,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:72,the value of plot_cost is         : 55.19773248871781 

 At row:22, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:22, column:73,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:73,the value of plot_cost is         : 54.944812468660594 

 At row:22, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:22, column:74,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:74,the value of plot_cost is         : 54.692700509005896 

 At row:22, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:22, column:75,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:75,the value of plot_cost is         : 54.44139660975371 

 At row:22, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:22, column:76,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:76,the value of plot_cost is         : 54.190900770904044 

 At row:22, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:22, column:77,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:77,the value of plot_cost is         : 53.9412129924569 

 At row:22, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:22, column:78,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:78,the value of plot_cost is         : 53.69233327441226 

 At row:22, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:22, column:79,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:79,the value of plot_cost is         : 53.44426161677014 

 At row:22, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:22, column:80,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:80,the value of plot_cost is         : 53.196998019530525 

 At row:22, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:22, column:81,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:81,the value of plot_cost is         : 52.950542482693436 

 At row:22, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:22, column:82,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:82,the value of plot_cost is         : 52.70489500625886 

 At row:22, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:22, column:83,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:83,the value of plot_cost is         : 52.46005559022679 

 At row:22, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:22, column:84,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:84,the value of plot_cost is         : 52.21602423459724 

 At row:22, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:22, column:85,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:85,the value of plot_cost is         : 51.97280093937021 

 At row:22, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:22, column:86,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:86,the value of plot_cost is         : 51.73038570454569 

 At row:22, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:22, column:87,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:87,the value of plot_cost is         : 51.488778530123696 

 At row:22, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:22, column:88,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:88,the value of plot_cost is         : 51.247979416104215 

 At row:22, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:22, column:89,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:89,the value of plot_cost is         : 51.00798836248723 

 At row:22, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:22, column:90,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:90,the value of plot_cost is         : 50.768805369272776 

 At row:22, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:22, column:91,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:91,the value of plot_cost is         : 50.53043043646083 

 At row:22, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:22, column:92,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:92,the value of plot_cost is         : 50.29286356405141 

 At row:22, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:22, column:93,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:93,the value of plot_cost is         : 50.05610475204449 

 At row:22, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:22, column:94,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:94,the value of plot_cost is         : 49.8201540004401 

 At row:22, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:22, column:95,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:95,the value of plot_cost is         : 49.58501130923822 

 At row:22, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:22, column:96,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:96,the value of plot_cost is         : 49.35067667843885 

 At row:22, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:22, column:97,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:97,the value of plot_cost is         : 49.117150108042 

 At row:22, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:22, column:98,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:98,the value of plot_cost is         : 48.88443159804767 

 At row:22, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:22, column:99,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:99,the value of plot_cost is         : 48.65252114845585 

 At row:22, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:22, column:100,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:100,the value of plot_cost is         : 48.42141875926653 

 At row:22, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:22, column:101,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:101,the value of plot_cost is         : 48.191124430479746 

 At row:22, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:22, column:102,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:102,the value of plot_cost is         : 47.96163816209547 

 At row:22, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:22, column:103,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:103,the value of plot_cost is         : 47.732959954113696 

 At row:22, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:22, column:104,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:104,the value of plot_cost is         : 47.50508980653446 

 At row:22, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:22, column:105,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:105,the value of plot_cost is         : 47.27802771935772 

 At row:22, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:22, column:106,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:106,the value of plot_cost is         : 47.05177369258351 

 At row:22, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:22, column:107,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:107,the value of plot_cost is         : 46.826327726211815 

 At row:22, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:22, column:108,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:108,the value of plot_cost is         : 46.60168982024263 

 At row:22, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:22, column:109,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:109,the value of plot_cost is         : 46.37785997467595 

 At row:22, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:22, column:110,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:110,the value of plot_cost is         : 46.1548381895118 

 At row:22, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:22, column:111,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:111,the value of plot_cost is         : 45.93262446475016 

 At row:22, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:22, column:112,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:112,the value of plot_cost is         : 45.71121880039104 

 At row:22, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:22, column:113,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:113,the value of plot_cost is         : 45.490621196434425 

 At row:22, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:22, column:114,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:114,the value of plot_cost is         : 45.270831652880325 

 At row:22, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:22, column:115,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:115,the value of plot_cost is         : 45.051850169728745 

 At row:22, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:22, column:116,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:116,the value of plot_cost is         : 44.83367674697969 

 At row:22, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:22, column:117,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:117,the value of plot_cost is         : 44.61631138463315 

 At row:22, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:22, column:118,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:118,the value of plot_cost is         : 44.39975408268911 

 At row:22, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:22, column:119,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:119,the value of plot_cost is         : 44.184004841147576 

 At row:22, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:22, column:120,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:120,the value of plot_cost is         : 43.96906366000857 

 At row:22, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:22, column:121,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:121,the value of plot_cost is         : 43.754930539272095 

 At row:22, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:22, column:122,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:122,the value of plot_cost is         : 43.541605478938116 

 At row:22, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:22, column:123,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:123,the value of plot_cost is         : 43.32908847900665 

 At row:22, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:22, column:124,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:124,the value of plot_cost is         : 43.1173795394777 

 At row:22, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:22, column:125,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:125,the value of plot_cost is         : 42.906478660351276 

 At row:22, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:22, column:126,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:126,the value of plot_cost is         : 42.696385841627375 

 At row:22, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:22, column:127,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:127,the value of plot_cost is         : 42.48710108330597 

 At row:22, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:22, column:128,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:128,the value of plot_cost is         : 42.2786243853871 

 At row:22, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:22, column:129,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:129,the value of plot_cost is         : 42.07095574787071 

 At row:22, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:22, column:130,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:130,the value of plot_cost is         : 41.86409517075687 

 At row:22, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:22, column:131,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:131,the value of plot_cost is         : 41.65804265404553 

 At row:22, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:22, column:132,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:132,the value of plot_cost is         : 41.452798197736705 

 At row:22, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:22, column:133,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:133,the value of plot_cost is         : 41.248361801830384 

 At row:22, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:22, column:134,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:134,the value of plot_cost is         : 41.0447334663266 

 At row:22, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:22, column:135,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:135,the value of plot_cost is         : 40.84191319122532 

 At row:22, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:22, column:136,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:136,the value of plot_cost is         : 40.63990097652657 

 At row:22, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:22, column:137,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:137,the value of plot_cost is         : 40.43869682223032 

 At row:22, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:22, column:138,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:138,the value of plot_cost is         : 40.23830072833659 

 At row:22, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:22, column:139,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:139,the value of plot_cost is         : 40.03871269484536 

 At row:22, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:22, column:140,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:140,the value of plot_cost is         : 39.83993272175666 

 At row:22, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:22, column:141,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:141,the value of plot_cost is         : 39.641960809070476 

 At row:22, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:22, column:142,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:142,the value of plot_cost is         : 39.4447969567868 

 At row:22, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:22, column:143,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:143,the value of plot_cost is         : 39.248441164905636 

 At row:22, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:22, column:144,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:144,the value of plot_cost is         : 39.052893433426995 

 At row:22, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:22, column:145,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:145,the value of plot_cost is         : 38.858153762350874 

 At row:22, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:22, column:146,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:146,the value of plot_cost is         : 38.66422215167726 

 At row:22, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:22, column:147,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:147,the value of plot_cost is         : 38.47109860140616 

 At row:22, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:22, column:148,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:148,the value of plot_cost is         : 38.278783111537585 

 At row:22, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:22, column:149,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:149,the value of plot_cost is         : 38.087275682071514 

 At row:22, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:22, column:150,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:150,the value of plot_cost is         : 37.896576313007955 

 At row:22, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:22, column:151,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:151,the value of plot_cost is         : 37.70668500434693 

 At row:22, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:22, column:152,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:152,the value of plot_cost is         : 37.5176017560884 

 At row:22, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:22, column:153,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:153,the value of plot_cost is         : 37.329326568232396 

 At row:22, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:22, column:154,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:154,the value of plot_cost is         : 37.1418594407789 

 At row:22, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:22, column:155,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:155,the value of plot_cost is         : 36.955200373727926 

 At row:22, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:22, column:156,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:156,the value of plot_cost is         : 36.769349367079464 

 At row:22, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:22, column:157,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:157,the value of plot_cost is         : 36.58430642083353 

 At row:22, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:22, column:158,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:158,the value of plot_cost is         : 36.4000715349901 

 At row:22, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:22, column:159,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:159,the value of plot_cost is         : 36.21664470954917 

 At row:22, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:22, column:160,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:160,the value of plot_cost is         : 36.03402594451077 

 At row:22, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:22, column:161,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:161,the value of plot_cost is         : 35.85221523987489 

 At row:22, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:22, column:162,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:162,the value of plot_cost is         : 35.67121259564152 

 At row:22, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:22, column:163,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:163,the value of plot_cost is         : 35.49101801181066 

 At row:22, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:22, column:164,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:164,the value of plot_cost is         : 35.311631488382325 

 At row:22, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:22, column:165,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:165,the value of plot_cost is         : 35.133053025356496 

 At row:22, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:22, column:166,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:166,the value of plot_cost is         : 34.955282622733186 

 At row:22, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:22, column:167,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:167,the value of plot_cost is         : 34.778320280512396 

 At row:22, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:22, column:168,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:168,the value of plot_cost is         : 34.60216599869411 

 At row:22, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:22, column:169,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:169,the value of plot_cost is         : 34.42681977727835 

 At row:22, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:22, column:170,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:170,the value of plot_cost is         : 34.252281616265094 

 At row:22, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:22, column:171,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:171,the value of plot_cost is         : 34.07855151565436 

 At row:22, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:22, column:172,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:172,the value of plot_cost is         : 33.90562947544615 

 At row:22, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:22, column:173,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:173,the value of plot_cost is         : 33.73351549564043 

 At row:22, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:22, column:174,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:174,the value of plot_cost is         : 33.562209576237244 

 At row:22, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:22, column:175,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:175,the value of plot_cost is         : 33.39171171723657 

 At row:22, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:22, column:176,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:176,the value of plot_cost is         : 33.22202191863841 

 At row:22, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:22, column:177,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:177,the value of plot_cost is         : 33.053140180442774 

 At row:22, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:22, column:178,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:178,the value of plot_cost is         : 32.88506650264964 

 At row:22, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:22, column:179,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:179,the value of plot_cost is         : 32.717800885259024 

 At row:22, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:22, column:180,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:180,the value of plot_cost is         : 32.551343328270924 

 At row:22, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:22, column:181,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:181,the value of plot_cost is         : 32.385693831685344 

 At row:22, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:22, column:182,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:182,the value of plot_cost is         : 32.22085239550228 

 At row:22, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:22, column:183,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:183,the value of plot_cost is         : 32.056819019721715 

 At row:22, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:22, column:184,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:184,the value of plot_cost is         : 31.89359370434368 

 At row:22, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:22, column:185,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:185,the value of plot_cost is         : 31.731176449368157 

 At row:22, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:22, column:186,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:186,the value of plot_cost is         : 31.56956725479515 

 At row:22, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:22, column:187,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:187,the value of plot_cost is         : 31.408766120624662 

 At row:22, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:22, column:188,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:188,the value of plot_cost is         : 31.248773046856684 

 At row:22, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:22, column:189,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:189,the value of plot_cost is         : 31.089588033491207 

 At row:22, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:22, column:190,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:190,the value of plot_cost is         : 30.931211080528264 

 At row:22, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:22, column:191,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:191,the value of plot_cost is         : 30.773642187967837 

 At row:22, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:22, column:192,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:192,the value of plot_cost is         : 30.61688135580992 

 At row:22, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:22, column:193,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:193,the value of plot_cost is         : 30.460928584054507 

 At row:22, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:22, column:194,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:194,the value of plot_cost is         : 30.305783872701625 

 At row:22, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:22, column:195,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:195,the value of plot_cost is         : 30.151447221751244 

 At row:22, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:22, column:196,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:196,the value of plot_cost is         : 29.99791863120339 

 At row:22, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:22, column:197,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:197,the value of plot_cost is         : 29.845198101058052 

 At row:22, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:22, column:198,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:198,the value of plot_cost is         : 29.693285631315224 

 At row:22, column:199,the value of plot_t0 is           : 3.0
 At row:22, column:199,the value of plot_t1 is           : -0.5577889447236181
 At row:22, column:199,the value of plot_cost is         : 29.542181221974907 

 At row:23, column:0,the value of plot_t0 is           : -1.0
 At row:23, column:0,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:0,the value of plot_cost is         : 74.17710717983311 

 At row:23, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:23, column:1,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:1,the value of plot_cost is         : 73.86868495384316 

 At row:23, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:23, column:2,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:2,the value of plot_cost is         : 73.56107078825572 

 At row:23, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:23, column:3,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:3,the value of plot_cost is         : 73.25426468307079 

 At row:23, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:23, column:4,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:4,the value of plot_cost is         : 72.94826663828836 

 At row:23, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:23, column:5,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:5,the value of plot_cost is         : 72.64307665390845 

 At row:23, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:23, column:6,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:6,the value of plot_cost is         : 72.33869472993105 

 At row:23, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:23, column:7,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:7,the value of plot_cost is         : 72.03512086635618 

 At row:23, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:23, column:8,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:8,the value of plot_cost is         : 71.73235506318382 

 At row:23, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:23, column:9,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:9,the value of plot_cost is         : 71.43039732041397 

 At row:23, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:23, column:10,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:10,the value of plot_cost is         : 71.12924763804666 

 At row:23, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:23, column:11,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:11,the value of plot_cost is         : 70.82890601608183 

 At row:23, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:23, column:12,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:12,the value of plot_cost is         : 70.52937245451955 

 At row:23, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:23, column:13,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:13,the value of plot_cost is         : 70.23064695335977 

 At row:23, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:23, column:14,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:14,the value of plot_cost is         : 69.93272951260249 

 At row:23, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:23, column:15,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:15,the value of plot_cost is         : 69.63562013224774 

 At row:23, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:23, column:16,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:16,the value of plot_cost is         : 69.3393188122955 

 At row:23, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:23, column:17,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:17,the value of plot_cost is         : 69.04382555274577 

 At row:23, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:23, column:18,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:18,the value of plot_cost is         : 68.74914035359856 

 At row:23, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:23, column:19,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:19,the value of plot_cost is         : 68.45526321485387 

 At row:23, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:23, column:20,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:20,the value of plot_cost is         : 68.1621941365117 

 At row:23, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:23, column:21,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:21,the value of plot_cost is         : 67.86993311857204 

 At row:23, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:23, column:22,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:22,the value of plot_cost is         : 67.5784801610349 

 At row:23, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:23, column:23,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:23,the value of plot_cost is         : 67.28783526390026 

 At row:23, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:23, column:24,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:24,the value of plot_cost is         : 66.99799842716814 

 At row:23, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:23, column:25,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:25,the value of plot_cost is         : 66.70896965083854 

 At row:23, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:23, column:26,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:26,the value of plot_cost is         : 66.42074893491146 

 At row:23, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:23, column:27,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:27,the value of plot_cost is         : 66.13333627938687 

 At row:23, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:23, column:28,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:28,the value of plot_cost is         : 65.84673168426481 

 At row:23, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:23, column:29,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:29,the value of plot_cost is         : 65.56093514954527 

 At row:23, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:23, column:30,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:30,the value of plot_cost is         : 65.27594667522824 

 At row:23, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:23, column:31,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:31,the value of plot_cost is         : 64.99176626131374 

 At row:23, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:23, column:32,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:32,the value of plot_cost is         : 64.70839390780175 

 At row:23, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:23, column:33,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:33,the value of plot_cost is         : 64.42582961469228 

 At row:23, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:23, column:34,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:34,the value of plot_cost is         : 64.14407338198531 

 At row:23, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:23, column:35,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:35,the value of plot_cost is         : 63.863125209680845 

 At row:23, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:23, column:36,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:36,the value of plot_cost is         : 63.58298509777891 

 At row:23, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:23, column:37,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:37,the value of plot_cost is         : 63.30365304627948 

 At row:23, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:23, column:38,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:38,the value of plot_cost is         : 63.025129055182575 

 At row:23, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:23, column:39,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:39,the value of plot_cost is         : 62.74741312448819 

 At row:23, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:23, column:40,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:40,the value of plot_cost is         : 62.470505254196325 

 At row:23, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:23, column:41,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:41,the value of plot_cost is         : 62.19440544430696 

 At row:23, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:23, column:42,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:42,the value of plot_cost is         : 61.919113694820126 

 At row:23, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:23, column:43,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:43,the value of plot_cost is         : 61.64463000573579 

 At row:23, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:23, column:44,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:44,the value of plot_cost is         : 61.370954377053955 

 At row:23, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:23, column:45,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:45,the value of plot_cost is         : 61.09808680877467 

 At row:23, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:23, column:46,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:46,the value of plot_cost is         : 60.82602730089788 

 At row:23, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:23, column:47,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:47,the value of plot_cost is         : 60.5547758534236 

 At row:23, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:23, column:48,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:48,the value of plot_cost is         : 60.28433246635185 

 At row:23, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:23, column:49,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:49,the value of plot_cost is         : 60.01469713968262 

 At row:23, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:23, column:50,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:50,the value of plot_cost is         : 59.74586987341589 

 At row:23, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:23, column:51,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:51,the value of plot_cost is         : 59.477850667551685 

 At row:23, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:23, column:52,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:52,the value of plot_cost is         : 59.21063952208999 

 At row:23, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:23, column:53,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:53,the value of plot_cost is         : 58.94423643703081 

 At row:23, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:23, column:54,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:54,the value of plot_cost is         : 58.67864141237414 

 At row:23, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:23, column:55,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:55,the value of plot_cost is         : 58.41385444811999 

 At row:23, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:23, column:56,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:56,the value of plot_cost is         : 58.149875544268355 

 At row:23, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:23, column:57,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:57,the value of plot_cost is         : 57.88670470081924 

 At row:23, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:23, column:58,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:58,the value of plot_cost is         : 57.62434191777263 

 At row:23, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:23, column:59,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:59,the value of plot_cost is         : 57.36278719512854 

 At row:23, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:23, column:60,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:60,the value of plot_cost is         : 57.10204053288698 

 At row:23, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:23, column:61,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:61,the value of plot_cost is         : 56.84210193104791 

 At row:23, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:23, column:62,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:62,the value of plot_cost is         : 56.58297138961137 

 At row:23, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:23, column:63,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:63,the value of plot_cost is         : 56.32464890857735 

 At row:23, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:23, column:64,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:64,the value of plot_cost is         : 56.06713448794583 

 At row:23, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:23, column:65,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:65,the value of plot_cost is         : 55.81042812771683 

 At row:23, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:23, column:66,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:66,the value of plot_cost is         : 55.55452982789035 

 At row:23, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:23, column:67,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:67,the value of plot_cost is         : 55.29943958846636 

 At row:23, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:23, column:68,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:68,the value of plot_cost is         : 55.045157409444926 

 At row:23, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:23, column:69,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:69,the value of plot_cost is         : 54.791683290825986 

 At row:23, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:23, column:70,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:70,the value of plot_cost is         : 54.53901723260956 

 At row:23, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:23, column:71,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:71,the value of plot_cost is         : 54.28715923479566 

 At row:23, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:23, column:72,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:72,the value of plot_cost is         : 54.036109297384264 

 At row:23, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:23, column:73,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:73,the value of plot_cost is         : 53.78586742037539 

 At row:23, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:23, column:74,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:74,the value of plot_cost is         : 53.53643360376902 

 At row:23, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:23, column:75,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:75,the value of plot_cost is         : 53.28780784756517 

 At row:23, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:23, column:76,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:76,the value of plot_cost is         : 53.039990151763845 

 At row:23, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:23, column:77,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:77,the value of plot_cost is         : 52.79298051636502 

 At row:23, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:23, column:78,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:78,the value of plot_cost is         : 52.54677894136872 

 At row:23, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:23, column:79,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:79,the value of plot_cost is         : 52.301385426774935 

 At row:23, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:23, column:80,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:80,the value of plot_cost is         : 52.05679997258366 

 At row:23, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:23, column:81,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:81,the value of plot_cost is         : 51.8130225787949 

 At row:23, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:23, column:82,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:82,the value of plot_cost is         : 51.570053245408666 

 At row:23, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:23, column:83,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:83,the value of plot_cost is         : 51.327891972424936 

 At row:23, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:23, column:84,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:84,the value of plot_cost is         : 51.08653875984372 

 At row:23, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:23, column:85,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:85,the value of plot_cost is         : 50.84599360766502 

 At row:23, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:23, column:86,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:86,the value of plot_cost is         : 50.606256515888845 

 At row:23, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:23, column:87,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:87,the value of plot_cost is         : 50.36732748451517 

 At row:23, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:23, column:88,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:88,the value of plot_cost is         : 50.12920651354402 

 At row:23, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:23, column:89,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:89,the value of plot_cost is         : 49.891893602975394 

 At row:23, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:23, column:90,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:90,the value of plot_cost is         : 49.655388752809266 

 At row:23, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:23, column:91,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:91,the value of plot_cost is         : 49.419691963045665 

 At row:23, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:23, column:92,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:92,the value of plot_cost is         : 49.184803233684576 

 At row:23, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:23, column:93,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:93,the value of plot_cost is         : 48.95072256472599 

 At row:23, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:23, column:94,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:94,the value of plot_cost is         : 48.717449956169936 

 At row:23, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:23, column:95,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:95,the value of plot_cost is         : 48.48498540801639 

 At row:23, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:23, column:96,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:96,the value of plot_cost is         : 48.25332892026536 

 At row:23, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:23, column:97,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:97,the value of plot_cost is         : 48.022480492916834 

 At row:23, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:23, column:98,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:98,the value of plot_cost is         : 47.792440125970835 

 At row:23, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:23, column:99,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:99,the value of plot_cost is         : 47.56320781942736 

 At row:23, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:23, column:100,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:100,the value of plot_cost is         : 47.33478357328639 

 At row:23, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:23, column:101,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:101,the value of plot_cost is         : 47.107167387547925 

 At row:23, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:23, column:102,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:102,the value of plot_cost is         : 46.880359262212 

 At row:23, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:23, column:103,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:103,the value of plot_cost is         : 46.65435919727856 

 At row:23, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:23, column:104,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:104,the value of plot_cost is         : 46.42916719274765 

 At row:23, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:23, column:105,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:105,the value of plot_cost is         : 46.204783248619265 

 At row:23, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:23, column:106,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:106,the value of plot_cost is         : 45.98120736489338 

 At row:23, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:23, column:107,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:107,the value of plot_cost is         : 45.758439541570006 

 At row:23, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:23, column:108,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:108,the value of plot_cost is         : 45.53647977864916 

 At row:23, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:23, column:109,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:109,the value of plot_cost is         : 45.31532807613083 

 At row:23, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:23, column:110,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:110,the value of plot_cost is         : 45.09498443401501 

 At row:23, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:23, column:111,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:111,the value of plot_cost is         : 44.87544885230171 

 At row:23, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:23, column:112,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:112,the value of plot_cost is         : 44.656721330990926 

 At row:23, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:23, column:113,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:113,the value of plot_cost is         : 44.43880187008264 

 At row:23, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:23, column:114,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:114,the value of plot_cost is         : 44.221690469576885 

 At row:23, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:23, column:115,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:115,the value of plot_cost is         : 44.00538712947364 

 At row:23, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:23, column:116,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:116,the value of plot_cost is         : 43.789891849772914 

 At row:23, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:23, column:117,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:117,the value of plot_cost is         : 43.57520463047469 

 At row:23, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:23, column:118,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:118,the value of plot_cost is         : 43.36132547157899 

 At row:23, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:23, column:119,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:119,the value of plot_cost is         : 43.14825437308581 

 At row:23, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:23, column:120,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:120,the value of plot_cost is         : 42.93599133499515 

 At row:23, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:23, column:121,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:121,the value of plot_cost is         : 42.724536357306995 

 At row:23, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:23, column:122,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:122,the value of plot_cost is         : 42.51388944002136 

 At row:23, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:23, column:123,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:123,the value of plot_cost is         : 42.30405058313823 

 At row:23, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:23, column:124,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:124,the value of plot_cost is         : 42.095019786657616 

 At row:23, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:23, column:125,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:125,the value of plot_cost is         : 41.886797050579524 

 At row:23, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:23, column:126,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:126,the value of plot_cost is         : 41.67938237490395 

 At row:23, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:23, column:127,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:127,the value of plot_cost is         : 41.47277575963088 

 At row:23, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:23, column:128,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:128,the value of plot_cost is         : 41.26697720476034 

 At row:23, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:23, column:129,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:129,the value of plot_cost is         : 41.0619867102923 

 At row:23, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:23, column:130,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:130,the value of plot_cost is         : 40.85780427622679 

 At row:23, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:23, column:131,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:131,the value of plot_cost is         : 40.654429902563784 

 At row:23, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:23, column:132,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:132,the value of plot_cost is         : 40.45186358930331 

 At row:23, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:23, column:133,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:133,the value of plot_cost is         : 40.25010533644532 

 At row:23, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:23, column:134,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:134,the value of plot_cost is         : 40.04915514398987 

 At row:23, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:23, column:135,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:135,the value of plot_cost is         : 39.849013011936925 

 At row:23, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:23, column:136,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:136,the value of plot_cost is         : 39.6496789402865 

 At row:23, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:23, column:137,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:137,the value of plot_cost is         : 39.451152929038585 

 At row:23, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:23, column:138,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:138,the value of plot_cost is         : 39.25343497819319 

 At row:23, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:23, column:139,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:139,the value of plot_cost is         : 39.0565250877503 

 At row:23, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:23, column:140,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:140,the value of plot_cost is         : 38.86042325770993 

 At row:23, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:23, column:141,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:141,the value of plot_cost is         : 38.66512948807209 

 At row:23, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:23, column:142,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:142,the value of plot_cost is         : 38.47064377883676 

 At row:23, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:23, column:143,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:143,the value of plot_cost is         : 38.27696613000393 

 At row:23, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:23, column:144,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:144,the value of plot_cost is         : 38.08409654157362 

 At row:23, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:23, column:145,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:145,the value of plot_cost is         : 37.89203501354583 

 At row:23, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:23, column:146,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:146,the value of plot_cost is         : 37.70078154592056 

 At row:23, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:23, column:147,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:147,the value of plot_cost is         : 37.51033613869779 

 At row:23, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:23, column:148,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:148,the value of plot_cost is         : 37.32069879187755 

 At row:23, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:23, column:149,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:149,the value of plot_cost is         : 37.13186950545982 

 At row:23, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:23, column:150,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:150,the value of plot_cost is         : 36.9438482794446 

 At row:23, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:23, column:151,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:151,the value of plot_cost is         : 36.7566351138319 

 At row:23, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:23, column:152,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:152,the value of plot_cost is         : 36.57023000862172 

 At row:23, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:23, column:153,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:153,the value of plot_cost is         : 36.384632963814035 

 At row:23, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:23, column:154,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:154,the value of plot_cost is         : 36.19984397940888 

 At row:23, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:23, column:155,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:155,the value of plot_cost is         : 36.01586305540624 

 At row:23, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:23, column:156,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:156,the value of plot_cost is         : 35.832690191806115 

 At row:23, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:23, column:157,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:157,the value of plot_cost is         : 35.65032538860851 

 At row:23, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:23, column:158,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:158,the value of plot_cost is         : 35.46876864581341 

 At row:23, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:23, column:159,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:159,the value of plot_cost is         : 35.28801996342083 

 At row:23, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:23, column:160,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:160,the value of plot_cost is         : 35.10807934143077 

 At row:23, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:23, column:161,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:161,the value of plot_cost is         : 34.92894677984322 

 At row:23, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:23, column:162,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:162,the value of plot_cost is         : 34.75062227865819 

 At row:23, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:23, column:163,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:163,the value of plot_cost is         : 34.57310583787566 

 At row:23, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:23, column:164,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:164,the value of plot_cost is         : 34.39639745749566 

 At row:23, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:23, column:165,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:165,the value of plot_cost is         : 34.22049713751817 

 At row:23, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:23, column:166,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:166,the value of plot_cost is         : 34.045404877943184 

 At row:23, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:23, column:167,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:167,the value of plot_cost is         : 33.87112067877073 

 At row:23, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:23, column:168,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:168,the value of plot_cost is         : 33.69764454000079 

 At row:23, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:23, column:169,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:169,the value of plot_cost is         : 33.52497646163336 

 At row:23, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:23, column:170,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:170,the value of plot_cost is         : 33.35311644366845 

 At row:23, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:23, column:171,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:171,the value of plot_cost is         : 33.18206448610605 

 At row:23, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:23, column:172,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:172,the value of plot_cost is         : 33.011820588946165 

 At row:23, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:23, column:173,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:173,the value of plot_cost is         : 32.84238475218879 

 At row:23, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:23, column:174,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:174,the value of plot_cost is         : 32.673756975833946 

 At row:23, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:23, column:175,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:175,the value of plot_cost is         : 32.5059372598816 

 At row:23, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:23, column:176,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:176,the value of plot_cost is         : 32.33892560433177 

 At row:23, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:23, column:177,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:177,the value of plot_cost is         : 32.17272200918447 

 At row:23, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:23, column:178,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:178,the value of plot_cost is         : 32.00732647443967 

 At row:23, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:23, column:179,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:179,the value of plot_cost is         : 31.8427390000974 

 At row:23, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:23, column:180,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:180,the value of plot_cost is         : 31.678959586157635 

 At row:23, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:23, column:181,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:181,the value of plot_cost is         : 31.515988232620387 

 At row:23, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:23, column:182,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:182,the value of plot_cost is         : 31.353824939485662 

 At row:23, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:23, column:183,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:183,the value of plot_cost is         : 31.192469706753432 

 At row:23, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:23, column:184,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:184,the value of plot_cost is         : 31.03192253442373 

 At row:23, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:23, column:185,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:185,the value of plot_cost is         : 30.872183422496544 

 At row:23, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:23, column:186,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:186,the value of plot_cost is         : 30.713252370971865 

 At row:23, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:23, column:187,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:187,the value of plot_cost is         : 30.55512937984971 

 At row:23, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:23, column:188,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:188,the value of plot_cost is         : 30.397814449130074 

 At row:23, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:23, column:189,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:189,the value of plot_cost is         : 30.24130757881294 

 At row:23, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:23, column:190,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:190,the value of plot_cost is         : 30.085608768898332 

 At row:23, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:23, column:191,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:191,the value of plot_cost is         : 29.930718019386237 

 At row:23, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:23, column:192,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:192,the value of plot_cost is         : 29.776635330276655 

 At row:23, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:23, column:193,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:193,the value of plot_cost is         : 29.623360701569577 

 At row:23, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:23, column:194,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:194,the value of plot_cost is         : 29.470894133265027 

 At row:23, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:23, column:195,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:195,the value of plot_cost is         : 29.319235625362996 

 At row:23, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:23, column:196,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:196,the value of plot_cost is         : 29.168385177863463 

 At row:23, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:23, column:197,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:197,the value of plot_cost is         : 29.01834279076646 

 At row:23, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:23, column:198,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:198,the value of plot_cost is         : 28.869108464071974 

 At row:23, column:199,the value of plot_t0 is           : 3.0
 At row:23, column:199,the value of plot_t1 is           : -0.5376884422110553
 At row:23, column:199,the value of plot_cost is         : 28.720682197779993 

 At row:24, column:0,the value of plot_t0 is           : -1.0
 At row:24, column:0,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:0,the value of plot_cost is         : 72.83524034385856 

 At row:24, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:24, column:1,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:1,the value of plot_cost is         : 72.52949626091691 

 At row:24, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:24, column:2,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:2,the value of plot_cost is         : 72.2245602383778 

 At row:24, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:24, column:3,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:3,the value of plot_cost is         : 71.92043227624121 

 At row:24, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:24, column:4,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:4,the value of plot_cost is         : 71.61711237450713 

 At row:24, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:24, column:5,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:5,the value of plot_cost is         : 71.31460053317556 

 At row:24, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:24, column:6,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:6,the value of plot_cost is         : 71.0128967522465 

 At row:24, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:24, column:7,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:7,the value of plot_cost is         : 70.71200103171998 

 At row:24, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:24, column:8,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:8,the value of plot_cost is         : 70.41191337159594 

 At row:24, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:24, column:9,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:9,the value of plot_cost is         : 70.11263377187446 

 At row:24, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:24, column:10,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:10,the value of plot_cost is         : 69.81416223255545 

 At row:24, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:24, column:11,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:11,the value of plot_cost is         : 69.51649875363897 

 At row:24, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:24, column:12,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:12,the value of plot_cost is         : 69.219643335125 

 At row:24, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:24, column:13,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:13,the value of plot_cost is         : 68.92359597701356 

 At row:24, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:24, column:14,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:14,the value of plot_cost is         : 68.62835667930463 

 At row:24, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:24, column:15,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:15,the value of plot_cost is         : 68.33392544199822 

 At row:24, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:24, column:16,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:16,the value of plot_cost is         : 68.04030226509431 

 At row:24, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:24, column:17,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:17,the value of plot_cost is         : 67.74748714859292 

 At row:24, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:24, column:18,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:18,the value of plot_cost is         : 67.45548009249404 

 At row:24, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:24, column:19,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:19,the value of plot_cost is         : 67.16428109679771 

 At row:24, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:24, column:20,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:20,the value of plot_cost is         : 66.87389016150387 

 At row:24, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:24, column:21,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:21,the value of plot_cost is         : 66.58430728661251 

 At row:24, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:24, column:22,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:22,the value of plot_cost is         : 66.29553247212371 

 At row:24, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:24, column:23,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:23,the value of plot_cost is         : 66.00756571803743 

 At row:24, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:24, column:24,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:24,the value of plot_cost is         : 65.72040702435365 

 At row:24, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:24, column:25,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:25,the value of plot_cost is         : 65.43405639107237 

 At row:24, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:24, column:26,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:26,the value of plot_cost is         : 65.14851381819362 

 At row:24, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:24, column:27,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:27,the value of plot_cost is         : 64.86377930571739 

 At row:24, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:24, column:28,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:28,the value of plot_cost is         : 64.57985285364366 

 At row:24, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:24, column:29,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:29,the value of plot_cost is         : 64.29673446197246 

 At row:24, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:24, column:30,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:30,the value of plot_cost is         : 64.01442413070377 

 At row:24, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:24, column:31,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:31,the value of plot_cost is         : 63.73292185983759 

 At row:24, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:24, column:32,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:32,the value of plot_cost is         : 63.45222764937393 

 At row:24, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:24, column:33,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:33,the value of plot_cost is         : 63.17234149931278 

 At row:24, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:24, column:34,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:34,the value of plot_cost is         : 62.89326340965415 

 At row:24, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:24, column:35,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:35,the value of plot_cost is         : 62.61499338039805 

 At row:24, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:24, column:36,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:36,the value of plot_cost is         : 62.33753141154444 

 At row:24, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:24, column:37,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:37,the value of plot_cost is         : 62.060877503093344 

 At row:24, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:24, column:38,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:38,the value of plot_cost is         : 61.785031655044776 

 At row:24, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:24, column:39,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:39,the value of plot_cost is         : 61.50999386739873 

 At row:24, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:24, column:40,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:40,the value of plot_cost is         : 61.2357641401552 

 At row:24, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:24, column:41,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:41,the value of plot_cost is         : 60.962342473314166 

 At row:24, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:24, column:42,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:42,the value of plot_cost is         : 60.689728866875654 

 At row:24, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:24, column:43,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:43,the value of plot_cost is         : 60.41792332083966 

 At row:24, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:24, column:44,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:44,the value of plot_cost is         : 60.146925835206176 

 At row:24, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:24, column:45,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:45,the value of plot_cost is         : 59.87673640997522 

 At row:24, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:24, column:46,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:46,the value of plot_cost is         : 59.60735504514676 

 At row:24, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:24, column:47,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:47,the value of plot_cost is         : 59.33878174072083 

 At row:24, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:24, column:48,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:48,the value of plot_cost is         : 59.07101649669741 

 At row:24, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:24, column:49,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:49,the value of plot_cost is         : 58.8040593130765 

 At row:24, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:24, column:50,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:50,the value of plot_cost is         : 58.53791018985812 

 At row:24, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:24, column:51,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:51,the value of plot_cost is         : 58.272569127042246 

 At row:24, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:24, column:52,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:52,the value of plot_cost is         : 58.00803612462888 

 At row:24, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:24, column:53,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:53,the value of plot_cost is         : 57.74431118261805 

 At row:24, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:24, column:54,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:54,the value of plot_cost is         : 57.481394301009715 

 At row:24, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:24, column:55,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:55,the value of plot_cost is         : 57.2192854798039 

 At row:24, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:24, column:56,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:56,the value of plot_cost is         : 56.957984719000606 

 At row:24, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:24, column:57,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:57,the value of plot_cost is         : 56.69749201859981 

 At row:24, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:24, column:58,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:58,the value of plot_cost is         : 56.43780737860155 

 At row:24, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:24, column:59,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:59,the value of plot_cost is         : 56.1789307990058 

 At row:24, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:24, column:60,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:60,the value of plot_cost is         : 55.920862279812546 

 At row:24, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:24, column:61,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:61,the value of plot_cost is         : 55.66360182102183 

 At row:24, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:24, column:62,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:62,the value of plot_cost is         : 55.407149422633616 

 At row:24, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:24, column:63,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:63,the value of plot_cost is         : 55.15150508464793 

 At row:24, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:24, column:64,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:64,the value of plot_cost is         : 54.89666880706475 

 At row:24, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:24, column:65,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:65,the value of plot_cost is         : 54.642640589884095 

 At row:24, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:24, column:66,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:66,the value of plot_cost is         : 54.38942043310594 

 At row:24, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:24, column:67,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:67,the value of plot_cost is         : 54.13700833673031 

 At row:24, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:24, column:68,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:68,the value of plot_cost is         : 53.88540430075719 

 At row:24, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:24, column:69,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:69,the value of plot_cost is         : 53.63460832518658 

 At row:24, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:24, column:70,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:70,the value of plot_cost is         : 53.384620410018506 

 At row:24, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:24, column:71,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:71,the value of plot_cost is         : 53.13544055525293 

 At row:24, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:24, column:72,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:72,the value of plot_cost is         : 52.887068760889875 

 At row:24, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:24, column:73,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:73,the value of plot_cost is         : 52.639505026929335 

 At row:24, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:24, column:74,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:74,the value of plot_cost is         : 52.39274935337131 

 At row:24, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:24, column:75,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:75,the value of plot_cost is         : 52.1468017402158 

 At row:24, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:24, column:76,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:76,the value of plot_cost is         : 51.9016621874628 

 At row:24, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:24, column:77,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:77,the value of plot_cost is         : 51.657330695112314 

 At row:24, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:24, column:78,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:78,the value of plot_cost is         : 51.413807263164344 

 At row:24, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:24, column:79,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:79,the value of plot_cost is         : 51.171091891618886 

 At row:24, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:24, column:80,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:80,the value of plot_cost is         : 50.929184580475955 

 At row:24, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:24, column:81,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:81,the value of plot_cost is         : 50.68808532973553 

 At row:24, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:24, column:82,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:82,the value of plot_cost is         : 50.44779413939763 

 At row:24, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:24, column:83,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:83,the value of plot_cost is         : 50.208311009462236 

 At row:24, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:24, column:84,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:84,the value of plot_cost is         : 49.96963593992936 

 At row:24, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:24, column:85,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:85,the value of plot_cost is         : 49.73176893079901 

 At row:24, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:24, column:86,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:86,the value of plot_cost is         : 49.49470998207116 

 At row:24, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:24, column:87,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:87,the value of plot_cost is         : 49.25845909374582 

 At row:24, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:24, column:88,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:88,the value of plot_cost is         : 49.02301626582302 

 At row:24, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:24, column:89,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:89,the value of plot_cost is         : 48.7883814983027 

 At row:24, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:24, column:90,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:90,the value of plot_cost is         : 48.55455479118492 

 At row:24, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:24, column:91,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:91,the value of plot_cost is         : 48.32153614446965 

 At row:24, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:24, column:92,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:92,the value of plot_cost is         : 48.089325558156894 

 At row:24, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:24, column:93,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:93,the value of plot_cost is         : 47.85792303224666 

 At row:24, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:24, column:94,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:94,the value of plot_cost is         : 47.62732856673894 

 At row:24, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:24, column:95,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:95,the value of plot_cost is         : 47.39754216163372 

 At row:24, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:24, column:96,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:96,the value of plot_cost is         : 47.16856381693102 

 At row:24, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:24, column:97,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:97,the value of plot_cost is         : 46.94039353263084 

 At row:24, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:24, column:98,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:98,the value of plot_cost is         : 46.713031308733186 

 At row:24, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:24, column:99,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:99,the value of plot_cost is         : 46.48647714523804 

 At row:24, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:24, column:100,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:100,the value of plot_cost is         : 46.2607310421454 

 At row:24, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:24, column:101,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:101,the value of plot_cost is         : 46.03579299945527 

 At row:24, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:24, column:102,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:102,the value of plot_cost is         : 45.81166301716767 

 At row:24, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:24, column:103,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:103,the value of plot_cost is         : 45.58834109528258 

 At row:24, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:24, column:104,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:104,the value of plot_cost is         : 45.36582723380002 

 At row:24, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:24, column:105,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:105,the value of plot_cost is         : 45.144121432719956 

 At row:24, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:24, column:106,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:106,the value of plot_cost is         : 44.923223692042406 

 At row:24, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:24, column:107,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:107,the value of plot_cost is         : 44.703134011767375 

 At row:24, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:24, column:108,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:108,the value of plot_cost is         : 44.483852391894864 

 At row:24, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:24, column:109,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:109,the value of plot_cost is         : 44.265378832424865 

 At row:24, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:24, column:110,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:110,the value of plot_cost is         : 44.04771333335737 

 At row:24, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:24, column:111,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:111,the value of plot_cost is         : 43.830855894692405 

 At row:24, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:24, column:112,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:112,the value of plot_cost is         : 43.61480651642996 

 At row:24, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:24, column:113,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:113,the value of plot_cost is         : 43.39956519857003 

 At row:24, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:24, column:114,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:114,the value of plot_cost is         : 43.185131941112594 

 At row:24, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:24, column:115,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:115,the value of plot_cost is         : 42.971506744057685 

 At row:24, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:24, column:116,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:116,the value of plot_cost is         : 42.7586896074053 

 At row:24, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:24, column:117,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:117,the value of plot_cost is         : 42.54668053115542 

 At row:24, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:24, column:118,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:118,the value of plot_cost is         : 42.335479515308045 

 At row:24, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:24, column:119,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:119,the value of plot_cost is         : 42.1250865598632 

 At row:24, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:24, column:120,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:120,the value of plot_cost is         : 41.915501664820866 

 At row:24, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:24, column:121,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:121,the value of plot_cost is         : 41.70672483018105 

 At row:24, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:24, column:122,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:122,the value of plot_cost is         : 41.49875605594375 

 At row:24, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:24, column:123,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:123,the value of plot_cost is         : 41.29159534210897 

 At row:24, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:24, column:124,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:124,the value of plot_cost is         : 41.08524268867669 

 At row:24, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:24, column:125,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:125,the value of plot_cost is         : 40.87969809564693 

 At row:24, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:24, column:126,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:126,the value of plot_cost is         : 40.67496156301969 

 At row:24, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:24, column:127,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:127,the value of plot_cost is         : 40.47103309079496 

 At row:24, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:24, column:128,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:128,the value of plot_cost is         : 40.26791267897275 

 At row:24, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:24, column:129,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:129,the value of plot_cost is         : 40.06560032755306 

 At row:24, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:24, column:130,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:130,the value of plot_cost is         : 39.86409603653586 

 At row:24, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:24, column:131,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:131,the value of plot_cost is         : 39.6633998059212 

 At row:24, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:24, column:132,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:132,the value of plot_cost is         : 39.463511635709054 

 At row:24, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:24, column:133,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:133,the value of plot_cost is         : 39.26443152589942 

 At row:24, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:24, column:134,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:134,the value of plot_cost is         : 39.066159476492295 

 At row:24, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:24, column:135,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:135,the value of plot_cost is         : 38.868695487487685 

 At row:24, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:24, column:136,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:136,the value of plot_cost is         : 38.672039558885594 

 At row:24, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:24, column:137,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:137,the value of plot_cost is         : 38.476191690686015 

 At row:24, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:24, column:138,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:138,the value of plot_cost is         : 38.28115188288896 

 At row:24, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:24, column:139,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:139,the value of plot_cost is         : 38.08692013549441 

 At row:24, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:24, column:140,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:140,the value of plot_cost is         : 37.89349644850237 

 At row:24, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:24, column:141,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:141,the value of plot_cost is         : 37.70088082191286 

 At row:24, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:24, column:142,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:142,the value of plot_cost is         : 37.509073255725866 

 At row:24, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:24, column:143,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:143,the value of plot_cost is         : 37.318073749941384 

 At row:24, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:24, column:144,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:144,the value of plot_cost is         : 37.127882304559414 

 At row:24, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:24, column:145,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:145,the value of plot_cost is         : 36.93849891957995 

 At row:24, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:24, column:146,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:146,the value of plot_cost is         : 36.74992359500301 

 At row:24, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:24, column:147,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:147,the value of plot_cost is         : 36.562156330828586 

 At row:24, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:24, column:148,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:148,the value of plot_cost is         : 36.37519712705667 

 At row:24, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:24, column:149,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:149,the value of plot_cost is         : 36.18904598368727 

 At row:24, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:24, column:150,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:150,the value of plot_cost is         : 36.00370290072039 

 At row:24, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:24, column:151,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:151,the value of plot_cost is         : 35.81916787815603 

 At row:24, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:24, column:152,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:152,the value of plot_cost is         : 35.63544091599418 

 At row:24, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:24, column:153,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:153,the value of plot_cost is         : 35.45252201423485 

 At row:24, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:24, column:154,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:154,the value of plot_cost is         : 35.270411172878035 

 At row:24, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:24, column:155,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:155,the value of plot_cost is         : 35.08910839192372 

 At row:24, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:24, column:156,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:156,the value of plot_cost is         : 34.90861367137193 

 At row:24, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:24, column:157,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:157,the value of plot_cost is         : 34.72892701122266 

 At row:24, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:24, column:158,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:158,the value of plot_cost is         : 34.5500484114759 

 At row:24, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:24, column:159,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:159,the value of plot_cost is         : 34.37197787213165 

 At row:24, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:24, column:160,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:160,the value of plot_cost is         : 34.19471539318992 

 At row:24, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:24, column:161,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:161,the value of plot_cost is         : 34.01826097465071 

 At row:24, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:24, column:162,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:162,the value of plot_cost is         : 33.842614616514005 

 At row:24, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:24, column:163,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:163,the value of plot_cost is         : 33.66777631877983 

 At row:24, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:24, column:164,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:164,the value of plot_cost is         : 33.49374608144816 

 At row:24, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:24, column:165,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:165,the value of plot_cost is         : 33.320523904519 

 At row:24, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:24, column:166,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:166,the value of plot_cost is         : 33.14810978799236 

 At row:24, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:24, column:167,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:167,the value of plot_cost is         : 32.97650373186824 

 At row:24, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:24, column:168,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:168,the value of plot_cost is         : 32.80570573614663 

 At row:24, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:24, column:169,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:169,the value of plot_cost is         : 32.63571580082754 

 At row:24, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:24, column:170,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:170,the value of plot_cost is         : 32.46653392591096 

 At row:24, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:24, column:171,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:171,the value of plot_cost is         : 32.29816011139689 

 At row:24, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:24, column:172,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:172,the value of plot_cost is         : 32.130594357285354 

 At row:24, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:24, column:173,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:173,the value of plot_cost is         : 31.963836663576313 

 At row:24, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:24, column:174,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:174,the value of plot_cost is         : 31.7978870302698 

 At row:24, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:24, column:175,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:175,the value of plot_cost is         : 31.632745457365793 

 At row:24, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:24, column:176,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:176,the value of plot_cost is         : 31.468411944864304 

 At row:24, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:24, column:177,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:177,the value of plot_cost is         : 31.304886492765334 

 At row:24, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:24, column:178,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:178,the value of plot_cost is         : 31.14216910106888 

 At row:24, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:24, column:179,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:179,the value of plot_cost is         : 30.980259769774932 

 At row:24, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:24, column:180,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:180,the value of plot_cost is         : 30.819158498883496 

 At row:24, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:24, column:181,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:181,the value of plot_cost is         : 30.658865288394587 

 At row:24, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:24, column:182,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:182,the value of plot_cost is         : 30.499380138308197 

 At row:24, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:24, column:183,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:183,the value of plot_cost is         : 30.340703048624317 

 At row:24, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:24, column:184,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:184,the value of plot_cost is         : 30.182834019342952 

 At row:24, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:24, column:185,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:185,the value of plot_cost is         : 30.02577305046409 

 At row:24, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:24, column:186,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:186,the value of plot_cost is         : 29.869520141987753 

 At row:24, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:24, column:187,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:187,the value of plot_cost is         : 29.714075293913936 

 At row:24, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:24, column:188,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:188,the value of plot_cost is         : 29.559438506242632 

 At row:24, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:24, column:189,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:189,the value of plot_cost is         : 29.405609778973833 

 At row:24, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:24, column:190,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:190,the value of plot_cost is         : 29.252589112107547 

 At row:24, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:24, column:191,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:191,the value of plot_cost is         : 29.100376505643794 

 At row:24, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:24, column:192,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:192,the value of plot_cost is         : 28.948971959582547 

 At row:24, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:24, column:193,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:193,the value of plot_cost is         : 28.79837547392382 

 At row:24, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:24, column:194,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:194,the value of plot_cost is         : 28.648587048667604 

 At row:24, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:24, column:195,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:195,the value of plot_cost is         : 28.499606683813898 

 At row:24, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:24, column:196,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:196,the value of plot_cost is         : 28.35143437936271 

 At row:24, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:24, column:197,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:197,the value of plot_cost is         : 28.20407013531404 

 At row:24, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:24, column:198,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:198,the value of plot_cost is         : 28.05751395166789 

 At row:24, column:199,the value of plot_t0 is           : 3.0
 At row:24, column:199,the value of plot_t1 is           : -0.5175879396984925
 At row:24, column:199,the value of plot_cost is         : 27.911765828424244 

 At row:25, column:0,the value of plot_t0 is           : -1.0
 At row:25, column:0,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:0,the value of plot_cost is         : 71.50595616272317 

 At row:25, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:25, column:1,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:1,the value of plot_cost is         : 71.20289022282986 

 At row:25, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:25, column:2,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:2,the value of plot_cost is         : 70.90063234333908 

 At row:25, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:25, column:3,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:3,the value of plot_cost is         : 70.59918252425082 

 At row:25, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:25, column:4,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:4,the value of plot_cost is         : 70.29854076556508 

 At row:25, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:25, column:5,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:5,the value of plot_cost is         : 69.99870706728184 

 At row:25, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:25, column:6,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:6,the value of plot_cost is         : 69.69968142940112 

 At row:25, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:25, column:7,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:7,the value of plot_cost is         : 69.40146385192293 

 At row:25, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:25, column:8,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:8,the value of plot_cost is         : 69.10405433484725 

 At row:25, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:25, column:9,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:9,the value of plot_cost is         : 68.80745287817409 

 At row:25, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:25, column:10,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:10,the value of plot_cost is         : 68.51165948190341 

 At row:25, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:25, column:11,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:11,the value of plot_cost is         : 68.21667414603526 

 At row:25, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:25, column:12,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:12,the value of plot_cost is         : 67.92249687056963 

 At row:25, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:25, column:13,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:13,the value of plot_cost is         : 67.62912765550654 

 At row:25, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:25, column:14,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:14,the value of plot_cost is         : 67.33656650084593 

 At row:25, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:25, column:15,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:15,the value of plot_cost is         : 67.04481340658785 

 At row:25, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:25, column:16,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:16,the value of plot_cost is         : 66.7538683727323 

 At row:25, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:25, column:17,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:17,the value of plot_cost is         : 66.46373139927924 

 At row:25, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:25, column:18,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:18,the value of plot_cost is         : 66.17440248622871 

 At row:25, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:25, column:19,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:19,the value of plot_cost is         : 65.88588163358068 

 At row:25, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:25, column:20,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:20,the value of plot_cost is         : 65.59816884133517 

 At row:25, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:25, column:21,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:21,the value of plot_cost is         : 65.31126410949219 

 At row:25, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:25, column:22,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:22,the value of plot_cost is         : 65.0251674380517 

 At row:25, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:25, column:23,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:23,the value of plot_cost is         : 64.73987882701374 

 At row:25, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:25, column:24,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:24,the value of plot_cost is         : 64.4553982763783 

 At row:25, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:25, column:25,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:25,the value of plot_cost is         : 64.17172578614536 

 At row:25, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:25, column:26,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:26,the value of plot_cost is         : 63.888861356314955 

 At row:25, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:25, column:27,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:27,the value of plot_cost is         : 63.606804986887056 

 At row:25, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:25, column:28,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:28,the value of plot_cost is         : 63.32555667786167 

 At row:25, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:25, column:29,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:29,the value of plot_cost is         : 63.0451164292388 

 At row:25, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:25, column:30,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:30,the value of plot_cost is         : 62.765484241018456 

 At row:25, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:25, column:31,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:31,the value of plot_cost is         : 62.48666011320061 

 At row:25, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:25, column:32,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:32,the value of plot_cost is         : 62.20864404578527 

 At row:25, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:25, column:33,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:33,the value of plot_cost is         : 61.93143603877247 

 At row:25, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:25, column:34,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:34,the value of plot_cost is         : 61.65503609216218 

 At row:25, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:25, column:35,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:35,the value of plot_cost is         : 61.37944420595439 

 At row:25, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:25, column:36,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:36,the value of plot_cost is         : 61.10466038014913 

 At row:25, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:25, column:37,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:37,the value of plot_cost is         : 60.830684614746374 

 At row:25, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:25, column:38,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:38,the value of plot_cost is         : 60.557516909746155 

 At row:25, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:25, column:39,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:39,the value of plot_cost is         : 60.28515726514843 

 At row:25, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:25, column:40,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:40,the value of plot_cost is         : 60.013605680953226 

 At row:25, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:25, column:41,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:41,the value of plot_cost is         : 59.74286215716053 

 At row:25, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:25, column:42,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:42,the value of plot_cost is         : 59.47292669377035 

 At row:25, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:25, column:43,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:43,the value of plot_cost is         : 59.2037992907827 

 At row:25, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:25, column:44,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:44,the value of plot_cost is         : 58.93547994819755 

 At row:25, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:25, column:45,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:45,the value of plot_cost is         : 58.667968666014914 

 At row:25, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:25, column:46,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:46,the value of plot_cost is         : 58.40126544423481 

 At row:25, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:25, column:47,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:47,the value of plot_cost is         : 58.13537028285722 

 At row:25, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:25, column:48,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:48,the value of plot_cost is         : 57.87028318188213 

 At row:25, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:25, column:49,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:49,the value of plot_cost is         : 57.60600414130956 

 At row:25, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:25, column:50,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:50,the value of plot_cost is         : 57.342533161139514 

 At row:25, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:25, column:51,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:51,the value of plot_cost is         : 57.07987024137197 

 At row:25, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:25, column:52,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:52,the value of plot_cost is         : 56.81801538200695 

 At row:25, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:25, column:53,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:53,the value of plot_cost is         : 56.55696858304444 

 At row:25, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:25, column:54,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:54,the value of plot_cost is         : 56.29672984448445 

 At row:25, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:25, column:55,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:55,the value of plot_cost is         : 56.03729916632696 

 At row:25, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:25, column:56,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:56,the value of plot_cost is         : 55.77867654857201 

 At row:25, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:25, column:57,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:57,the value of plot_cost is         : 55.520861991219554 

 At row:25, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:25, column:58,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:58,the value of plot_cost is         : 55.26385549426962 

 At row:25, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:25, column:59,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:59,the value of plot_cost is         : 55.00765705772221 

 At row:25, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:25, column:60,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:60,the value of plot_cost is         : 54.752266681577304 

 At row:25, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:25, column:61,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:61,the value of plot_cost is         : 54.497684365834914 

 At row:25, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:25, column:62,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:62,the value of plot_cost is         : 54.24391011049504 

 At row:25, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:25, column:63,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:63,the value of plot_cost is         : 53.99094391555769 

 At row:25, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:25, column:64,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:64,the value of plot_cost is         : 53.73878578102284 

 At row:25, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:25, column:65,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:65,the value of plot_cost is         : 53.487435706890516 

 At row:25, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:25, column:66,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:66,the value of plot_cost is         : 53.236893693160695 

 At row:25, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:25, column:67,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:67,the value of plot_cost is         : 52.98715973983341 

 At row:25, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:25, column:68,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:68,the value of plot_cost is         : 52.738233846908635 

 At row:25, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:25, column:69,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:69,the value of plot_cost is         : 52.49011601438636 

 At row:25, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:25, column:70,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:70,the value of plot_cost is         : 52.24280624226661 

 At row:25, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:25, column:71,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:71,the value of plot_cost is         : 51.996304530549374 

 At row:25, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:25, column:72,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:72,the value of plot_cost is         : 51.75061087923464 

 At row:25, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:25, column:73,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:73,the value of plot_cost is         : 51.50572528832244 

 At row:25, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:25, column:74,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:74,the value of plot_cost is         : 51.26164775781275 

 At row:25, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:25, column:75,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:75,the value of plot_cost is         : 51.01837828770557 

 At row:25, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:25, column:76,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:76,the value of plot_cost is         : 50.77591687800091 

 At row:25, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:25, column:77,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:77,the value of plot_cost is         : 50.53426352869877 

 At row:25, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:25, column:78,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:78,the value of plot_cost is         : 50.29341823979914 

 At row:25, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:25, column:79,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:79,the value of plot_cost is         : 50.05338101130202 

 At row:25, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:25, column:80,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:80,the value of plot_cost is         : 49.814151843207426 

 At row:25, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:25, column:81,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:81,the value of plot_cost is         : 49.575730735515336 

 At row:25, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:25, column:82,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:82,the value of plot_cost is         : 49.33811768822576 

 At row:25, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:25, column:83,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:83,the value of plot_cost is         : 49.10131270133871 

 At row:25, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:25, column:84,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:84,the value of plot_cost is         : 48.86531577485416 

 At row:25, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:25, column:85,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:85,the value of plot_cost is         : 48.63012690877214 

 At row:25, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:25, column:86,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:86,the value of plot_cost is         : 48.395746103092634 

 At row:25, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:25, column:87,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:87,the value of plot_cost is         : 48.16217335781564 

 At row:25, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:25, column:88,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:88,the value of plot_cost is         : 47.92940867294115 

 At row:25, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:25, column:89,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:89,the value of plot_cost is         : 47.697452048469195 

 At row:25, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:25, column:90,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:90,the value of plot_cost is         : 47.466303484399745 

 At row:25, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:25, column:91,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:91,the value of plot_cost is         : 47.23596298073281 

 At row:25, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:25, column:92,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:92,the value of plot_cost is         : 47.00643053746838 

 At row:25, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:25, column:93,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:93,the value of plot_cost is         : 46.77770615460648 

 At row:25, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:25, column:94,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:94,the value of plot_cost is         : 46.549789832147084 

 At row:25, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:25, column:95,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:95,the value of plot_cost is         : 46.32268157009022 

 At row:25, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:25, column:96,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:96,the value of plot_cost is         : 46.096381368435864 

 At row:25, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:25, column:97,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:97,the value of plot_cost is         : 45.87088922718401 

 At row:25, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:25, column:98,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:98,the value of plot_cost is         : 45.64620514633469 

 At row:25, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:25, column:99,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:99,the value of plot_cost is         : 45.42232912588788 

 At row:25, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:25, column:100,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:100,the value of plot_cost is         : 45.19926116584357 

 At row:25, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:25, column:101,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:101,the value of plot_cost is         : 44.977001266201796 

 At row:25, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:25, column:102,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:102,the value of plot_cost is         : 44.75554942696252 

 At row:25, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:25, column:103,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:103,the value of plot_cost is         : 44.534905648125765 

 At row:25, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:25, column:104,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:104,the value of plot_cost is         : 44.315069929691525 

 At row:25, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:25, column:105,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:105,the value of plot_cost is         : 44.096042271659805 

 At row:25, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:25, column:106,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:106,the value of plot_cost is         : 43.8778226740306 

 At row:25, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:25, column:107,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:107,the value of plot_cost is         : 43.66041113680391 

 At row:25, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:25, column:108,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:108,the value of plot_cost is         : 43.443807659979726 

 At row:25, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:25, column:109,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:109,the value of plot_cost is         : 43.22801224355806 

 At row:25, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:25, column:110,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:110,the value of plot_cost is         : 43.01302488753891 

 At row:25, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:25, column:111,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:111,the value of plot_cost is         : 42.79884559192228 

 At row:25, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:25, column:112,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:112,the value of plot_cost is         : 42.585474356708154 

 At row:25, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:25, column:113,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:113,the value of plot_cost is         : 42.37291118189656 

 At row:25, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:25, column:114,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:114,the value of plot_cost is         : 42.16115606748747 

 At row:25, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:25, column:115,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:115,the value of plot_cost is         : 41.950209013480894 

 At row:25, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:25, column:116,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:116,the value of plot_cost is         : 41.740070019876846 

 At row:25, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:25, column:117,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:117,the value of plot_cost is         : 41.530739086675304 

 At row:25, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:25, column:118,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:118,the value of plot_cost is         : 41.32221621387627 

 At row:25, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:25, column:119,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:119,the value of plot_cost is         : 41.11450140147976 

 At row:25, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:25, column:120,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:120,the value of plot_cost is         : 40.90759464948576 

 At row:25, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:25, column:121,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:121,the value of plot_cost is         : 40.70149595789428 

 At row:25, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:25, column:122,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:122,the value of plot_cost is         : 40.496205326705315 

 At row:25, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:25, column:123,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:123,the value of plot_cost is         : 40.29172275591886 

 At row:25, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:25, column:124,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:124,the value of plot_cost is         : 40.08804824553493 

 At row:25, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:25, column:125,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:125,the value of plot_cost is         : 39.8851817955535 

 At row:25, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:25, column:126,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:126,the value of plot_cost is         : 39.6831234059746 

 At row:25, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:25, column:127,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:127,the value of plot_cost is         : 39.48187307679821 

 At row:25, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:25, column:128,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:128,the value of plot_cost is         : 39.281430808024325 

 At row:25, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:25, column:129,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:129,the value of plot_cost is         : 39.08179659965296 

 At row:25, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:25, column:130,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:130,the value of plot_cost is         : 38.882970451684116 

 At row:25, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:25, column:131,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:131,the value of plot_cost is         : 38.684952364117784 

 At row:25, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:25, column:132,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:132,the value of plot_cost is         : 38.48774233695397 

 At row:25, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:25, column:133,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:133,the value of plot_cost is         : 38.29134037019267 

 At row:25, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:25, column:134,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:134,the value of plot_cost is         : 38.095746463833876 

 At row:25, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:25, column:135,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:135,the value of plot_cost is         : 37.900960617877615 

 At row:25, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:25, column:136,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:136,the value of plot_cost is         : 37.70698283232386 

 At row:25, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:25, column:137,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:137,the value of plot_cost is         : 37.51381310717262 

 At row:25, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:25, column:138,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:138,the value of plot_cost is         : 37.32145144242389 

 At row:25, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:25, column:139,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:139,the value of plot_cost is         : 37.12989783807768 

 At row:25, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:25, column:140,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:140,the value of plot_cost is         : 36.93915229413398 

 At row:25, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:25, column:141,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:141,the value of plot_cost is         : 36.749214810592804 

 At row:25, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:25, column:142,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:142,the value of plot_cost is         : 36.56008538745414 

 At row:25, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:25, column:143,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:143,the value of plot_cost is         : 36.37176402471798 

 At row:25, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:25, column:144,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:144,the value of plot_cost is         : 36.18425072238435 

 At row:25, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:25, column:145,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:145,the value of plot_cost is         : 35.997545480453226 

 At row:25, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:25, column:146,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:146,the value of plot_cost is         : 35.81164829892463 

 At row:25, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:25, column:147,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:147,the value of plot_cost is         : 35.62655917779854 

 At row:25, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:25, column:148,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:148,the value of plot_cost is         : 35.44227811707496 

 At row:25, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:25, column:149,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:149,the value of plot_cost is         : 35.258805116753905 

 At row:25, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:25, column:150,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:150,the value of plot_cost is         : 35.07614017683536 

 At row:25, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:25, column:151,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:151,the value of plot_cost is         : 34.894283297319326 

 At row:25, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:25, column:152,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:152,the value of plot_cost is         : 34.71323447820581 

 At row:25, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:25, column:153,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:153,the value of plot_cost is         : 34.53299371949482 

 At row:25, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:25, column:154,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:154,the value of plot_cost is         : 34.35356102118633 

 At row:25, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:25, column:155,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:155,the value of plot_cost is         : 34.17493638328036 

 At row:25, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:25, column:156,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:156,the value of plot_cost is         : 33.99711980577691 

 At row:25, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:25, column:157,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:157,the value of plot_cost is         : 33.820111288675974 

 At row:25, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:25, column:158,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:158,the value of plot_cost is         : 33.64391083197754 

 At row:25, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:25, column:159,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:159,the value of plot_cost is         : 33.46851843568164 

 At row:25, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:25, column:160,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:160,the value of plot_cost is         : 33.29393409978824 

 At row:25, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:25, column:161,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:161,the value of plot_cost is         : 33.120157824297365 

 At row:25, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:25, column:162,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:162,the value of plot_cost is         : 32.947189609209 

 At row:25, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:25, column:163,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:163,the value of plot_cost is         : 32.77502945452315 

 At row:25, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:25, column:164,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:164,the value of plot_cost is         : 32.603677360239814 

 At row:25, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:25, column:165,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:165,the value of plot_cost is         : 32.433133326359 

 At row:25, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:25, column:166,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:166,the value of plot_cost is         : 32.2633973528807 

 At row:25, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:25, column:167,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:167,the value of plot_cost is         : 32.09446943980492 

 At row:25, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:25, column:168,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:168,the value of plot_cost is         : 31.926349587131636 

 At row:25, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:25, column:169,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:169,the value of plot_cost is         : 31.759037794860877 

 At row:25, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:25, column:170,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:170,the value of plot_cost is         : 31.592534062992634 

 At row:25, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:25, column:171,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:171,the value of plot_cost is         : 31.426838391526903 

 At row:25, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:25, column:172,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:172,the value of plot_cost is         : 31.261950780463692 

 At row:25, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:25, column:173,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:173,the value of plot_cost is         : 31.097871229802998 

 At row:25, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:25, column:174,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:174,the value of plot_cost is         : 30.934599739544815 

 At row:25, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:25, column:175,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:175,the value of plot_cost is         : 30.772136309689145 

 At row:25, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:25, column:176,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:176,the value of plot_cost is         : 30.610480940236 

 At row:25, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:25, column:177,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:177,the value of plot_cost is         : 30.44963363118536 

 At row:25, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:25, column:178,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:178,the value of plot_cost is         : 30.289594382537235 

 At row:25, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:25, column:179,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:179,the value of plot_cost is         : 30.130363194291633 

 At row:25, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:25, column:180,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:180,the value of plot_cost is         : 29.971940066448536 

 At row:25, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:25, column:181,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:181,the value of plot_cost is         : 29.814324999007955 

 At row:25, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:25, column:182,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:182,the value of plot_cost is         : 29.657517991969897 

 At row:25, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:25, column:183,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:183,the value of plot_cost is         : 29.50151904533435 

 At row:25, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:25, column:184,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:184,the value of plot_cost is         : 29.34632815910132 

 At row:25, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:25, column:185,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:185,the value of plot_cost is         : 29.1919453332708 

 At row:25, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:25, column:186,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:186,the value of plot_cost is         : 29.038370567842804 

 At row:25, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:25, column:187,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:187,the value of plot_cost is         : 28.885603862817316 

 At row:25, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:25, column:188,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:188,the value of plot_cost is         : 28.733645218194347 

 At row:25, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:25, column:189,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:189,the value of plot_cost is         : 28.58249463397389 

 At row:25, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:25, column:190,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:190,the value of plot_cost is         : 28.432152110155947 

 At row:25, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:25, column:191,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:191,the value of plot_cost is         : 28.28261764674052 

 At row:25, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:25, column:192,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:192,the value of plot_cost is         : 28.133891243727607 

 At row:25, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:25, column:193,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:193,the value of plot_cost is         : 27.985972901117215 

 At row:25, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:25, column:194,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:194,the value of plot_cost is         : 27.83886261890933 

 At row:25, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:25, column:195,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:195,the value of plot_cost is         : 27.692560397103968 

 At row:25, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:25, column:196,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:196,the value of plot_cost is         : 27.547066235701116 

 At row:25, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:25, column:197,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:197,the value of plot_cost is         : 27.402380134700778 

 At row:25, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:25, column:198,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:198,the value of plot_cost is         : 27.258502094102965 

 At row:25, column:199,the value of plot_t0 is           : 3.0
 At row:25, column:199,the value of plot_t1 is           : -0.4974874371859297
 At row:25, column:199,the value of plot_cost is         : 27.11543211390766 

 At row:26, column:0,the value of plot_t0 is           : -1.0
 At row:26, column:0,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:0,the value of plot_cost is         : 70.18925463642692 

 At row:26, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:26, column:1,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:1,the value of plot_cost is         : 69.88886683958196 

 At row:26, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:26, column:2,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:2,the value of plot_cost is         : 69.58928710313951 

 At row:26, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:26, column:3,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:3,the value of plot_cost is         : 69.29051542709959 

 At row:26, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:26, column:4,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:4,the value of plot_cost is         : 68.99255181146218 

 At row:26, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:26, column:5,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:5,the value of plot_cost is         : 68.69539625622728 

 At row:26, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:26, column:6,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:6,the value of plot_cost is         : 68.39904876139491 

 At row:26, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:26, column:7,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:7,the value of plot_cost is         : 68.10350932696504 

 At row:26, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:26, column:8,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:8,the value of plot_cost is         : 67.80877795293769 

 At row:26, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:26, column:9,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:9,the value of plot_cost is         : 67.51485463931284 

 At row:26, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:26, column:10,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:10,the value of plot_cost is         : 67.22173938609053 

 At row:26, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:26, column:11,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:11,the value of plot_cost is         : 66.92943219327071 

 At row:26, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:26, column:12,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:12,the value of plot_cost is         : 66.63793306085343 

 At row:26, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:26, column:13,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:13,the value of plot_cost is         : 66.34724198883866 

 At row:26, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:26, column:14,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:14,the value of plot_cost is         : 66.05735897722639 

 At row:26, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:26, column:15,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:15,the value of plot_cost is         : 65.76828402601664 

 At row:26, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:26, column:16,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:16,the value of plot_cost is         : 65.48001713520942 

 At row:26, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:26, column:17,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:17,the value of plot_cost is         : 65.1925583048047 

 At row:26, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:26, column:18,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:18,the value of plot_cost is         : 64.90590753480251 

 At row:26, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:26, column:19,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:19,the value of plot_cost is         : 64.62006482520282 

 At row:26, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:26, column:20,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:20,the value of plot_cost is         : 64.33503017600565 

 At row:26, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:26, column:21,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:21,the value of plot_cost is         : 64.05080358721099 

 At row:26, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:26, column:22,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:22,the value of plot_cost is         : 63.76738505881885 

 At row:26, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:26, column:23,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:23,the value of plot_cost is         : 63.48477459082923 

 At row:26, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:26, column:24,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:24,the value of plot_cost is         : 63.20297218324211 

 At row:26, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:26, column:25,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:25,the value of plot_cost is         : 62.92197783605753 

 At row:26, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:26, column:26,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:26,the value of plot_cost is         : 62.641791549275446 

 At row:26, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:26, column:27,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:27,the value of plot_cost is         : 62.36241332289588 

 At row:26, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:26, column:28,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:28,the value of plot_cost is         : 62.08384315691884 

 At row:26, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:26, column:29,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:29,the value of plot_cost is         : 61.8060810513443 

 At row:26, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:26, column:30,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:30,the value of plot_cost is         : 61.52912700617227 

 At row:26, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:26, column:31,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:31,the value of plot_cost is         : 61.252981021402775 

 At row:26, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:26, column:32,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:32,the value of plot_cost is         : 60.97764309703578 

 At row:26, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:26, column:33,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:33,the value of plot_cost is         : 60.70311323307131 

 At row:26, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:26, column:34,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:34,the value of plot_cost is         : 60.429391429509344 

 At row:26, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:26, column:35,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:35,the value of plot_cost is         : 60.1564776863499 

 At row:26, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:26, column:36,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:36,the value of plot_cost is         : 59.88437200359297 

 At row:26, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:26, column:37,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:37,the value of plot_cost is         : 59.61307438123856 

 At row:26, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:26, column:38,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:38,the value of plot_cost is         : 59.342584819286664 

 At row:26, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:26, column:39,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:39,the value of plot_cost is         : 59.07290331773728 

 At row:26, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:26, column:40,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:40,the value of plot_cost is         : 58.80402987659041 

 At row:26, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:26, column:41,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:41,the value of plot_cost is         : 58.53596449584605 

 At row:26, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:26, column:42,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:42,the value of plot_cost is         : 58.26870717550422 

 At row:26, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:26, column:43,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:43,the value of plot_cost is         : 58.0022579155649 

 At row:26, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:26, column:44,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:44,the value of plot_cost is         : 57.73661671602808 

 At row:26, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:26, column:45,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:45,the value of plot_cost is         : 57.47178357689379 

 At row:26, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:26, column:46,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:46,the value of plot_cost is         : 57.20775849816202 

 At row:26, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:26, column:47,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:47,the value of plot_cost is         : 56.94454147983274 

 At row:26, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:26, column:48,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:48,the value of plot_cost is         : 56.68213252190601 

 At row:26, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:26, column:49,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:49,the value of plot_cost is         : 56.420531624381766 

 At row:26, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:26, column:50,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:50,the value of plot_cost is         : 56.15973878726005 

 At row:26, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:26, column:51,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:51,the value of plot_cost is         : 55.89975401054085 

 At row:26, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:26, column:52,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:52,the value of plot_cost is         : 55.640577294224165 

 At row:26, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:26, column:53,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:53,the value of plot_cost is         : 55.38220863830999 

 At row:26, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:26, column:54,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:54,the value of plot_cost is         : 55.124648042798334 

 At row:26, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:26, column:55,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:55,the value of plot_cost is         : 54.86789550768919 

 At row:26, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:26, column:56,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:56,the value of plot_cost is         : 54.61195103298256 

 At row:26, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:26, column:57,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:57,the value of plot_cost is         : 54.356814618678456 

 At row:26, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:26, column:58,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:58,the value of plot_cost is         : 54.10248626477686 

 At row:26, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:26, column:59,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:59,the value of plot_cost is         : 53.84896597127778 

 At row:26, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:26, column:60,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:60,the value of plot_cost is         : 53.596253738181204 

 At row:26, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:26, column:61,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:61,the value of plot_cost is         : 53.344349565487164 

 At row:26, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:26, column:62,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:62,the value of plot_cost is         : 53.093253453195615 

 At row:26, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:26, column:63,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:63,the value of plot_cost is         : 52.8429654013066 

 At row:26, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:26, column:64,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:64,the value of plot_cost is         : 52.59348540982009 

 At row:26, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:26, column:65,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:65,the value of plot_cost is         : 52.34481347873609 

 At row:26, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:26, column:66,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:66,the value of plot_cost is         : 52.09694960805463 

 At row:26, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:26, column:67,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:67,the value of plot_cost is         : 51.849893797775664 

 At row:26, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:26, column:68,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:68,the value of plot_cost is         : 51.60364604789922 

 At row:26, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:26, column:69,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:69,the value of plot_cost is         : 51.358206358425285 

 At row:26, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:26, column:70,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:70,the value of plot_cost is         : 51.113574729353864 

 At row:26, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:26, column:71,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:71,the value of plot_cost is         : 50.86975116068497 

 At row:26, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:26, column:72,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:72,the value of plot_cost is         : 50.62673565241858 

 At row:26, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:26, column:73,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:73,the value of plot_cost is         : 50.38452820455471 

 At row:26, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:26, column:74,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:74,the value of plot_cost is         : 50.14312881709335 

 At row:26, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:26, column:75,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:75,the value of plot_cost is         : 49.90253749003451 

 At row:26, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:26, column:76,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:76,the value of plot_cost is         : 49.662754223378194 

 At row:26, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:26, column:77,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:77,the value of plot_cost is         : 49.423779017124374 

 At row:26, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:26, column:78,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:78,the value of plot_cost is         : 49.18561187127308 

 At row:26, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:26, column:79,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:79,the value of plot_cost is         : 48.948252785824295 

 At row:26, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:26, column:80,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:80,the value of plot_cost is         : 48.711701760778034 

 At row:26, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:26, column:81,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:81,the value of plot_cost is         : 48.47595879613429 

 At row:26, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:26, column:82,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:82,the value of plot_cost is         : 48.24102389189305 

 At row:26, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:26, column:83,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:83,the value of plot_cost is         : 48.006897048054334 

 At row:26, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:26, column:84,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:84,the value of plot_cost is         : 47.77357826461812 

 At row:26, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:26, column:85,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:85,the value of plot_cost is         : 47.54106754158444 

 At row:26, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:26, column:86,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:86,the value of plot_cost is         : 47.30936487895327 

 At row:26, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:26, column:87,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:87,the value of plot_cost is         : 47.07847027672461 

 At row:26, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:26, column:88,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:88,the value of plot_cost is         : 46.848383734898455 

 At row:26, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:26, column:89,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:89,the value of plot_cost is         : 46.619105253474835 

 At row:26, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:26, column:90,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:90,the value of plot_cost is         : 46.39063483245372 

 At row:26, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:26, column:91,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:91,the value of plot_cost is         : 46.16297247183512 

 At row:26, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:26, column:92,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:92,the value of plot_cost is         : 45.936118171619036 

 At row:26, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:26, column:93,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:93,the value of plot_cost is         : 45.71007193180546 

 At row:26, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:26, column:94,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:94,the value of plot_cost is         : 45.484833752394415 

 At row:26, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:26, column:95,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:95,the value of plot_cost is         : 45.26040363338588 

 At row:26, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:26, column:96,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:96,the value of plot_cost is         : 45.03678157477986 

 At row:26, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:26, column:97,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:97,the value of plot_cost is         : 44.81396757657634 

 At row:26, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:26, column:98,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:98,the value of plot_cost is         : 44.591961638775345 

 At row:26, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:26, column:99,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:99,the value of plot_cost is         : 44.37076376137687 

 At row:26, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:26, column:100,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:100,the value of plot_cost is         : 44.15037394438091 

 At row:26, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:26, column:101,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:101,the value of plot_cost is         : 43.93079218778747 

 At row:26, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:26, column:102,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:102,the value of plot_cost is         : 43.712018491596524 

 At row:26, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:26, column:103,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:103,the value of plot_cost is         : 43.4940528558081 

 At row:26, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:26, column:104,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:104,the value of plot_cost is         : 43.27689528042221 

 At row:26, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:26, column:105,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:105,the value of plot_cost is         : 43.060545765438825 

 At row:26, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:26, column:106,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:106,the value of plot_cost is         : 42.845004310857945 

 At row:26, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:26, column:107,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:107,the value of plot_cost is         : 42.63027091667959 

 At row:26, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:26, column:108,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:108,the value of plot_cost is         : 42.41634558290374 

 At row:26, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:26, column:109,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:109,the value of plot_cost is         : 42.20322830953042 

 At row:26, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:26, column:110,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:110,the value of plot_cost is         : 41.99091909655961 

 At row:26, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:26, column:111,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:111,the value of plot_cost is         : 41.77941794399131 

 At row:26, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:26, column:112,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:112,the value of plot_cost is         : 41.56872485182552 

 At row:26, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:26, column:113,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:113,the value of plot_cost is         : 41.35883982006226 

 At row:26, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:26, column:114,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:114,the value of plot_cost is         : 41.149762848701506 

 At row:26, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:26, column:115,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:115,the value of plot_cost is         : 40.94149393774327 

 At row:26, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:26, column:116,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:116,the value of plot_cost is         : 40.734033087187555 

 At row:26, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:26, column:117,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:117,the value of plot_cost is         : 40.52738029703434 

 At row:26, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:26, column:118,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:118,the value of plot_cost is         : 40.32153556728364 

 At row:26, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:26, column:119,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:119,the value of plot_cost is         : 40.11649889793547 

 At row:26, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:26, column:120,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:120,the value of plot_cost is         : 39.91227028898981 

 At row:26, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:26, column:121,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:121,the value of plot_cost is         : 39.708849740446674 

 At row:26, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:26, column:122,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:122,the value of plot_cost is         : 39.50623725230603 

 At row:26, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:26, column:123,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:123,the value of plot_cost is         : 39.30443282456792 

 At row:26, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:26, column:124,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:124,the value of plot_cost is         : 39.10343645723232 

 At row:26, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:26, column:125,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:125,the value of plot_cost is         : 38.90324815029923 

 At row:26, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:26, column:126,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:126,the value of plot_cost is         : 38.70386790376866 

 At row:26, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:26, column:127,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:127,the value of plot_cost is         : 38.5052957176406 

 At row:26, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:26, column:128,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:128,the value of plot_cost is         : 38.30753159191506 

 At row:26, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:26, column:129,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:129,the value of plot_cost is         : 38.11057552659203 

 At row:26, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:26, column:130,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:130,the value of plot_cost is         : 37.91442752167152 

 At row:26, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:26, column:131,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:131,the value of plot_cost is         : 37.71908757715354 

 At row:26, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:26, column:132,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:132,the value of plot_cost is         : 37.52455569303805 

 At row:26, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:26, column:133,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:133,the value of plot_cost is         : 37.330831869325074 

 At row:26, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:26, column:134,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:134,the value of plot_cost is         : 37.137916106014636 

 At row:26, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:26, column:135,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:135,the value of plot_cost is         : 36.9458084031067 

 At row:26, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:26, column:136,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:136,the value of plot_cost is         : 36.754508760601276 

 At row:26, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:26, column:137,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:137,the value of plot_cost is         : 36.564017178498375 

 At row:26, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:26, column:138,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:138,the value of plot_cost is         : 36.37433365679798 

 At row:26, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:26, column:139,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:139,the value of plot_cost is         : 36.185458195500104 

 At row:26, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:26, column:140,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:140,the value of plot_cost is         : 35.99739079460475 

 At row:26, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:26, column:141,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:141,the value of plot_cost is         : 35.81013145411191 

 At row:26, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:26, column:142,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:142,the value of plot_cost is         : 35.62368017402157 

 At row:26, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:26, column:143,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:143,the value of plot_cost is         : 35.43803695433376 

 At row:26, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:26, column:144,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:144,the value of plot_cost is         : 35.25320179504846 

 At row:26, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:26, column:145,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:145,the value of plot_cost is         : 35.069174696165675 

 At row:26, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:26, column:146,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:146,the value of plot_cost is         : 34.88595565768541 

 At row:26, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:26, column:147,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:147,the value of plot_cost is         : 34.70354467960765 

 At row:26, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:26, column:148,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:148,the value of plot_cost is         : 34.52194176193241 

 At row:26, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:26, column:149,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:149,the value of plot_cost is         : 34.341146904659695 

 At row:26, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:26, column:150,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:150,the value of plot_cost is         : 34.161160107789485 

 At row:26, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:26, column:151,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:151,the value of plot_cost is         : 33.98198137132178 

 At row:26, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:26, column:152,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:152,the value of plot_cost is         : 33.80361069525661 

 At row:26, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:26, column:153,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:153,the value of plot_cost is         : 33.62604807959394 

 At row:26, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:26, column:154,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:154,the value of plot_cost is         : 33.4492935243338 

 At row:26, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:26, column:155,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:155,the value of plot_cost is         : 33.27334702947616 

 At row:26, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:26, column:156,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:156,the value of plot_cost is         : 33.09820859502104 

 At row:26, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:26, column:157,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:157,the value of plot_cost is         : 32.92387822096844 

 At row:26, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:26, column:158,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:158,the value of plot_cost is         : 32.75035590731835 

 At row:26, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:26, column:159,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:159,the value of plot_cost is         : 32.577641654070774 

 At row:26, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:26, column:160,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:160,the value of plot_cost is         : 32.405735461225724 

 At row:26, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:26, column:161,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:161,the value of plot_cost is         : 32.23463732878317 

 At row:26, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:26, column:162,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:162,the value of plot_cost is         : 32.064347256743154 

 At row:26, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:26, column:163,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:163,the value of plot_cost is         : 31.894865245105635 

 At row:26, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:26, column:164,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:164,the value of plot_cost is         : 31.72619129387064 

 At row:26, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:26, column:165,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:165,the value of plot_cost is         : 31.558325403038157 

 At row:26, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:26, column:166,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:166,the value of plot_cost is         : 31.391267572608193 

 At row:26, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:26, column:167,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:167,the value of plot_cost is         : 31.225017802580737 

 At row:26, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:26, column:168,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:168,the value of plot_cost is         : 31.059576092955798 

 At row:26, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:26, column:169,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:169,the value of plot_cost is         : 30.894942443733374 

 At row:26, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:26, column:170,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:170,the value of plot_cost is         : 30.731116854913473 

 At row:26, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:26, column:171,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:171,the value of plot_cost is         : 30.568099326496075 

 At row:26, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:26, column:172,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:172,the value of plot_cost is         : 30.405889858481203 

 At row:26, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:26, column:173,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:173,the value of plot_cost is         : 30.244488450868836 

 At row:26, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:26, column:174,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:174,the value of plot_cost is         : 30.083895103658993 

 At row:26, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:26, column:175,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:175,the value of plot_cost is         : 29.924109816851665 

 At row:26, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:26, column:176,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:176,the value of plot_cost is         : 29.765132590446843 

 At row:26, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:26, column:177,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:177,the value of plot_cost is         : 29.606963424444544 

 At row:26, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:26, column:178,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:178,the value of plot_cost is         : 29.449602318844757 

 At row:26, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:26, column:179,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:179,the value of plot_cost is         : 29.293049273647487 

 At row:26, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:26, column:180,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:180,the value of plot_cost is         : 29.137304288852732 

 At row:26, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:26, column:181,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:181,the value of plot_cost is         : 28.98236736446049 

 At row:26, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:26, column:182,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:182,the value of plot_cost is         : 28.828238500470764 

 At row:26, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:26, column:183,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:183,the value of plot_cost is         : 28.67491769688355 

 At row:26, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:26, column:184,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:184,the value of plot_cost is         : 28.522404953698857 

 At row:26, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:26, column:185,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:185,the value of plot_cost is         : 28.370700270916675 

 At row:26, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:26, column:186,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:186,the value of plot_cost is         : 28.21980364853701 

 At row:26, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:26, column:187,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:187,the value of plot_cost is         : 28.06971508655986 

 At row:26, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:26, column:188,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:188,the value of plot_cost is         : 27.92043458498522 

 At row:26, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:26, column:189,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:189,the value of plot_cost is         : 27.771962143813106 

 At row:26, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:26, column:190,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:190,the value of plot_cost is         : 27.6242977630435 

 At row:26, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:26, column:191,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:191,the value of plot_cost is         : 27.477441442676405 

 At row:26, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:26, column:192,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:192,the value of plot_cost is         : 27.33139318271183 

 At row:26, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:26, column:193,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:193,the value of plot_cost is         : 27.186152983149768 

 At row:26, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:26, column:194,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:194,the value of plot_cost is         : 27.041720843990227 

 At row:26, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:26, column:195,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:195,the value of plot_cost is         : 26.8980967652332 

 At row:26, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:26, column:196,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:196,the value of plot_cost is         : 26.755280746878682 

 At row:26, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:26, column:197,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:197,the value of plot_cost is         : 26.61327278892668 

 At row:26, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:26, column:198,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:198,the value of plot_cost is         : 26.472072891377195 

 At row:26, column:199,the value of plot_t0 is           : 3.0
 At row:26, column:199,the value of plot_t1 is           : -0.4773869346733668
 At row:26, column:199,the value of plot_cost is         : 26.33168105423023 

 At row:27, column:0,the value of plot_t0 is           : -1.0
 At row:27, column:0,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:0,the value of plot_cost is         : 68.88513576496986 

 At row:27, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:27, column:1,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:1,the value of plot_cost is         : 68.58742611117323 

 At row:27, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:27, column:2,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:2,the value of plot_cost is         : 68.29052451777913 

 At row:27, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:27, column:3,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:3,the value of plot_cost is         : 67.99443098478754 

 At row:27, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:27, column:4,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:4,the value of plot_cost is         : 67.69914551219846 

 At row:27, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:27, column:5,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:5,the value of plot_cost is         : 67.4046681000119 

 At row:27, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:27, column:6,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:6,the value of plot_cost is         : 67.11099874822786 

 At row:27, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:27, column:7,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:7,the value of plot_cost is         : 66.81813745684633 

 At row:27, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:27, column:8,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:8,the value of plot_cost is         : 66.52608422586731 

 At row:27, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:27, column:9,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:9,the value of plot_cost is         : 66.2348390552908 

 At row:27, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:27, column:10,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:10,the value of plot_cost is         : 65.94440194511682 

 At row:27, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:27, column:11,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:11,the value of plot_cost is         : 65.65477289534535 

 At row:27, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:27, column:12,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:12,the value of plot_cost is         : 65.36595190597639 

 At row:27, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:27, column:13,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:13,the value of plot_cost is         : 65.07793897700995 

 At row:27, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:27, column:14,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:14,the value of plot_cost is         : 64.79073410844603 

 At row:27, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:27, column:15,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:15,the value of plot_cost is         : 64.5043373002846 

 At row:27, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:27, column:16,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:16,the value of plot_cost is         : 64.21874855252572 

 At row:27, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:27, column:17,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:17,the value of plot_cost is         : 63.93396786516935 

 At row:27, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:27, column:18,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:18,the value of plot_cost is         : 63.64999523821549 

 At row:27, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:27, column:19,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:19,the value of plot_cost is         : 63.36683067166413 

 At row:27, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:27, column:20,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:20,the value of plot_cost is         : 63.0844741655153 

 At row:27, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:27, column:21,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:21,the value of plot_cost is         : 62.80292571976898 

 At row:27, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:27, column:22,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:22,the value of plot_cost is         : 62.52218533442517 

 At row:27, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:27, column:23,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:23,the value of plot_cost is         : 62.24225300948389 

 At row:27, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:27, column:24,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:24,the value of plot_cost is         : 61.9631287449451 

 At row:27, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:27, column:25,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:25,the value of plot_cost is         : 61.68481254080885 

 At row:27, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:27, column:26,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:26,the value of plot_cost is         : 61.40730439707511 

 At row:27, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:27, column:27,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:27,the value of plot_cost is         : 61.130604313743866 

 At row:27, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:27, column:28,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:28,the value of plot_cost is         : 60.854712290815165 

 At row:27, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:27, column:29,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:29,the value of plot_cost is         : 60.57962832828897 

 At row:27, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:27, column:30,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:30,the value of plot_cost is         : 60.305352426165285 

 At row:27, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:27, column:31,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:31,the value of plot_cost is         : 60.03188458444411 

 At row:27, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:27, column:32,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:32,the value of plot_cost is         : 59.75922480312546 

 At row:27, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:27, column:33,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:33,the value of plot_cost is         : 59.48737308220932 

 At row:27, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:27, column:34,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:34,the value of plot_cost is         : 59.2163294216957 

 At row:27, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:27, column:35,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:35,the value of plot_cost is         : 58.94609382158458 

 At row:27, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:27, column:36,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:36,the value of plot_cost is         : 58.67666628187599 

 At row:27, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:27, column:37,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:37,the value of plot_cost is         : 58.40804680256991 

 At row:27, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:27, column:38,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:38,the value of plot_cost is         : 58.14023538366636 

 At row:27, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:27, column:39,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:39,the value of plot_cost is         : 57.87323202516531 

 At row:27, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:27, column:40,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:40,the value of plot_cost is         : 57.60703672706678 

 At row:27, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:27, column:41,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:41,the value of plot_cost is         : 57.34164948937075 

 At row:27, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:27, column:42,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:42,the value of plot_cost is         : 57.077070312077254 

 At row:27, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:27, column:43,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:43,the value of plot_cost is         : 56.81329919518626 

 At row:27, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:27, column:44,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:44,the value of plot_cost is         : 56.550336138697794 

 At row:27, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:27, column:45,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:45,the value of plot_cost is         : 56.28818114261183 

 At row:27, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:27, column:46,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:46,the value of plot_cost is         : 56.026834206928385 

 At row:27, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:27, column:47,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:47,the value of plot_cost is         : 55.76629533164746 

 At row:27, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:27, column:48,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:48,the value of plot_cost is         : 55.506564516769046 

 At row:27, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:27, column:49,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:49,the value of plot_cost is         : 55.247641762293156 

 At row:27, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:27, column:50,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:50,the value of plot_cost is         : 54.989527068219786 

 At row:27, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:27, column:51,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:51,the value of plot_cost is         : 54.73222043454891 

 At row:27, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:27, column:52,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:52,the value of plot_cost is         : 54.47572186128055 

 At row:27, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:27, column:53,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:53,the value of plot_cost is         : 54.220031348414715 

 At row:27, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:27, column:54,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:54,the value of plot_cost is         : 53.965148895951394 

 At row:27, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:27, column:55,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:55,the value of plot_cost is         : 53.711074503890586 

 At row:27, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:27, column:56,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:56,the value of plot_cost is         : 53.4578081722323 

 At row:27, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:27, column:57,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:57,the value of plot_cost is         : 53.20534990097652 

 At row:27, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:27, column:58,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:58,the value of plot_cost is         : 52.95369969012326 

 At row:27, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:27, column:59,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:59,the value of plot_cost is         : 52.702857539672515 

 At row:27, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:27, column:60,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:60,the value of plot_cost is         : 52.452823449624276 

 At row:27, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:27, column:61,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:61,the value of plot_cost is         : 52.20359741997857 

 At row:27, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:27, column:62,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:62,the value of plot_cost is         : 51.955179450735365 

 At row:27, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:27, column:63,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:63,the value of plot_cost is         : 51.70756954189468 

 At row:27, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:27, column:64,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:64,the value of plot_cost is         : 51.46076769345651 

 At row:27, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:27, column:65,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:65,the value of plot_cost is         : 51.21477390542085 

 At row:27, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:27, column:66,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:66,the value of plot_cost is         : 50.969588177787706 

 At row:27, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:27, column:67,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:67,the value of plot_cost is         : 50.72521051055709 

 At row:27, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:27, column:68,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:68,the value of plot_cost is         : 50.48164090372897 

 At row:27, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:27, column:69,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:69,the value of plot_cost is         : 50.23887935730338 

 At row:27, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:27, column:70,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:70,the value of plot_cost is         : 49.9969258712803 

 At row:27, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:27, column:71,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:71,the value of plot_cost is         : 49.75578044565973 

 At row:27, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:27, column:72,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:72,the value of plot_cost is         : 49.51544308044169 

 At row:27, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:27, column:73,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:73,the value of plot_cost is         : 49.27591377562615 

 At row:27, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:27, column:74,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:74,the value of plot_cost is         : 49.03719253121314 

 At row:27, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:27, column:75,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:75,the value of plot_cost is         : 48.79927934720263 

 At row:27, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:27, column:76,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:76,the value of plot_cost is         : 48.56217422359464 

 At row:27, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:27, column:77,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:77,the value of plot_cost is         : 48.32587716038916 

 At row:27, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:27, column:78,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:78,the value of plot_cost is         : 48.090388157586204 

 At row:27, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:27, column:79,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:79,the value of plot_cost is         : 47.85570721518576 

 At row:27, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:27, column:80,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:80,the value of plot_cost is         : 47.62183433318783 

 At row:27, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:27, column:81,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:81,the value of plot_cost is         : 47.388769511592415 

 At row:27, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:27, column:82,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:82,the value of plot_cost is         : 47.15651275039951 

 At row:27, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:27, column:83,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:83,the value of plot_cost is         : 46.925064049609134 

 At row:27, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:27, column:84,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:84,the value of plot_cost is         : 46.69442340922127 

 At row:27, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:27, column:85,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:85,the value of plot_cost is         : 46.46459082923591 

 At row:27, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:27, column:86,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:86,the value of plot_cost is         : 46.23556630965307 

 At row:27, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:27, column:87,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:87,the value of plot_cost is         : 46.00734985047275 

 At row:27, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:27, column:88,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:88,the value of plot_cost is         : 45.77994145169494 

 At row:27, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:27, column:89,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:89,the value of plot_cost is         : 45.55334111331965 

 At row:27, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:27, column:90,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:90,the value of plot_cost is         : 45.327548835346875 

 At row:27, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:27, column:91,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:91,the value of plot_cost is         : 45.1025646177766 

 At row:27, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:27, column:92,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:92,the value of plot_cost is         : 44.87838846060885 

 At row:27, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:27, column:93,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:93,the value of plot_cost is         : 44.65502036384362 

 At row:27, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:27, column:94,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:94,the value of plot_cost is         : 44.43246032748091 

 At row:27, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:27, column:95,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:95,the value of plot_cost is         : 44.2107083515207 

 At row:27, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:27, column:96,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:96,the value of plot_cost is         : 43.98976443596302 

 At row:27, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:27, column:97,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:97,the value of plot_cost is         : 43.76962858080784 

 At row:27, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:27, column:98,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:98,the value of plot_cost is         : 43.55030078605518 

 At row:27, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:27, column:99,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:99,the value of plot_cost is         : 43.33178105170504 

 At row:27, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:27, column:100,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:100,the value of plot_cost is         : 43.11406937775742 

 At row:27, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:27, column:101,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:101,the value of plot_cost is         : 42.897165764212296 

 At row:27, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:27, column:102,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:102,the value of plot_cost is         : 42.6810702110697 

 At row:27, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:27, column:103,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:103,the value of plot_cost is         : 42.46578271832962 

 At row:27, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:27, column:104,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:104,the value of plot_cost is         : 42.25130328599205 

 At row:27, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:27, column:105,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:105,the value of plot_cost is         : 42.037631914057 

 At row:27, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:27, column:106,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:106,the value of plot_cost is         : 41.824768602524465 

 At row:27, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:27, column:107,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:107,the value of plot_cost is         : 41.61271335139443 

 At row:27, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:27, column:108,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:108,the value of plot_cost is         : 41.401466160666935 

 At row:27, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:27, column:109,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:109,the value of plot_cost is         : 41.191027030341935 

 At row:27, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:27, column:110,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:110,the value of plot_cost is         : 40.98139596041946 

 At row:27, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:27, column:111,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:111,the value of plot_cost is         : 40.77257295089951 

 At row:27, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:27, column:112,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:112,the value of plot_cost is         : 40.56455800178205 

 At row:27, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:27, column:113,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:113,the value of plot_cost is         : 40.357351113067125 

 At row:27, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:27, column:114,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:114,the value of plot_cost is         : 40.15095228475471 

 At row:27, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:27, column:115,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:115,the value of plot_cost is         : 39.945361516844805 

 At row:27, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:27, column:116,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:116,the value of plot_cost is         : 39.74057880933743 

 At row:27, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:27, column:117,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:117,the value of plot_cost is         : 39.53660416223256 

 At row:27, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:27, column:118,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:118,the value of plot_cost is         : 39.3334375755302 

 At row:27, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:27, column:119,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:119,the value of plot_cost is         : 39.13107904923035 

 At row:27, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:27, column:120,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:120,the value of plot_cost is         : 38.92952858333303 

 At row:27, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:27, column:121,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:121,the value of plot_cost is         : 38.728786177838224 

 At row:27, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:27, column:122,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:122,the value of plot_cost is         : 38.528851832745914 

 At row:27, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:27, column:123,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:123,the value of plot_cost is         : 38.32972554805614 

 At row:27, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:27, column:124,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:124,the value of plot_cost is         : 38.13140732376888 

 At row:27, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:27, column:125,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:125,the value of plot_cost is         : 37.933897159884125 

 At row:27, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:27, column:126,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:126,the value of plot_cost is         : 37.737195056401895 

 At row:27, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:27, column:127,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:127,the value of plot_cost is         : 37.54130101332217 

 At row:27, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:27, column:128,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:128,the value of plot_cost is         : 37.34621503064496 

 At row:27, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:27, column:129,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:129,the value of plot_cost is         : 37.15193710837028 

 At row:27, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:27, column:130,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:130,the value of plot_cost is         : 36.958467246498095 

 At row:27, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:27, column:131,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:131,the value of plot_cost is         : 36.76580544502844 

 At row:27, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:27, column:132,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:132,the value of plot_cost is         : 36.57395170396129 

 At row:27, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:27, column:133,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:133,the value of plot_cost is         : 36.38290602329666 

 At row:27, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:27, column:134,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:134,the value of plot_cost is         : 36.19266840303455 

 At row:27, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:27, column:135,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:135,the value of plot_cost is         : 36.003238843174955 

 At row:27, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:27, column:136,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:136,the value of plot_cost is         : 35.81461734371786 

 At row:27, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:27, column:137,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:137,the value of plot_cost is         : 35.6268039046633 

 At row:27, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:27, column:138,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:138,the value of plot_cost is         : 35.439798526011245 

 At row:27, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:27, column:139,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:139,the value of plot_cost is         : 35.253601207761704 

 At row:27, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:27, column:140,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:140,the value of plot_cost is         : 35.068211949914684 

 At row:27, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:27, column:141,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:141,the value of plot_cost is         : 34.883630752470175 

 At row:27, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:27, column:142,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:142,the value of plot_cost is         : 34.69985761542818 

 At row:27, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:27, column:143,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:143,the value of plot_cost is         : 34.5168925387887 

 At row:27, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:27, column:144,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:144,the value of plot_cost is         : 34.33473552255174 

 At row:27, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:27, column:145,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:145,the value of plot_cost is         : 34.15338656671728 

 At row:27, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:27, column:146,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:146,the value of plot_cost is         : 33.972845671285356 

 At row:27, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:27, column:147,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:147,the value of plot_cost is         : 33.793112836255936 

 At row:27, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:27, column:148,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:148,the value of plot_cost is         : 33.61418806162903 

 At row:27, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:27, column:149,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:149,the value of plot_cost is         : 33.43607134740464 

 At row:27, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:27, column:150,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:150,the value of plot_cost is         : 33.258762693582774 

 At row:27, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:27, column:151,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:151,the value of plot_cost is         : 33.082262100163405 

 At row:27, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:27, column:152,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:152,the value of plot_cost is         : 32.90656956714657 

 At row:27, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:27, column:153,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:153,the value of plot_cost is         : 32.73168509453224 

 At row:27, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:27, column:154,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:154,the value of plot_cost is         : 32.55760868232043 

 At row:27, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:27, column:155,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:155,the value of plot_cost is         : 32.38434033051113 

 At row:27, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:27, column:156,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:156,the value of plot_cost is         : 32.21188003910435 

 At row:27, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:27, column:157,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:157,the value of plot_cost is         : 32.04022780810008 

 At row:27, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:27, column:158,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:158,the value of plot_cost is         : 31.869383637498327 

 At row:27, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:27, column:159,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:159,the value of plot_cost is         : 31.69934752729909 

 At row:27, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:27, column:160,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:160,the value of plot_cost is         : 31.530119477502367 

 At row:27, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:27, column:161,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:161,the value of plot_cost is         : 31.361699488108155 

 At row:27, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:27, column:162,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:162,the value of plot_cost is         : 31.194087559116472 

 At row:27, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:27, column:163,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:163,the value of plot_cost is         : 31.02728369052729 

 At row:27, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:27, column:164,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:164,the value of plot_cost is         : 30.861287882340633 

 At row:27, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:27, column:165,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:165,the value of plot_cost is         : 30.696100134556485 

 At row:27, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:27, column:166,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:166,the value of plot_cost is         : 30.53172044717485 

 At row:27, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:27, column:167,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:167,the value of plot_cost is         : 30.36814882019573 

 At row:27, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:27, column:168,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:168,the value of plot_cost is         : 30.205385253619134 

 At row:27, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:27, column:169,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:169,the value of plot_cost is         : 30.04342974744505 

 At row:27, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:27, column:170,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:170,the value of plot_cost is         : 29.882282301673477 

 At row:27, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:27, column:171,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:171,the value of plot_cost is         : 29.721942916304418 

 At row:27, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:27, column:172,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:172,the value of plot_cost is         : 29.562411591337877 

 At row:27, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:27, column:173,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:173,the value of plot_cost is         : 29.403688326773853 

 At row:27, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:27, column:174,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:174,the value of plot_cost is         : 29.24577312261234 

 At row:27, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:27, column:175,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:175,the value of plot_cost is         : 29.088665978853342 

 At row:27, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:27, column:176,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:176,the value of plot_cost is         : 28.93236689549686 

 At row:27, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:27, column:177,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:177,the value of plot_cost is         : 28.7768758725429 

 At row:27, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:27, column:178,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:178,the value of plot_cost is         : 28.622192909991448 

 At row:27, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:27, column:179,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:179,the value of plot_cost is         : 28.468318007842516 

 At row:27, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:27, column:180,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:180,the value of plot_cost is         : 28.315251166096093 

 At row:27, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:27, column:181,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:181,the value of plot_cost is         : 28.16299238475218 

 At row:27, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:27, column:182,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:182,the value of plot_cost is         : 28.011541663810796 

 At row:27, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:27, column:183,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:183,the value of plot_cost is         : 27.860899003271925 

 At row:27, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:27, column:184,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:184,the value of plot_cost is         : 27.71106440313556 

 At row:27, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:27, column:185,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:185,the value of plot_cost is         : 27.562037863401716 

 At row:27, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:27, column:186,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:186,the value of plot_cost is         : 27.41381938407038 

 At row:27, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:27, column:187,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:187,the value of plot_cost is         : 27.26640896514157 

 At row:27, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:27, column:188,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:188,the value of plot_cost is         : 27.11980660661527 

 At row:27, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:27, column:189,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:189,the value of plot_cost is         : 26.97401230849149 

 At row:27, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:27, column:190,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:190,the value of plot_cost is         : 26.829026070770215 

 At row:27, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:27, column:191,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:191,the value of plot_cost is         : 26.684847893451455 

 At row:27, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:27, column:192,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:192,the value of plot_cost is         : 26.54147777653522 

 At row:27, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:27, column:193,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:193,the value of plot_cost is         : 26.398915720021495 

 At row:27, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:27, column:194,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:194,the value of plot_cost is         : 26.25716172391029 

 At row:27, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:27, column:195,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:195,the value of plot_cost is         : 26.11621578820159 

 At row:27, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:27, column:196,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:196,the value of plot_cost is         : 25.976077912895413 

 At row:27, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:27, column:197,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:197,the value of plot_cost is         : 25.836748097991748 

 At row:27, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:27, column:198,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:198,the value of plot_cost is         : 25.698226343490603 

 At row:27, column:199,the value of plot_t0 is           : 3.0
 At row:27, column:199,the value of plot_t1 is           : -0.457286432160804
 At row:27, column:199,the value of plot_cost is         : 25.56051264939197 

 At row:28, column:0,the value of plot_t0 is           : -1.0
 At row:28, column:0,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:0,the value of plot_cost is         : 67.59359954835195 

 At row:28, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:28, column:1,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:1,the value of plot_cost is         : 67.29856803760366 

 At row:28, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:28, column:2,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:2,the value of plot_cost is         : 67.00434458725789 

 At row:28, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:28, column:3,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:3,the value of plot_cost is         : 66.71092919731464 

 At row:28, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:28, column:4,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:4,the value of plot_cost is         : 66.4183218677739 

 At row:28, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:28, column:5,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:5,the value of plot_cost is         : 66.12652259863567 

 At row:28, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:28, column:6,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:6,the value of plot_cost is         : 65.83553138989997 

 At row:28, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:28, column:7,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:7,the value of plot_cost is         : 65.54534824156677 

 At row:28, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:28, column:8,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:8,the value of plot_cost is         : 65.25597315363608 

 At row:28, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:28, column:9,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:9,the value of plot_cost is         : 64.96740612610792 

 At row:28, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:28, column:10,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:10,the value of plot_cost is         : 64.67964715898228 

 At row:28, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:28, column:11,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:11,the value of plot_cost is         : 64.39269625225914 

 At row:28, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:28, column:12,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:12,the value of plot_cost is         : 64.10655340593853 

 At row:28, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:28, column:13,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:13,the value of plot_cost is         : 63.82121862002041 

 At row:28, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:28, column:14,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:14,the value of plot_cost is         : 63.536691894504834 

 At row:28, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:28, column:15,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:15,the value of plot_cost is         : 63.25297322939174 

 At row:28, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:28, column:16,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:16,the value of plot_cost is         : 62.97006262468119 

 At row:28, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:28, column:17,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:17,the value of plot_cost is         : 62.687960080373145 

 At row:28, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:28, column:18,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:18,the value of plot_cost is         : 62.40666559646761 

 At row:28, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:28, column:19,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:19,the value of plot_cost is         : 62.1261791729646 

 At row:28, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:28, column:20,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:20,the value of plot_cost is         : 61.84650080986411 

 At row:28, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:28, column:21,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:21,the value of plot_cost is         : 61.567630507166115 

 At row:28, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:28, column:22,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:22,the value of plot_cost is         : 61.28956826487065 

 At row:28, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:28, column:23,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:23,the value of plot_cost is         : 61.012314082977696 

 At row:28, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:28, column:24,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:24,the value of plot_cost is         : 60.735867961487266 

 At row:28, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:28, column:25,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:25,the value of plot_cost is         : 60.460229900399334 

 At row:28, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:28, column:26,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:26,the value of plot_cost is         : 60.18539989971392 

 At row:28, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:28, column:27,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:27,the value of plot_cost is         : 59.91137795943102 

 At row:28, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:28, column:28,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:28,the value of plot_cost is         : 59.63816407955065 

 At row:28, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:28, column:29,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:29,the value of plot_cost is         : 59.365758260072795 

 At row:28, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:28, column:30,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:30,the value of plot_cost is         : 59.09416050099745 

 At row:28, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:28, column:31,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:31,the value of plot_cost is         : 58.82337080232462 

 At row:28, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:28, column:32,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:32,the value of plot_cost is         : 58.5533891640543 

 At row:28, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:28, column:33,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:33,the value of plot_cost is         : 58.2842155861865 

 At row:28, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:28, column:34,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:34,the value of plot_cost is         : 58.01585006872121 

 At row:28, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:28, column:35,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:35,the value of plot_cost is         : 57.74829261165843 

 At row:28, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:28, column:36,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:36,the value of plot_cost is         : 57.48154321499817 

 At row:28, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:28, column:37,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:37,the value of plot_cost is         : 57.215601878740436 

 At row:28, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:28, column:38,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:38,the value of plot_cost is         : 56.950468602885195 

 At row:28, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:28, column:39,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:39,the value of plot_cost is         : 56.686143387432494 

 At row:28, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:28, column:40,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:40,the value of plot_cost is         : 56.4226262323823 

 At row:28, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:28, column:41,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:41,the value of plot_cost is         : 56.1599171377346 

 At row:28, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:28, column:42,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:42,the value of plot_cost is         : 55.898016103489454 

 At row:28, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:28, column:43,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:43,the value of plot_cost is         : 55.636923129646796 

 At row:28, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:28, column:44,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:44,the value of plot_cost is         : 55.37663821620666 

 At row:28, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:28, column:45,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:45,the value of plot_cost is         : 55.11716136316904 

 At row:28, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:28, column:46,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:46,the value of plot_cost is         : 54.858492570533926 

 At row:28, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:28, column:47,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:47,the value of plot_cost is         : 54.60063183830133 

 At row:28, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:28, column:48,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:48,the value of plot_cost is         : 54.34357916647126 

 At row:28, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:28, column:49,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:49,the value of plot_cost is         : 54.087334555043704 

 At row:28, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:28, column:50,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:50,the value of plot_cost is         : 53.831898004018655 

 At row:28, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:28, column:51,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:51,the value of plot_cost is         : 53.577269513396125 

 At row:28, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:28, column:52,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:52,the value of plot_cost is         : 53.323449083176115 

 At row:28, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:28, column:53,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:53,the value of plot_cost is         : 53.0704367133586 

 At row:28, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:28, column:54,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:54,the value of plot_cost is         : 52.818232403943625 

 At row:28, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:28, column:55,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:55,the value of plot_cost is         : 52.56683615493115 

 At row:28, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:28, column:56,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:56,the value of plot_cost is         : 52.31624796632119 

 At row:28, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:28, column:57,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:57,the value of plot_cost is         : 52.06646783811376 

 At row:28, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:28, column:58,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:58,the value of plot_cost is         : 51.817495770308824 

 At row:28, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:28, column:59,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:59,the value of plot_cost is         : 51.56933176290642 

 At row:28, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:28, column:60,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:60,the value of plot_cost is         : 51.32197581590653 

 At row:28, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:28, column:61,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:61,the value of plot_cost is         : 51.075427929309136 

 At row:28, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:28, column:62,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:62,the value of plot_cost is         : 50.82968810311428 

 At row:28, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:28, column:63,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:63,the value of plot_cost is         : 50.58475633732192 

 At row:28, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:28, column:64,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:64,the value of plot_cost is         : 50.34063263193209 

 At row:28, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:28, column:65,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:65,the value of plot_cost is         : 50.09731698694476 

 At row:28, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:28, column:66,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:66,the value of plot_cost is         : 49.85480940235996 

 At row:28, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:28, column:67,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:67,the value of plot_cost is         : 49.61310987817768 

 At row:28, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:28, column:68,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:68,the value of plot_cost is         : 49.3722184143979 

 At row:28, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:28, column:69,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:69,the value of plot_cost is         : 49.132135011020644 

 At row:28, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:28, column:70,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:70,the value of plot_cost is         : 48.8928596680459 

 At row:28, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:28, column:71,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:71,the value of plot_cost is         : 48.654392385473656 

 At row:28, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:28, column:72,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:72,the value of plot_cost is         : 48.41673316330395 

 At row:28, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:28, column:73,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:73,the value of plot_cost is         : 48.179882001536754 

 At row:28, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:28, column:74,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:74,the value of plot_cost is         : 47.943838900172075 

 At row:28, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:28, column:75,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:75,the value of plot_cost is         : 47.708603859209894 

 At row:28, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:28, column:76,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:76,the value of plot_cost is         : 47.47417687865025 

 At row:28, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:28, column:77,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:77,the value of plot_cost is         : 47.240557958493106 

 At row:28, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:28, column:78,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:78,the value of plot_cost is         : 47.00774709873849 

 At row:28, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:28, column:79,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:79,the value of plot_cost is         : 46.77574429938638 

 At row:28, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:28, column:80,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:80,the value of plot_cost is         : 46.54454956043679 

 At row:28, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:28, column:81,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:81,the value of plot_cost is         : 46.3141628818897 

 At row:28, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:28, column:82,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:82,the value of plot_cost is         : 46.08458426374514 

 At row:28, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:28, column:83,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:83,the value of plot_cost is         : 45.85581370600309 

 At row:28, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:28, column:84,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:84,the value of plot_cost is         : 45.62785120866355 

 At row:28, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:28, column:85,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:85,the value of plot_cost is         : 45.40069677172654 

 At row:28, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:28, column:86,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:86,the value of plot_cost is         : 45.17435039519203 

 At row:28, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:28, column:87,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:87,the value of plot_cost is         : 44.948812079060055 

 At row:28, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:28, column:88,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:88,the value of plot_cost is         : 44.72408182333057 

 At row:28, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:28, column:89,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:89,the value of plot_cost is         : 44.50015962800362 

 At row:28, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:28, column:90,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:90,the value of plot_cost is         : 44.27704549307918 

 At row:28, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:28, column:91,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:91,the value of plot_cost is         : 44.05473941855725 

 At row:28, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:28, column:92,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:92,the value of plot_cost is         : 43.833241404437835 

 At row:28, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:28, column:93,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:93,the value of plot_cost is         : 43.61255145072095 

 At row:28, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:28, column:94,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:94,the value of plot_cost is         : 43.392669557406556 

 At row:28, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:28, column:95,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:95,the value of plot_cost is         : 43.17359572449468 

 At row:28, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:28, column:96,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:96,the value of plot_cost is         : 42.95532995198534 

 At row:28, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:28, column:97,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:97,the value of plot_cost is         : 42.7378722398785 

 At row:28, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:28, column:98,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:98,the value of plot_cost is         : 42.521222588174176 

 At row:28, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:28, column:99,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:99,the value of plot_cost is         : 42.30538099687237 

 At row:28, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:28, column:100,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:100,the value of plot_cost is         : 42.09034746597309 

 At row:28, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:28, column:101,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:101,the value of plot_cost is         : 41.8761219954763 

 At row:28, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:28, column:102,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:102,the value of plot_cost is         : 41.662704585382045 

 At row:28, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:28, column:103,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:103,the value of plot_cost is         : 41.450095235690306 

 At row:28, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:28, column:104,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:104,the value of plot_cost is         : 41.23829394640106 

 At row:28, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:28, column:105,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:105,the value of plot_cost is         : 41.02730071751434 

 At row:28, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:28, column:106,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:106,the value of plot_cost is         : 40.81711554903014 

 At row:28, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:28, column:107,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:107,the value of plot_cost is         : 40.60773844094845 

 At row:28, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:28, column:108,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:108,the value of plot_cost is         : 40.39916939326929 

 At row:28, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:28, column:109,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:109,the value of plot_cost is         : 40.191408405992625 

 At row:28, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:28, column:110,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:110,the value of plot_cost is         : 39.98445547911849 

 At row:28, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:28, column:111,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:111,the value of plot_cost is         : 39.77831061264686 

 At row:28, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:28, column:112,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:112,the value of plot_cost is         : 39.57297380657776 

 At row:28, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:28, column:113,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:113,the value of plot_cost is         : 39.368445060911164 

 At row:28, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:28, column:114,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:114,the value of plot_cost is         : 39.16472437564707 

 At row:28, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:28, column:115,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:115,the value of plot_cost is         : 38.96181175078551 

 At row:28, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:28, column:116,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:116,the value of plot_cost is         : 38.75970718632646 

 At row:28, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:28, column:117,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:117,the value of plot_cost is         : 38.55841068226993 

 At row:28, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:28, column:118,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:118,the value of plot_cost is         : 38.357922238615906 

 At row:28, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:28, column:119,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:119,the value of plot_cost is         : 38.1582418553644 

 At row:28, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:28, column:120,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:120,the value of plot_cost is         : 37.9593695325154 

 At row:28, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:28, column:121,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:121,the value of plot_cost is         : 37.76130527006894 

 At row:28, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:28, column:122,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:122,the value of plot_cost is         : 37.56404906802498 

 At row:28, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:28, column:123,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:123,the value of plot_cost is         : 37.36760092638354 

 At row:28, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:28, column:124,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:124,the value of plot_cost is         : 37.1719608451446 

 At row:28, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:28, column:125,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:125,the value of plot_cost is         : 36.97712882430819 

 At row:28, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:28, column:126,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:126,the value of plot_cost is         : 36.78310486387428 

 At row:28, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:28, column:127,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:127,the value of plot_cost is         : 36.5898889638429 

 At row:28, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:28, column:128,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:128,the value of plot_cost is         : 36.39748112421403 

 At row:28, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:28, column:129,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:129,the value of plot_cost is         : 36.20588134498768 

 At row:28, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:28, column:130,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:130,the value of plot_cost is         : 36.015089626163835 

 At row:28, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:28, column:131,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:131,the value of plot_cost is         : 35.825105967742516 

 At row:28, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:28, column:132,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:132,the value of plot_cost is         : 35.6359303697237 

 At row:28, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:28, column:133,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:133,the value of plot_cost is         : 35.447562832107415 

 At row:28, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:28, column:134,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:134,the value of plot_cost is         : 35.26000335489363 

 At row:28, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:28, column:135,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:135,the value of plot_cost is         : 35.073251938082365 

 At row:28, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:28, column:136,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:136,the value of plot_cost is         : 34.88730858167362 

 At row:28, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:28, column:137,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:137,the value of plot_cost is         : 34.70217328566739 

 At row:28, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:28, column:138,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:138,the value of plot_cost is         : 34.51784605006367 

 At row:28, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:28, column:139,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:139,the value of plot_cost is         : 34.33432687486246 

 At row:28, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:28, column:140,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:140,the value of plot_cost is         : 34.15161576006377 

 At row:28, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:28, column:141,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:141,the value of plot_cost is         : 33.969712705667604 

 At row:28, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:28, column:142,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:142,the value of plot_cost is         : 33.78861771167394 

 At row:28, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:28, column:143,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:143,the value of plot_cost is         : 33.60833077808281 

 At row:28, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:28, column:144,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:144,the value of plot_cost is         : 33.428851904894174 

 At row:28, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:28, column:145,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:145,the value of plot_cost is         : 33.25018109210806 

 At row:28, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:28, column:146,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:146,the value of plot_cost is         : 33.07231833972446 

 At row:28, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:28, column:147,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:147,the value of plot_cost is         : 32.895263647743384 

 At row:28, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:28, column:148,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:148,the value of plot_cost is         : 32.71901701616481 

 At row:28, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:28, column:149,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:149,the value of plot_cost is         : 32.54357844498876 

 At row:28, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:28, column:150,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:150,the value of plot_cost is         : 32.36894793421522 

 At row:28, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:28, column:151,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:151,the value of plot_cost is         : 32.1951254838442 

 At row:28, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:28, column:152,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:152,the value of plot_cost is         : 32.0221110938757 

 At row:28, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:28, column:153,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:153,the value of plot_cost is         : 31.849904764309702 

 At row:28, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:28, column:154,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:154,the value of plot_cost is         : 31.678506495146223 

 At row:28, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:28, column:155,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:155,the value of plot_cost is         : 31.50791628638526 

 At row:28, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:28, column:156,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:156,the value of plot_cost is         : 31.338134138026817 

 At row:28, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:28, column:157,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:157,the value of plot_cost is         : 31.169160050070882 

 At row:28, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:28, column:158,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:158,the value of plot_cost is         : 31.00099402251747 

 At row:28, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:28, column:159,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:159,the value of plot_cost is         : 30.833636055366565 

 At row:28, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:28, column:160,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:160,the value of plot_cost is         : 30.667086148618175 

 At row:28, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:28, column:161,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:161,the value of plot_cost is         : 30.501344302272308 

 At row:28, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:28, column:162,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:162,the value of plot_cost is         : 30.336410516328954 

 At row:28, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:28, column:163,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:163,the value of plot_cost is         : 30.17228479078811 

 At row:28, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:28, column:164,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:164,the value of plot_cost is         : 30.00896712564978 

 At row:28, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:28, column:165,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:165,the value of plot_cost is         : 29.84645752091397 

 At row:28, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:28, column:166,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:166,the value of plot_cost is         : 29.684755976580675 

 At row:28, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:28, column:167,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:167,the value of plot_cost is         : 29.523862492649897 

 At row:28, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:28, column:168,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:168,the value of plot_cost is         : 29.363777069121628 

 At row:28, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:28, column:169,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:169,the value of plot_cost is         : 29.204499705995875 

 At row:28, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:28, column:170,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:170,the value of plot_cost is         : 29.046030403272642 

 At row:28, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:28, column:171,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:171,the value of plot_cost is         : 28.888369160951925 

 At row:28, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:28, column:172,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:172,the value of plot_cost is         : 28.73151597903372 

 At row:28, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:28, column:173,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:173,the value of plot_cost is         : 28.57547085751803 

 At row:28, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:28, column:174,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:174,the value of plot_cost is         : 28.420233796404844 

 At row:28, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:28, column:175,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:175,the value of plot_cost is         : 28.265804795694187 

 At row:28, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:28, column:176,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:176,the value of plot_cost is         : 28.112183855386046 

 At row:28, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:28, column:177,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:177,the value of plot_cost is         : 27.959370975480418 

 At row:28, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:28, column:178,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:178,the value of plot_cost is         : 27.807366155977302 

 At row:28, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:28, column:179,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:179,the value of plot_cost is         : 27.6561693968767 

 At row:28, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:28, column:180,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:180,the value of plot_cost is         : 27.50578069817861 

 At row:28, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:28, column:181,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:181,the value of plot_cost is         : 27.356200059883047 

 At row:28, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:28, column:182,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:182,the value of plot_cost is         : 27.207427481989992 

 At row:28, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:28, column:183,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:183,the value of plot_cost is         : 27.05946296449946 

 At row:28, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:28, column:184,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:184,the value of plot_cost is         : 26.912306507411422 

 At row:28, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:28, column:185,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:185,the value of plot_cost is         : 26.765958110725915 

 At row:28, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:28, column:186,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:186,the value of plot_cost is         : 26.62041777444292 

 At row:28, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:28, column:187,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:187,the value of plot_cost is         : 26.47568549856245 

 At row:28, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:28, column:188,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:188,the value of plot_cost is         : 26.33176128308448 

 At row:28, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:28, column:189,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:189,the value of plot_cost is         : 26.188645128009032 

 At row:28, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:28, column:190,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:190,the value of plot_cost is         : 26.04633703333609 

 At row:28, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:28, column:191,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:191,the value of plot_cost is         : 25.90483699906568 

 At row:28, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:28, column:192,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:192,the value of plot_cost is         : 25.764145025197777 

 At row:28, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:28, column:193,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:193,the value of plot_cost is         : 25.62426111173239 

 At row:28, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:28, column:194,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:194,the value of plot_cost is         : 25.48518525866951 

 At row:28, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:28, column:195,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:195,the value of plot_cost is         : 25.346917466009153 

 At row:28, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:28, column:196,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:196,the value of plot_cost is         : 25.209457733751307 

 At row:28, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:28, column:197,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:197,the value of plot_cost is         : 25.072806061895978 

 At row:28, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:28, column:198,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:198,the value of plot_cost is         : 24.93696245044317 

 At row:28, column:199,the value of plot_t0 is           : 3.0
 At row:28, column:199,the value of plot_t1 is           : -0.4371859296482412
 At row:28, column:199,the value of plot_cost is         : 24.801926899392875 

 At row:29, column:0,the value of plot_t0 is           : -1.0
 At row:29, column:0,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:0,the value of plot_cost is         : 66.31464598657321 

 At row:29, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:29, column:1,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:1,the value of plot_cost is         : 66.02229261887325 

 At row:29, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:29, column:2,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:2,the value of plot_cost is         : 65.73074731157581 

 At row:29, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:29, column:3,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:3,the value of plot_cost is         : 65.4400100646809 

 At row:29, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:29, column:4,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:4,the value of plot_cost is         : 65.1500808781885 

 At row:29, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:29, column:5,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:5,the value of plot_cost is         : 64.86095975209861 

 At row:29, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:29, column:6,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:6,the value of plot_cost is         : 64.57264668641125 

 At row:29, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:29, column:7,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:7,the value of plot_cost is         : 64.28514168112638 

 At row:29, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:29, column:8,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:8,the value of plot_cost is         : 63.998444736244025 

 At row:29, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:29, column:9,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:9,the value of plot_cost is         : 63.7125558517642 

 At row:29, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:29, column:10,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:10,the value of plot_cost is         : 63.42747502768689 

 At row:29, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:29, column:11,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:11,the value of plot_cost is         : 63.14320226401209 

 At row:29, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:29, column:12,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:12,the value of plot_cost is         : 62.85973756073981 

 At row:29, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:29, column:13,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:13,the value of plot_cost is         : 62.57708091787005 

 At row:29, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:29, column:14,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:14,the value of plot_cost is         : 62.29523233540279 

 At row:29, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:29, column:15,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:15,the value of plot_cost is         : 62.014191813338044 

 At row:29, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:29, column:16,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:16,the value of plot_cost is         : 61.73395935167582 

 At row:29, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:29, column:17,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:17,the value of plot_cost is         : 61.45453495041612 

 At row:29, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:29, column:18,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:18,the value of plot_cost is         : 61.17591860955891 

 At row:29, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:29, column:19,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:19,the value of plot_cost is         : 60.898110329104234 

 At row:29, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:29, column:20,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:20,the value of plot_cost is         : 60.621110109052076 

 At row:29, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:29, column:21,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:21,the value of plot_cost is         : 60.34491794940243 

 At row:29, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:29, column:22,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:22,the value of plot_cost is         : 60.069533850155295 

 At row:29, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:29, column:23,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:23,the value of plot_cost is         : 59.79495781131068 

 At row:29, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:29, column:24,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:24,the value of plot_cost is         : 59.52118983286858 

 At row:29, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:29, column:25,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:25,the value of plot_cost is         : 59.248229914829 

 At row:29, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:29, column:26,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:26,the value of plot_cost is         : 58.97607805719191 

 At row:29, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:29, column:27,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:27,the value of plot_cost is         : 58.70473425995735 

 At row:29, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:29, column:28,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:28,the value of plot_cost is         : 58.43419852312531 

 At row:29, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:29, column:29,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:29,the value of plot_cost is         : 58.16447084669579 

 At row:29, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:29, column:30,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:30,the value of plot_cost is         : 57.89555123066877 

 At row:29, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:29, column:31,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:31,the value of plot_cost is         : 57.62743967504427 

 At row:29, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:29, column:32,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:32,the value of plot_cost is         : 57.3601361798223 

 At row:29, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:29, column:33,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:33,the value of plot_cost is         : 57.09364074500282 

 At row:29, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:29, column:34,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:34,the value of plot_cost is         : 56.82795337058589 

 At row:29, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:29, column:35,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:35,the value of plot_cost is         : 56.56307405657144 

 At row:29, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:29, column:36,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:36,the value of plot_cost is         : 56.29900280295952 

 At row:29, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:29, column:37,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:37,the value of plot_cost is         : 56.03573960975011 

 At row:29, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:29, column:38,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:38,the value of plot_cost is         : 55.77328447694322 

 At row:29, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:29, column:39,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:39,the value of plot_cost is         : 55.511637404538845 

 At row:29, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:29, column:40,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:40,the value of plot_cost is         : 55.250798392536986 

 At row:29, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:29, column:41,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:41,the value of plot_cost is         : 54.99076744093763 

 At row:29, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:29, column:42,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:42,the value of plot_cost is         : 54.7315445497408 

 At row:29, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:29, column:43,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:43,the value of plot_cost is         : 54.473129718946495 

 At row:29, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:29, column:44,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:44,the value of plot_cost is         : 54.21552294855469 

 At row:29, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:29, column:45,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:45,the value of plot_cost is         : 53.9587242385654 

 At row:29, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:29, column:46,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:46,the value of plot_cost is         : 53.70273358897863 

 At row:29, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:29, column:47,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:47,the value of plot_cost is         : 53.44755099979438 

 At row:29, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:29, column:48,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:48,the value of plot_cost is         : 53.193176471012634 

 At row:29, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:29, column:49,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:49,the value of plot_cost is         : 52.93961000263341 

 At row:29, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:29, column:50,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:50,the value of plot_cost is         : 52.6868515946567 

 At row:29, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:29, column:51,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:51,the value of plot_cost is         : 52.43490124708249 

 At row:29, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:29, column:52,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:52,the value of plot_cost is         : 52.18375895991082 

 At row:29, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:29, column:53,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:53,the value of plot_cost is         : 51.933424733141656 

 At row:29, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:29, column:54,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:54,the value of plot_cost is         : 51.683898566775014 

 At row:29, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:29, column:55,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:55,the value of plot_cost is         : 51.43518046081087 

 At row:29, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:29, column:56,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:56,the value of plot_cost is         : 51.18727041524926 

 At row:29, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:29, column:57,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:57,the value of plot_cost is         : 50.94016843009015 

 At row:29, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:29, column:58,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:58,the value of plot_cost is         : 50.693874505333554 

 At row:29, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:29, column:59,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:59,the value of plot_cost is         : 50.44838864097949 

 At row:29, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:29, column:60,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:60,the value of plot_cost is         : 50.20371083702791 

 At row:29, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:29, column:61,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:61,the value of plot_cost is         : 49.95984109347887 

 At row:29, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:29, column:62,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:62,the value of plot_cost is         : 49.71677941033234 

 At row:29, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:29, column:63,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:63,the value of plot_cost is         : 49.47452578758834 

 At row:29, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:29, column:64,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:64,the value of plot_cost is         : 49.23308022524684 

 At row:29, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:29, column:65,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:65,the value of plot_cost is         : 48.992442723307846 

 At row:29, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:29, column:66,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:66,the value of plot_cost is         : 48.75261328177138 

 At row:29, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:29, column:67,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:67,the value of plot_cost is         : 48.51359190063742 

 At row:29, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:29, column:68,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:68,the value of plot_cost is         : 48.27537857990599 

 At row:29, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:29, column:69,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:69,the value of plot_cost is         : 48.037973319577056 

 At row:29, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:29, column:70,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:70,the value of plot_cost is         : 47.801376119650655 

 At row:29, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:29, column:71,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:71,the value of plot_cost is         : 47.56558698012676 

 At row:29, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:29, column:72,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:72,the value of plot_cost is         : 47.330605901005384 

 At row:29, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:29, column:73,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:73,the value of plot_cost is         : 47.09643288228652 

 At row:29, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:29, column:74,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:74,the value of plot_cost is         : 46.86306792397018 

 At row:29, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:29, column:75,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:75,the value of plot_cost is         : 46.63051102605634 

 At row:29, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:29, column:76,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:76,the value of plot_cost is         : 46.39876218854502 

 At row:29, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:29, column:77,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:77,the value of plot_cost is         : 46.167821411436215 

 At row:29, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:29, column:78,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:78,the value of plot_cost is         : 45.93768869472993 

 At row:29, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:29, column:79,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:79,the value of plot_cost is         : 45.70836403842616 

 At row:29, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:29, column:80,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:80,the value of plot_cost is         : 45.4798474425249 

 At row:29, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:29, column:81,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:81,the value of plot_cost is         : 45.25213890702616 

 At row:29, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:29, column:82,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:82,the value of plot_cost is         : 45.02523843192992 

 At row:29, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:29, column:83,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:83,the value of plot_cost is         : 44.79914601723622 

 At row:29, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:29, column:84,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:84,the value of plot_cost is         : 44.57386166294503 

 At row:29, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:29, column:85,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:85,the value of plot_cost is         : 44.349385369056336 

 At row:29, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:29, column:86,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:86,the value of plot_cost is         : 44.12571713557017 

 At row:29, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:29, column:87,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:87,the value of plot_cost is         : 43.90285696248652 

 At row:29, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:29, column:88,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:88,the value of plot_cost is         : 43.68080484980538 

 At row:29, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:29, column:89,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:89,the value of plot_cost is         : 43.459560797526755 

 At row:29, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:29, column:90,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:90,the value of plot_cost is         : 43.239124805650654 

 At row:29, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:29, column:91,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:91,the value of plot_cost is         : 43.01949687417705 

 At row:29, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:29, column:92,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:92,the value of plot_cost is         : 42.80067700310598 

 At row:29, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:29, column:93,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:93,the value of plot_cost is         : 42.58266519243742 

 At row:29, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:29, column:94,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:94,the value of plot_cost is         : 42.365461442171366 

 At row:29, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:29, column:95,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:95,the value of plot_cost is         : 42.14906575230784 

 At row:29, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:29, column:96,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:96,the value of plot_cost is         : 41.93347812284683 

 At row:29, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:29, column:97,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:97,the value of plot_cost is         : 41.71869855378832 

 At row:29, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:29, column:98,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:98,the value of plot_cost is         : 41.50472704513233 

 At row:29, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:29, column:99,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:99,the value of plot_cost is         : 41.291563596878866 

 At row:29, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:29, column:100,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:100,the value of plot_cost is         : 41.07920820902791 

 At row:29, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:29, column:101,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:101,the value of plot_cost is         : 40.86766088157947 

 At row:29, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:29, column:102,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:102,the value of plot_cost is         : 40.656921614533545 

 At row:29, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:29, column:103,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:103,the value of plot_cost is         : 40.446990407890134 

 At row:29, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:29, column:104,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:104,the value of plot_cost is         : 40.237867261649235 

 At row:29, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:29, column:105,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:105,the value of plot_cost is         : 40.029552175810856 

 At row:29, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:29, column:106,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:106,the value of plot_cost is         : 39.822045150375 

 At row:29, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:29, column:107,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:107,the value of plot_cost is         : 39.61534618534163 

 At row:29, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:29, column:108,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:108,the value of plot_cost is         : 39.4094552807108 

 At row:29, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:29, column:109,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:109,the value of plot_cost is         : 39.20437243648248 

 At row:29, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:29, column:110,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:110,the value of plot_cost is         : 39.00009765265667 

 At row:29, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:29, column:111,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:111,the value of plot_cost is         : 38.79663092923338 

 At row:29, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:29, column:112,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:112,the value of plot_cost is         : 38.59397226621261 

 At row:29, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:29, column:113,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:113,the value of plot_cost is         : 38.39212166359436 

 At row:29, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:29, column:114,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:114,the value of plot_cost is         : 38.19107912137861 

 At row:29, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:29, column:115,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:115,the value of plot_cost is         : 37.99084463956538 

 At row:29, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:29, column:116,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:116,the value of plot_cost is         : 37.79141821815467 

 At row:29, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:29, column:117,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:117,the value of plot_cost is         : 37.59279985714647 

 At row:29, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:29, column:118,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:118,the value of plot_cost is         : 37.39498955654077 

 At row:29, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:29, column:119,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:119,the value of plot_cost is         : 37.19798731633761 

 At row:29, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:29, column:120,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:120,the value of plot_cost is         : 37.00179313653695 

 At row:29, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:29, column:121,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:121,the value of plot_cost is         : 36.80640701713881 

 At row:29, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:29, column:122,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:122,the value of plot_cost is         : 36.61182895814319 

 At row:29, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:29, column:123,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:123,the value of plot_cost is         : 36.41805895955009 

 At row:29, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:29, column:124,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:124,the value of plot_cost is         : 36.22509702135949 

 At row:29, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:29, column:125,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:125,the value of plot_cost is         : 36.03294314357141 

 At row:29, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:29, column:126,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:126,the value of plot_cost is         : 35.84159732618585 

 At row:29, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:29, column:127,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:127,the value of plot_cost is         : 35.6510595692028 

 At row:29, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:29, column:128,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:128,the value of plot_cost is         : 35.46132987262226 

 At row:29, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:29, column:129,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:129,the value of plot_cost is         : 35.27240823644424 

 At row:29, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:29, column:130,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:130,the value of plot_cost is         : 35.08429466066874 

 At row:29, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:29, column:131,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:131,the value of plot_cost is         : 34.89698914529575 

 At row:29, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:29, column:132,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:132,the value of plot_cost is         : 34.710491690325284 

 At row:29, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:29, column:133,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:133,the value of plot_cost is         : 34.524802295757326 

 At row:29, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:29, column:134,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:134,the value of plot_cost is         : 34.33992096159188 

 At row:29, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:29, column:135,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:135,the value of plot_cost is         : 34.15584768782895 

 At row:29, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:29, column:136,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:136,the value of plot_cost is         : 33.97258247446854 

 At row:29, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:29, column:137,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:137,the value of plot_cost is         : 33.79012532151064 

 At row:29, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:29, column:138,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:138,the value of plot_cost is         : 33.608476228955254 

 At row:29, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:29, column:139,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:139,the value of plot_cost is         : 33.42763519680239 

 At row:29, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:29, column:140,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:140,the value of plot_cost is         : 33.24760222505203 

 At row:29, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:29, column:141,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:141,the value of plot_cost is         : 33.0683773137042 

 At row:29, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:29, column:142,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:142,the value of plot_cost is         : 32.88996046275887 

 At row:29, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:29, column:143,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:143,the value of plot_cost is         : 32.71235167221607 

 At row:29, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:29, column:144,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:144,the value of plot_cost is         : 32.53555094207577 

 At row:29, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:29, column:145,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:145,the value of plot_cost is         : 32.359558272338 

 At row:29, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:29, column:146,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:146,the value of plot_cost is         : 32.18437366300274 

 At row:29, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:29, column:147,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:147,the value of plot_cost is         : 32.00999711406999 

 At row:29, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:29, column:148,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:148,the value of plot_cost is         : 31.836428625539757 

 At row:29, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:29, column:149,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:149,the value of plot_cost is         : 31.66366819741204 

 At row:29, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:29, column:150,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:150,the value of plot_cost is         : 31.491715829686832 

 At row:29, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:29, column:151,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:151,the value of plot_cost is         : 31.320571522364148 

 At row:29, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:29, column:152,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:152,the value of plot_cost is         : 31.150235275443983 

 At row:29, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:29, column:153,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:153,the value of plot_cost is         : 30.98070708892633 

 At row:29, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:29, column:154,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:154,the value of plot_cost is         : 30.811986962811186 

 At row:29, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:29, column:155,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:155,the value of plot_cost is         : 30.644074897098562 

 At row:29, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:29, column:156,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:156,the value of plot_cost is         : 30.476970891788444 

 At row:29, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:29, column:157,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:157,the value of plot_cost is         : 30.31067494688085 

 At row:29, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:29, column:158,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:158,the value of plot_cost is         : 30.145187062375765 

 At row:29, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:29, column:159,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:159,the value of plot_cost is         : 29.9805072382732 

 At row:29, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:29, column:160,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:160,the value of plot_cost is         : 29.816635474573147 

 At row:29, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:29, column:161,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:161,the value of plot_cost is         : 29.65357177127561 

 At row:29, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:29, column:162,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:162,the value of plot_cost is         : 29.4913161283806 

 At row:29, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:29, column:163,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:163,the value of plot_cost is         : 29.32986854588809 

 At row:29, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:29, column:164,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:164,the value of plot_cost is         : 29.1692290237981 

 At row:29, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:29, column:165,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:165,the value of plot_cost is         : 29.009397562110625 

 At row:29, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:29, column:166,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:166,the value of plot_cost is         : 28.850374160825663 

 At row:29, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:29, column:167,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:167,the value of plot_cost is         : 28.69215881994322 

 At row:29, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:29, column:168,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:168,the value of plot_cost is         : 28.534751539463286 

 At row:29, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:29, column:169,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:169,the value of plot_cost is         : 28.378152319385872 

 At row:29, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:29, column:170,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:170,the value of plot_cost is         : 28.22236115971097 

 At row:29, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:29, column:171,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:171,the value of plot_cost is         : 28.06737806043859 

 At row:29, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:29, column:172,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:172,the value of plot_cost is         : 27.91320302156872 

 At row:29, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:29, column:173,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:173,the value of plot_cost is         : 27.759836043101366 

 At row:29, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:29, column:174,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:174,the value of plot_cost is         : 27.60727712503652 

 At row:29, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:29, column:175,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:175,the value of plot_cost is         : 27.4555262673742 

 At row:29, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:29, column:176,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:176,the value of plot_cost is         : 27.304583470114387 

 At row:29, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:29, column:177,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:177,the value of plot_cost is         : 27.154448733257098 

 At row:29, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:29, column:178,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:178,the value of plot_cost is         : 27.005122056802314 

 At row:29, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:29, column:179,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:179,the value of plot_cost is         : 26.856603440750053 

 At row:29, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:29, column:180,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:180,the value of plot_cost is         : 26.708892885100298 

 At row:29, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:29, column:181,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:181,the value of plot_cost is         : 26.561990389853065 

 At row:29, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:29, column:182,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:182,the value of plot_cost is         : 26.415895955008352 

 At row:29, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:29, column:183,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:183,the value of plot_cost is         : 26.270609580566152 

 At row:29, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:29, column:184,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:184,the value of plot_cost is         : 26.126131266526457 

 At row:29, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:29, column:185,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:185,the value of plot_cost is         : 25.982461012889285 

 At row:29, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:29, column:186,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:186,the value of plot_cost is         : 25.839598819654626 

 At row:29, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:29, column:187,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:187,the value of plot_cost is         : 25.697544686822482 

 At row:29, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:29, column:188,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:188,the value of plot_cost is         : 25.55629861439285 

 At row:29, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:29, column:189,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:189,the value of plot_cost is         : 25.41586060236574 

 At row:29, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:29, column:190,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:190,the value of plot_cost is         : 25.276230650741137 

 At row:29, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:29, column:191,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:191,the value of plot_cost is         : 25.137408759519058 

 At row:29, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:29, column:192,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:192,the value of plot_cost is         : 24.99939492869949 

 At row:29, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:29, column:193,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:193,the value of plot_cost is         : 24.86218915828244 

 At row:29, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:29, column:194,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:194,the value of plot_cost is         : 24.7257914482679 

 At row:29, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:29, column:195,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:195,the value of plot_cost is         : 24.590201798655876 

 At row:29, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:29, column:196,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:196,the value of plot_cost is         : 24.455420209446366 

 At row:29, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:29, column:197,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:197,the value of plot_cost is         : 24.321446680639372 

 At row:29, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:29, column:198,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:198,the value of plot_cost is         : 24.1882812122349 

 At row:29, column:199,the value of plot_t0 is           : 3.0
 At row:29, column:199,the value of plot_t1 is           : -0.4170854271356784
 At row:29, column:199,the value of plot_cost is         : 24.055923804232936 

 At row:30, column:0,the value of plot_t0 is           : -1.0
 At row:30, column:0,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:0,the value of plot_cost is         : 65.04827507963363 

 At row:30, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:30, column:1,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:1,the value of plot_cost is         : 64.75859985498201 

 At row:30, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:30, column:2,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:2,the value of plot_cost is         : 64.4697326907329 

 At row:30, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:30, column:3,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:3,the value of plot_cost is         : 64.18167358688632 

 At row:30, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:30, column:4,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:4,the value of plot_cost is         : 63.89442254344226 

 At row:30, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:30, column:5,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:5,the value of plot_cost is         : 63.6079795604007 

 At row:30, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:30, column:6,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:6,the value of plot_cost is         : 63.32234463776167 

 At row:30, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:30, column:7,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:7,the value of plot_cost is         : 63.037517775525146 

 At row:30, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:30, column:8,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:8,the value of plot_cost is         : 62.753498973691144 

 At row:30, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:30, column:9,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:9,the value of plot_cost is         : 62.47028823225964 

 At row:30, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:30, column:10,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:10,the value of plot_cost is         : 62.18788555123066 

 At row:30, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:30, column:11,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:11,the value of plot_cost is         : 61.9062909306042 

 At row:30, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:30, column:12,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:12,the value of plot_cost is         : 61.62550437038025 

 At row:30, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:30, column:13,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:13,the value of plot_cost is         : 61.34552587055881 

 At row:30, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:30, column:14,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:14,the value of plot_cost is         : 61.0663554311399 

 At row:30, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:30, column:15,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:15,the value of plot_cost is         : 60.78799305212349 

 At row:30, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:30, column:16,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:16,the value of plot_cost is         : 60.51043873350961 

 At row:30, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:30, column:17,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:17,the value of plot_cost is         : 60.233692475298234 

 At row:30, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:30, column:18,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:18,the value of plot_cost is         : 59.957754277489386 

 At row:30, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:30, column:19,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:19,the value of plot_cost is         : 59.682624140083036 

 At row:30, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:30, column:20,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:20,the value of plot_cost is         : 59.408302063079205 

 At row:30, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:30, column:21,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:21,the value of plot_cost is         : 59.134788046477894 

 At row:30, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:30, column:22,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:22,the value of plot_cost is         : 58.86208209027909 

 At row:30, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:30, column:23,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:23,the value of plot_cost is         : 58.59018419448281 

 At row:30, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:30, column:24,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:24,the value of plot_cost is         : 58.31909435908905 

 At row:30, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:30, column:25,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:25,the value of plot_cost is         : 58.048812584097796 

 At row:30, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:30, column:26,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:26,the value of plot_cost is         : 57.77933886950906 

 At row:30, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:30, column:27,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:27,the value of plot_cost is         : 57.51067321532283 

 At row:30, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:30, column:28,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:28,the value of plot_cost is         : 57.24281562153914 

 At row:30, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:30, column:29,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:29,the value of plot_cost is         : 56.97576608815794 

 At row:30, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:30, column:30,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:30,the value of plot_cost is         : 56.70952461517926 

 At row:30, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:30, column:31,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:31,the value of plot_cost is         : 56.444091202603104 

 At row:30, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:30, column:32,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:32,the value of plot_cost is         : 56.17946585042945 

 At row:30, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:30, column:33,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:33,the value of plot_cost is         : 55.91564855865832 

 At row:30, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:30, column:34,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:34,the value of plot_cost is         : 55.652639327289705 

 At row:30, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:30, column:35,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:35,the value of plot_cost is         : 55.390438156323604 

 At row:30, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:30, column:36,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:36,the value of plot_cost is         : 55.12904504576002 

 At row:30, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:30, column:37,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:37,the value of plot_cost is         : 54.86845999559895 

 At row:30, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:30, column:38,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:38,the value of plot_cost is         : 54.6086830058404 

 At row:30, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:30, column:39,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:39,the value of plot_cost is         : 54.34971407648435 

 At row:30, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:30, column:40,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:40,the value of plot_cost is         : 54.09155320753083 

 At row:30, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:30, column:41,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:41,the value of plot_cost is         : 53.83420039897982 

 At row:30, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:30, column:42,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:42,the value of plot_cost is         : 53.57765565083132 

 At row:30, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:30, column:43,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:43,the value of plot_cost is         : 53.32191896308534 

 At row:30, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:30, column:44,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:44,the value of plot_cost is         : 53.066990335741885 

 At row:30, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:30, column:45,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:45,the value of plot_cost is         : 52.81286976880092 

 At row:30, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:30, column:46,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:46,the value of plot_cost is         : 52.55955726226249 

 At row:30, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:30, column:47,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:47,the value of plot_cost is         : 52.30705281612657 

 At row:30, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:30, column:48,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:48,the value of plot_cost is         : 52.05535643039317 

 At row:30, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:30, column:49,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:49,the value of plot_cost is         : 51.80446810506227 

 At row:30, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:30, column:50,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:50,the value of plot_cost is         : 51.5543878401339 

 At row:30, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:30, column:51,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:51,the value of plot_cost is         : 51.30511563560805 

 At row:30, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:30, column:52,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:52,the value of plot_cost is         : 51.056651491484686 

 At row:30, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:30, column:53,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:53,the value of plot_cost is         : 50.80899540776387 

 At row:30, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:30, column:54,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:54,the value of plot_cost is         : 50.56214738444555 

 At row:30, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:30, column:55,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:55,the value of plot_cost is         : 50.31610742152976 

 At row:30, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:30, column:56,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:56,the value of plot_cost is         : 50.07087551901647 

 At row:30, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:30, column:57,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:57,the value of plot_cost is         : 49.8264516769057 

 At row:30, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:30, column:58,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:58,the value of plot_cost is         : 49.58283589519745 

 At row:30, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:30, column:59,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:59,the value of plot_cost is         : 49.340028173891696 

 At row:30, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:30, column:60,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:60,the value of plot_cost is         : 49.09802851298848 

 At row:30, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:30, column:61,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:61,the value of plot_cost is         : 48.85683691248778 

 At row:30, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:30, column:62,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:62,the value of plot_cost is         : 48.61645337238958 

 At row:30, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:30, column:63,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:63,the value of plot_cost is         : 48.3768778926939 

 At row:30, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:30, column:64,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:64,the value of plot_cost is         : 48.13811047340074 

 At row:30, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:30, column:65,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:65,the value of plot_cost is         : 47.900151114510095 

 At row:30, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:30, column:66,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:66,the value of plot_cost is         : 47.66299981602195 

 At row:30, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:30, column:67,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:67,the value of plot_cost is         : 47.42665657793634 

 At row:30, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:30, column:68,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:68,the value of plot_cost is         : 47.19112140025323 

 At row:30, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:30, column:69,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:69,the value of plot_cost is         : 46.95639428297264 

 At row:30, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:30, column:70,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:70,the value of plot_cost is         : 46.722475226094566 

 At row:30, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:30, column:71,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:71,the value of plot_cost is         : 46.489364229619014 

 At row:30, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:30, column:72,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:72,the value of plot_cost is         : 46.25706129354597 

 At row:30, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:30, column:73,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:73,the value of plot_cost is         : 46.025566417875446 

 At row:30, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:30, column:74,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:74,the value of plot_cost is         : 45.79487960260743 

 At row:30, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:30, column:75,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:75,the value of plot_cost is         : 45.56500084774194 

 At row:30, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:30, column:76,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:76,the value of plot_cost is         : 45.33593015327895 

 At row:30, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:30, column:77,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:77,the value of plot_cost is         : 45.10766751921849 

 At row:30, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:30, column:78,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:78,the value of plot_cost is         : 44.88021294556053 

 At row:30, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:30, column:79,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:79,the value of plot_cost is         : 44.6535664323051 

 At row:30, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:30, column:80,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:80,the value of plot_cost is         : 44.427727979452165 

 At row:30, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:30, column:81,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:81,the value of plot_cost is         : 44.202697587001765 

 At row:30, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:30, column:82,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:82,the value of plot_cost is         : 43.97847525495387 

 At row:30, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:30, column:83,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:83,the value of plot_cost is         : 43.7550609833085 

 At row:30, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:30, column:84,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:84,the value of plot_cost is         : 43.53245477206564 

 At row:30, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:30, column:85,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:85,the value of plot_cost is         : 43.310656621225284 

 At row:30, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:30, column:86,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:86,the value of plot_cost is         : 43.089666530787454 

 At row:30, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:30, column:87,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:87,the value of plot_cost is         : 42.869484500752144 

 At row:30, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:30, column:88,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:88,the value of plot_cost is         : 42.65011053111934 

 At row:30, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:30, column:89,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:89,the value of plot_cost is         : 42.43154462188905 

 At row:30, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:30, column:90,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:90,the value of plot_cost is         : 42.21378677306128 

 At row:30, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:30, column:91,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:91,the value of plot_cost is         : 41.996836984636026 

 At row:30, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:30, column:92,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:92,the value of plot_cost is         : 41.780695256613285 

 At row:30, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:30, column:93,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:93,the value of plot_cost is         : 41.565361588993056 

 At row:30, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:30, column:94,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:94,the value of plot_cost is         : 41.35083598177535 

 At row:30, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:30, column:95,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:95,the value of plot_cost is         : 41.13711843496014 

 At row:30, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:30, column:96,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:96,the value of plot_cost is         : 40.92420894854747 

 At row:30, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:30, column:97,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:97,the value of plot_cost is         : 40.71210752253731 

 At row:30, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:30, column:98,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:98,the value of plot_cost is         : 40.50081415692966 

 At row:30, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:30, column:99,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:99,the value of plot_cost is         : 40.29032885172452 

 At row:30, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:30, column:100,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:100,the value of plot_cost is         : 40.0806516069219 

 At row:30, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:30, column:101,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:101,the value of plot_cost is         : 39.87178242252179 

 At row:30, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:30, column:102,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:102,the value of plot_cost is         : 39.6637212985242 

 At row:30, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:30, column:103,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:103,the value of plot_cost is         : 39.456468234929126 

 At row:30, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:30, column:104,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:104,the value of plot_cost is         : 39.25002323173657 

 At row:30, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:30, column:105,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:105,the value of plot_cost is         : 39.04438628894653 

 At row:30, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:30, column:106,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:106,the value of plot_cost is         : 38.83955740655899 

 At row:30, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:30, column:107,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:107,the value of plot_cost is         : 38.63553658457398 

 At row:30, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:30, column:108,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:108,the value of plot_cost is         : 38.43232382299147 

 At row:30, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:30, column:109,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:109,the value of plot_cost is         : 38.229919121811484 

 At row:30, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:30, column:110,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:110,the value of plot_cost is         : 38.028322481034024 

 At row:30, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:30, column:111,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:111,the value of plot_cost is         : 37.82753390065907 

 At row:30, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:30, column:112,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:112,the value of plot_cost is         : 37.62755338068663 

 At row:30, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:30, column:113,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:113,the value of plot_cost is         : 37.428380921116705 

 At row:30, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:30, column:114,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:114,the value of plot_cost is         : 37.23001652194929 

 At row:30, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:30, column:115,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:115,the value of plot_cost is         : 37.032460183184405 

 At row:30, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:30, column:116,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:116,the value of plot_cost is         : 36.83571190482203 

 At row:30, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:30, column:117,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:117,the value of plot_cost is         : 36.63977168686216 

 At row:30, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:30, column:118,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:118,the value of plot_cost is         : 36.44463952930481 

 At row:30, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:30, column:119,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:119,the value of plot_cost is         : 36.25031543214997 

 At row:30, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:30, column:120,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:120,the value of plot_cost is         : 36.056799395397654 

 At row:30, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:30, column:121,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:121,the value of plot_cost is         : 35.86409141904785 

 At row:30, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:30, column:122,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:122,the value of plot_cost is         : 35.672191503100564 

 At row:30, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:30, column:123,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:123,the value of plot_cost is         : 35.481099647555794 

 At row:30, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:30, column:124,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:124,the value of plot_cost is         : 35.29081585241354 

 At row:30, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:30, column:125,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:125,the value of plot_cost is         : 35.101340117673786 

 At row:30, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:30, column:126,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:126,the value of plot_cost is         : 34.91267244333656 

 At row:30, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:30, column:127,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:127,the value of plot_cost is         : 34.724812829401856 

 At row:30, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:30, column:128,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:128,the value of plot_cost is         : 34.53776127586965 

 At row:30, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:30, column:129,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:129,the value of plot_cost is         : 34.35151778273997 

 At row:30, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:30, column:130,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:130,the value of plot_cost is         : 34.1660823500128 

 At row:30, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:30, column:131,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:131,the value of plot_cost is         : 33.981454977688145 

 At row:30, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:30, column:132,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:132,the value of plot_cost is         : 33.797635665766 

 At row:30, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:30, column:133,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:133,the value of plot_cost is         : 33.614624414246386 

 At row:30, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:30, column:134,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:134,the value of plot_cost is         : 33.43242122312928 

 At row:30, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:30, column:135,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:135,the value of plot_cost is         : 33.25102609241468 

 At row:30, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:30, column:136,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:136,the value of plot_cost is         : 33.07043902210261 

 At row:30, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:30, column:137,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:137,the value of plot_cost is         : 32.89066001219305 

 At row:30, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:30, column:138,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:138,the value of plot_cost is         : 32.711689062686 

 At row:30, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:30, column:139,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:139,the value of plot_cost is         : 32.533526173581464 

 At row:30, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:30, column:140,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:140,the value of plot_cost is         : 32.35617134487945 

 At row:30, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:30, column:141,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:141,the value of plot_cost is         : 32.179624576579954 

 At row:30, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:30, column:142,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:142,the value of plot_cost is         : 32.003885868682964 

 At row:30, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:30, column:143,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:143,the value of plot_cost is         : 31.828955221188494 

 At row:30, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:30, column:144,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:144,the value of plot_cost is         : 31.654832634096536 

 At row:30, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:30, column:145,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:145,the value of plot_cost is         : 31.481518107407094 

 At row:30, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:30, column:146,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:146,the value of plot_cost is         : 31.309011641120172 

 At row:30, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:30, column:147,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:147,the value of plot_cost is         : 31.137313235235762 

 At row:30, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:30, column:148,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:148,the value of plot_cost is         : 30.966422889753858 

 At row:30, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:30, column:149,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:149,the value of plot_cost is         : 30.796340604674477 

 At row:30, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:30, column:150,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:150,the value of plot_cost is         : 30.627066379997615 

 At row:30, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:30, column:151,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:151,the value of plot_cost is         : 30.458600215723255 

 At row:30, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:30, column:152,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:152,the value of plot_cost is         : 30.290942111851425 

 At row:30, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:30, column:153,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:153,the value of plot_cost is         : 30.124092068382105 

 At row:30, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:30, column:154,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:154,the value of plot_cost is         : 29.9580500853153 

 At row:30, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:30, column:155,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:155,the value of plot_cost is         : 29.79281616265101 

 At row:30, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:30, column:156,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:156,the value of plot_cost is         : 29.62839030038923 

 At row:30, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:30, column:157,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:157,the value of plot_cost is         : 29.464772498529975 

 At row:30, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:30, column:158,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:158,the value of plot_cost is         : 29.301962757073227 

 At row:30, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:30, column:159,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:159,the value of plot_cost is         : 29.139961076018995 

 At row:30, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:30, column:160,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:160,the value of plot_cost is         : 28.978767455367283 

 At row:30, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:30, column:161,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:161,the value of plot_cost is         : 28.81838189511808 

 At row:30, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:30, column:162,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:162,the value of plot_cost is         : 28.658804395271396 

 At row:30, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:30, column:163,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:163,the value of plot_cost is         : 28.500034955827232 

 At row:30, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:30, column:164,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:164,the value of plot_cost is         : 28.342073576785577 

 At row:30, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:30, column:165,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:165,the value of plot_cost is         : 28.184920258146434 

 At row:30, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:30, column:166,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:166,the value of plot_cost is         : 28.02857499990981 

 At row:30, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:30, column:167,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:167,the value of plot_cost is         : 27.873037802075704 

 At row:30, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:30, column:168,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:168,the value of plot_cost is         : 27.718308664644105 

 At row:30, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:30, column:169,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:169,the value of plot_cost is         : 27.564387587615027 

 At row:30, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:30, column:170,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:170,the value of plot_cost is         : 27.41127457098846 

 At row:30, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:30, column:171,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:171,the value of plot_cost is         : 27.25896961476441 

 At row:30, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:30, column:172,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:172,the value of plot_cost is         : 27.10747271894288 

 At row:30, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:30, column:173,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:173,the value of plot_cost is         : 26.95678388352386 

 At row:30, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:30, column:174,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:174,the value of plot_cost is         : 26.80690310850736 

 At row:30, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:30, column:175,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:175,the value of plot_cost is         : 26.657830393893367 

 At row:30, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:30, column:176,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:176,the value of plot_cost is         : 26.509565739681896 

 At row:30, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:30, column:177,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:177,the value of plot_cost is         : 26.36210914587294 

 At row:30, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:30, column:178,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:178,the value of plot_cost is         : 26.21546061246649 

 At row:30, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:30, column:179,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:179,the value of plot_cost is         : 26.06962013946256 

 At row:30, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:30, column:180,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:180,the value of plot_cost is         : 25.92458772686115 

 At row:30, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:30, column:181,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:181,the value of plot_cost is         : 25.780363374662247 

 At row:30, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:30, column:182,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:182,the value of plot_cost is         : 25.636947082865866 

 At row:30, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:30, column:183,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:183,the value of plot_cost is         : 25.494338851471998 

 At row:30, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:30, column:184,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:184,the value of plot_cost is         : 25.35253868048065 

 At row:30, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:30, column:185,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:185,the value of plot_cost is         : 25.211546569891805 

 At row:30, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:30, column:186,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:186,the value of plot_cost is         : 25.071362519705488 

 At row:30, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:30, column:187,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:187,the value of plot_cost is         : 24.931986529921687 

 At row:30, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:30, column:188,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:188,the value of plot_cost is         : 24.793418600540388 

 At row:30, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:30, column:189,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:189,the value of plot_cost is         : 24.655658731561605 

 At row:30, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:30, column:190,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:190,the value of plot_cost is         : 24.51870692298534 

 At row:30, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:30, column:191,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:191,the value of plot_cost is         : 24.382563174811594 

 At row:30, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:30, column:192,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:192,the value of plot_cost is         : 24.247227487040366 

 At row:30, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:30, column:193,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:193,the value of plot_cost is         : 24.11269985967165 

 At row:30, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:30, column:194,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:194,the value of plot_cost is         : 23.978980292705447 

 At row:30, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:30, column:195,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:195,the value of plot_cost is         : 23.84606878614176 

 At row:30, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:30, column:196,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:196,the value of plot_cost is         : 23.71396533998059 

 At row:30, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:30, column:197,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:197,the value of plot_cost is         : 23.58266995422193 

 At row:30, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:30, column:198,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:198,the value of plot_cost is         : 23.452182628865792 

 At row:30, column:199,the value of plot_t0 is           : 3.0
 At row:30, column:199,the value of plot_t1 is           : -0.3969849246231155
 At row:30, column:199,the value of plot_cost is         : 23.322503363912162 

 At row:31, column:0,the value of plot_t0 is           : -1.0
 At row:31, column:0,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:0,the value of plot_cost is         : 63.79448682753322 

 At row:31, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:31, column:1,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:1,the value of plot_cost is         : 63.50748974592993 

 At row:31, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:31, column:2,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:2,the value of plot_cost is         : 63.22130072472917 

 At row:31, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:31, column:3,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:3,the value of plot_cost is         : 62.93591976393091 

 At row:31, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:31, column:4,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:4,the value of plot_cost is         : 62.65134686353518 

 At row:31, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:31, column:5,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:5,the value of plot_cost is         : 62.367582023541964 

 At row:31, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:31, column:6,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:6,the value of plot_cost is         : 62.084625243951265 

 At row:31, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:31, column:7,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:7,the value of plot_cost is         : 61.80247652476308 

 At row:31, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:31, column:8,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:8,the value of plot_cost is         : 61.52113586597741 

 At row:31, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:31, column:9,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:9,the value of plot_cost is         : 61.24060326759425 

 At row:31, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:31, column:10,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:10,the value of plot_cost is         : 60.96087872961361 

 At row:31, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:31, column:11,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:11,the value of plot_cost is         : 60.681962252035476 

 At row:31, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:31, column:12,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:12,the value of plot_cost is         : 60.40385383485986 

 At row:31, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:31, column:13,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:13,the value of plot_cost is         : 60.12655347808676 

 At row:31, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:31, column:14,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:14,the value of plot_cost is         : 59.850061181716185 

 At row:31, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:31, column:15,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:15,the value of plot_cost is         : 59.574376945748114 

 At row:31, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:31, column:16,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:16,the value of plot_cost is         : 59.29950077018256 

 At row:31, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:31, column:17,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:17,the value of plot_cost is         : 59.025432655019515 

 At row:31, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:31, column:18,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:18,the value of plot_cost is         : 58.752172600259 

 At row:31, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:31, column:19,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:19,the value of plot_cost is         : 58.47972060590101 

 At row:31, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:31, column:20,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:20,the value of plot_cost is         : 58.20807667194551 

 At row:31, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:31, column:21,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:21,the value of plot_cost is         : 57.93724079839252 

 At row:31, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:31, column:22,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:22,the value of plot_cost is         : 57.66721298524207 

 At row:31, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:31, column:23,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:23,the value of plot_cost is         : 57.39799323249412 

 At row:31, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:31, column:24,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:24,the value of plot_cost is         : 57.12958154014869 

 At row:31, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:31, column:25,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:25,the value of plot_cost is         : 56.86197790820577 

 At row:31, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:31, column:26,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:26,the value of plot_cost is         : 56.595182336665374 

 At row:31, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:31, column:27,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:27,the value of plot_cost is         : 56.32919482552748 

 At row:31, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:31, column:28,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:28,the value of plot_cost is         : 56.06401537479213 

 At row:31, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:31, column:29,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:29,the value of plot_cost is         : 55.79964398445926 

 At row:31, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:31, column:30,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:30,the value of plot_cost is         : 55.536080654528924 

 At row:31, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:31, column:31,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:31,the value of plot_cost is         : 55.27332538500109 

 At row:31, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:31, column:32,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:32,the value of plot_cost is         : 55.01137817587579 

 At row:31, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:31, column:33,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:33,the value of plot_cost is         : 54.75023902715299 

 At row:31, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:31, column:34,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:34,the value of plot_cost is         : 54.48990793883271 

 At row:31, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:31, column:35,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:35,the value of plot_cost is         : 54.23038491091493 

 At row:31, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:31, column:36,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:36,the value of plot_cost is         : 53.97166994339969 

 At row:31, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:31, column:37,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:37,the value of plot_cost is         : 53.713763036286956 

 At row:31, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:31, column:38,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:38,the value of plot_cost is         : 53.45666418957674 

 At row:31, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:31, column:39,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:39,the value of plot_cost is         : 53.20037340326903 

 At row:31, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:31, column:40,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:40,the value of plot_cost is         : 52.94489067736385 

 At row:31, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:31, column:41,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:41,the value of plot_cost is         : 52.69021601186117 

 At row:31, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:31, column:42,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:42,the value of plot_cost is         : 52.43634940676101 

 At row:31, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:31, column:43,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:43,the value of plot_cost is         : 52.183290862063366 

 At row:31, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:31, column:44,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:44,the value of plot_cost is         : 51.93104037776823 

 At row:31, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:31, column:45,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:45,the value of plot_cost is         : 51.679597953875614 

 At row:31, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:31, column:46,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:46,the value of plot_cost is         : 51.428963590385514 

 At row:31, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:31, column:47,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:47,the value of plot_cost is         : 51.179137287297934 

 At row:31, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:31, column:48,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:48,the value of plot_cost is         : 50.930119044612866 

 At row:31, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:31, column:49,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:49,the value of plot_cost is         : 50.6819088623303 

 At row:31, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:31, column:50,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:50,the value of plot_cost is         : 50.43450674045028 

 At row:31, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:31, column:51,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:51,the value of plot_cost is         : 50.187912678972744 

 At row:31, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:31, column:52,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:52,the value of plot_cost is         : 49.94212667789773 

 At row:31, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:31, column:53,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:53,the value of plot_cost is         : 49.69714873722525 

 At row:31, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:31, column:54,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:54,the value of plot_cost is         : 49.452978856955255 

 At row:31, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:31, column:55,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:55,the value of plot_cost is         : 49.20961703708779 

 At row:31, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:31, column:56,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:56,the value of plot_cost is         : 48.967063277622856 

 At row:31, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:31, column:57,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:57,the value of plot_cost is         : 48.72531757856042 

 At row:31, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:31, column:58,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:58,the value of plot_cost is         : 48.484379939900506 

 At row:31, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:31, column:59,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:59,the value of plot_cost is         : 48.244250361643104 

 At row:31, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:31, column:60,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:60,the value of plot_cost is         : 48.004928843788214 

 At row:31, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:31, column:61,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:61,the value of plot_cost is         : 47.76641538633584 

 At row:31, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:31, column:62,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:62,the value of plot_cost is         : 47.52870998928598 

 At row:31, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:31, column:63,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:63,the value of plot_cost is         : 47.29181265263863 

 At row:31, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:31, column:64,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:64,the value of plot_cost is         : 47.0557233763938 

 At row:31, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:31, column:65,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:65,the value of plot_cost is         : 46.82044216055149 

 At row:31, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:31, column:66,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:66,the value of plot_cost is         : 46.58596900511169 

 At row:31, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:31, column:67,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:67,the value of plot_cost is         : 46.35230391007441 

 At row:31, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:31, column:68,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:68,the value of plot_cost is         : 46.11944687543965 

 At row:31, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:31, column:69,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:69,the value of plot_cost is         : 45.88739790120739 

 At row:31, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:31, column:70,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:70,the value of plot_cost is         : 45.656156987377656 

 At row:31, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:31, column:71,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:71,the value of plot_cost is         : 45.42572413395044 

 At row:31, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:31, column:72,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:72,the value of plot_cost is         : 45.196099340925734 

 At row:31, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:31, column:73,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:73,the value of plot_cost is         : 44.96728260830354 

 At row:31, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:31, column:74,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:74,the value of plot_cost is         : 44.73927393608387 

 At row:31, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:31, column:75,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:75,the value of plot_cost is         : 44.512073324266694 

 At row:31, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:31, column:76,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:76,the value of plot_cost is         : 44.285680772852054 

 At row:31, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:31, column:77,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:77,the value of plot_cost is         : 44.06009628183992 

 At row:31, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:31, column:78,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:78,the value of plot_cost is         : 43.8353198512303 

 At row:31, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:31, column:79,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:79,the value of plot_cost is         : 43.611351481023206 

 At row:31, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:31, column:80,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:80,the value of plot_cost is         : 43.38819117121861 

 At row:31, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:31, column:81,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:81,the value of plot_cost is         : 43.165838921816544 

 At row:31, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:31, column:82,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:82,the value of plot_cost is         : 42.944294732816985 

 At row:31, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:31, column:83,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:83,the value of plot_cost is         : 42.72355860421995 

 At row:31, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:31, column:84,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:84,the value of plot_cost is         : 42.503630536025426 

 At row:31, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:31, column:85,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:85,the value of plot_cost is         : 42.284510528233405 

 At row:31, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:31, column:86,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:86,the value of plot_cost is         : 42.06619858084391 

 At row:31, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:31, column:87,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:87,the value of plot_cost is         : 41.84869469385694 

 At row:31, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:31, column:88,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:88,the value of plot_cost is         : 41.631998867272465 

 At row:31, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:31, column:89,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:89,the value of plot_cost is         : 41.41611110109052 

 At row:31, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:31, column:90,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:90,the value of plot_cost is         : 41.201031395311084 

 At row:31, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:31, column:91,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:91,the value of plot_cost is         : 40.98675974993416 

 At row:31, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:31, column:92,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:92,the value of plot_cost is         : 40.77329616495975 

 At row:31, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:31, column:93,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:93,the value of plot_cost is         : 40.56064064038787 

 At row:31, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:31, column:94,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:94,the value of plot_cost is         : 40.34879317621849 

 At row:31, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:31, column:95,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:95,the value of plot_cost is         : 40.137753772451624 

 At row:31, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:31, column:96,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:96,the value of plot_cost is         : 39.92752242908728 

 At row:31, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:31, column:97,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:97,the value of plot_cost is         : 39.718099146125454 

 At row:31, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:31, column:98,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:98,the value of plot_cost is         : 39.509483923566144 

 At row:31, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:31, column:99,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:99,the value of plot_cost is         : 39.30167676140935 

 At row:31, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:31, column:100,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:100,the value of plot_cost is         : 39.094677659655055 

 At row:31, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:31, column:101,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:101,the value of plot_cost is         : 38.88848661830328 

 At row:31, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:31, column:102,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:102,the value of plot_cost is         : 38.68310363735403 

 At row:31, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:31, column:103,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:103,the value of plot_cost is         : 38.47852871680729 

 At row:31, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:31, column:104,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:104,the value of plot_cost is         : 38.274761856663055 

 At row:31, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:31, column:105,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:105,the value of plot_cost is         : 38.071803056921354 

 At row:31, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:31, column:106,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:106,the value of plot_cost is         : 37.869652317582165 

 At row:31, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:31, column:107,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:107,the value of plot_cost is         : 37.66830963864549 

 At row:31, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:31, column:108,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:108,the value of plot_cost is         : 37.467775020111326 

 At row:31, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:31, column:109,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:109,the value of plot_cost is         : 37.268048461979674 

 At row:31, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:31, column:110,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:110,the value of plot_cost is         : 37.069129964250536 

 At row:31, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:31, column:111,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:111,the value of plot_cost is         : 36.871019526923924 

 At row:31, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:31, column:112,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:112,the value of plot_cost is         : 36.67371714999982 

 At row:31, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:31, column:113,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:113,the value of plot_cost is         : 36.47722283347823 

 At row:31, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:31, column:114,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:114,the value of plot_cost is         : 36.28153657735914 

 At row:31, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:31, column:115,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:115,the value of plot_cost is         : 36.086658381642586 

 At row:31, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:31, column:116,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:116,the value of plot_cost is         : 35.89258824632855 

 At row:31, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:31, column:117,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:117,the value of plot_cost is         : 35.69932617141702 

 At row:31, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:31, column:118,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:118,the value of plot_cost is         : 35.50687215690802 

 At row:31, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:31, column:119,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:119,the value of plot_cost is         : 35.31522620280152 

 At row:31, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:31, column:120,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:120,the value of plot_cost is         : 35.124388309097526 

 At row:31, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:31, column:121,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:121,the value of plot_cost is         : 34.93435847579606 

 At row:31, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:31, column:122,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:122,the value of plot_cost is         : 34.745136702897106 

 At row:31, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:31, column:123,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:123,the value of plot_cost is         : 34.55672299040067 

 At row:31, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:31, column:124,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:124,the value of plot_cost is         : 34.369117338306744 

 At row:31, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:31, column:125,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:125,the value of plot_cost is         : 34.182319746615335 

 At row:31, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:31, column:126,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:126,the value of plot_cost is         : 33.99633021532645 

 At row:31, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:31, column:127,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:127,the value of plot_cost is         : 33.811148744440075 

 At row:31, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:31, column:128,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:128,the value of plot_cost is         : 33.62677533395621 

 At row:31, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:31, column:129,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:129,the value of plot_cost is         : 33.443209983874866 

 At row:31, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:31, column:130,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:130,the value of plot_cost is         : 33.260452694196026 

 At row:31, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:31, column:131,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:131,the value of plot_cost is         : 33.07850346491971 

 At row:31, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:31, column:132,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:132,the value of plot_cost is         : 32.89736229604591 

 At row:31, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:31, column:133,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:133,the value of plot_cost is         : 32.71702918757463 

 At row:31, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:31, column:134,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:134,the value of plot_cost is         : 32.53750413950584 

 At row:31, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:31, column:135,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:135,the value of plot_cost is         : 32.35878715183959 

 At row:31, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:31, column:136,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:136,the value of plot_cost is         : 32.18087822457586 

 At row:31, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:31, column:137,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:137,the value of plot_cost is         : 32.00377735771463 

 At row:31, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:31, column:138,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:138,the value of plot_cost is         : 31.827484551255917 

 At row:31, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:31, column:139,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:139,the value of plot_cost is         : 31.651999805199726 

 At row:31, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:31, column:140,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:140,the value of plot_cost is         : 31.477323119546032 

 At row:31, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:31, column:141,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:141,the value of plot_cost is         : 31.303454494294872 

 At row:31, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:31, column:142,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:142,the value of plot_cost is         : 31.13039392944622 

 At row:31, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:31, column:143,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:143,the value of plot_cost is         : 30.958141425000093 

 At row:31, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:31, column:144,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:144,the value of plot_cost is         : 30.786696980956457 

 At row:31, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:31, column:145,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:145,the value of plot_cost is         : 30.616060597315357 

 At row:31, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:31, column:146,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:146,the value of plot_cost is         : 30.44623227407677 

 At row:31, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:31, column:147,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:147,the value of plot_cost is         : 30.277212011240696 

 At row:31, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:31, column:148,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:148,the value of plot_cost is         : 30.108999808807134 

 At row:31, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:31, column:149,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:149,the value of plot_cost is         : 29.941595666776095 

 At row:31, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:31, column:150,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:150,the value of plot_cost is         : 29.774999585147555 

 At row:31, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:31, column:151,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:151,the value of plot_cost is         : 29.60921156392154 

 At row:31, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:31, column:152,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:152,the value of plot_cost is         : 29.44423160309804 

 At row:31, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:31, column:153,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:153,the value of plot_cost is         : 29.28005970267706 

 At row:31, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:31, column:154,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:154,the value of plot_cost is         : 29.11669586265858 

 At row:31, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:31, column:155,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:155,the value of plot_cost is         : 28.95414008304263 

 At row:31, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:31, column:156,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:156,the value of plot_cost is         : 28.792392363829194 

 At row:31, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:31, column:157,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:157,the value of plot_cost is         : 28.63145270501827 

 At row:31, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:31, column:158,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:158,the value of plot_cost is         : 28.47132110660986 

 At row:31, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:31, column:159,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:159,the value of plot_cost is         : 28.311997568603964 

 At row:31, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:31, column:160,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:160,the value of plot_cost is         : 28.15348209100058 

 At row:31, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:31, column:161,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:161,the value of plot_cost is         : 27.99577467379972 

 At row:31, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:31, column:162,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:162,the value of plot_cost is         : 27.83887531700137 

 At row:31, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:31, column:163,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:163,the value of plot_cost is         : 27.68278402060554 

 At row:31, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:31, column:164,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:164,the value of plot_cost is         : 27.527500784612208 

 At row:31, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:31, column:165,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:165,the value of plot_cost is         : 27.37302560902141 

 At row:31, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:31, column:166,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:166,the value of plot_cost is         : 27.219358493833127 

 At row:31, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:31, column:167,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:167,the value of plot_cost is         : 27.06649943904735 

 At row:31, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:31, column:168,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:168,the value of plot_cost is         : 26.914448444664092 

 At row:31, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:31, column:169,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:169,the value of plot_cost is         : 26.763205510683356 

 At row:31, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:31, column:170,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:170,the value of plot_cost is         : 26.61277063710512 

 At row:31, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:31, column:171,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:171,the value of plot_cost is         : 26.463143823929403 

 At row:31, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:31, column:172,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:172,the value of plot_cost is         : 26.31432507115621 

 At row:31, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:31, column:173,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:173,the value of plot_cost is         : 26.16631437878553 

 At row:31, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:31, column:174,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:174,the value of plot_cost is         : 26.01911174681735 

 At row:31, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:31, column:175,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:175,the value of plot_cost is         : 25.8727171752517 

 At row:31, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:31, column:176,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:176,the value of plot_cost is         : 25.727130664088566 

 At row:31, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:31, column:177,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:177,the value of plot_cost is         : 25.582352213327944 

 At row:31, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:31, column:178,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:178,the value of plot_cost is         : 25.43838182296984 

 At row:31, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:31, column:179,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:179,the value of plot_cost is         : 25.295219493014248 

 At row:31, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:31, column:180,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:180,the value of plot_cost is         : 25.152865223461163 

 At row:31, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:31, column:181,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:181,the value of plot_cost is         : 25.0113190143106 

 At row:31, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:31, column:182,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:182,the value of plot_cost is         : 24.87058086556256 

 At row:31, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:31, column:183,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:183,the value of plot_cost is         : 24.730650777217026 

 At row:31, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:31, column:184,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:184,the value of plot_cost is         : 24.591528749273998 

 At row:31, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:31, column:185,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:185,the value of plot_cost is         : 24.4532147817335 

 At row:31, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:31, column:186,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:186,the value of plot_cost is         : 24.315708874595515 

 At row:31, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:31, column:187,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:187,the value of plot_cost is         : 24.179011027860046 

 At row:31, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:31, column:188,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:188,the value of plot_cost is         : 24.04312124152709 

 At row:31, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:31, column:189,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:189,the value of plot_cost is         : 23.90803951559665 

 At row:31, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:31, column:190,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:190,the value of plot_cost is         : 23.773765850068717 

 At row:31, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:31, column:191,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:191,the value of plot_cost is         : 23.640300244943305 

 At row:31, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:31, column:192,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:192,the value of plot_cost is         : 23.507642700220412 

 At row:31, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:31, column:193,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:193,the value of plot_cost is         : 23.37579321590003 

 At row:31, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:31, column:194,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:194,the value of plot_cost is         : 23.244751791982157 

 At row:31, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:31, column:195,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:195,the value of plot_cost is         : 23.11451842846681 

 At row:31, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:31, column:196,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:196,the value of plot_cost is         : 22.98509312535397 

 At row:31, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:31, column:197,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:197,the value of plot_cost is         : 22.856475882643654 

 At row:31, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:31, column:198,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:198,the value of plot_cost is         : 22.72866670033585 

 At row:31, column:199,the value of plot_t0 is           : 3.0
 At row:31, column:199,the value of plot_t1 is           : -0.37688442211055273
 At row:31, column:199,the value of plot_cost is         : 22.60166557843056 

 At row:32, column:0,the value of plot_t0 is           : -1.0
 At row:32, column:0,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:0,the value of plot_cost is         : 62.553281230271956 

 At row:32, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:32, column:1,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:1,the value of plot_cost is         : 62.26896229171702 

 At row:32, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:32, column:2,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:2,the value of plot_cost is         : 61.985451413564576 

 At row:32, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:32, column:3,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:3,the value of plot_cost is         : 61.70274859581468 

 At row:32, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:32, column:4,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:4,the value of plot_cost is         : 61.420853838467266 

 At row:32, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:32, column:5,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:5,the value of plot_cost is         : 61.1397671415224 

 At row:32, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:32, column:6,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:6,the value of plot_cost is         : 60.85948850498003 

 At row:32, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:32, column:7,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:7,the value of plot_cost is         : 60.580017928840185 

 At row:32, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:32, column:8,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:8,the value of plot_cost is         : 60.301355413102826 

 At row:32, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:32, column:9,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:9,the value of plot_cost is         : 60.02350095776802 

 At row:32, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:32, column:10,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:10,the value of plot_cost is         : 59.746454562835716 

 At row:32, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:32, column:11,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:11,the value of plot_cost is         : 59.470216228305915 

 At row:32, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:32, column:12,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:12,the value of plot_cost is         : 59.19478595417864 

 At row:32, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:32, column:13,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:13,the value of plot_cost is         : 58.92016374045389 

 At row:32, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:32, column:14,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:14,the value of plot_cost is         : 58.64634958713163 

 At row:32, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:32, column:15,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:15,the value of plot_cost is         : 58.3733434942119 

 At row:32, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:32, column:16,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:16,the value of plot_cost is         : 58.10114546169468 

 At row:32, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:32, column:17,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:17,the value of plot_cost is         : 57.82975548957997 

 At row:32, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:32, column:18,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:18,the value of plot_cost is         : 57.559173577867796 

 At row:32, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:32, column:19,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:19,the value of plot_cost is         : 57.28939972655812 

 At row:32, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:32, column:20,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:20,the value of plot_cost is         : 57.02043393565098 

 At row:32, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:32, column:21,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:21,the value of plot_cost is         : 56.75227620514633 

 At row:32, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:32, column:22,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:22,the value of plot_cost is         : 56.48492653504421 

 At row:32, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:32, column:23,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:23,the value of plot_cost is         : 56.2183849253446 

 At row:32, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:32, column:24,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:24,the value of plot_cost is         : 55.95265137604749 

 At row:32, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:32, column:25,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:25,the value of plot_cost is         : 55.687725887152915 

 At row:32, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:32, column:26,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:26,the value of plot_cost is         : 55.42360845866086 

 At row:32, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:32, column:27,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:27,the value of plot_cost is         : 55.1602990905713 

 At row:32, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:32, column:28,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:28,the value of plot_cost is         : 54.89779778288426 

 At row:32, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:32, column:29,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:29,the value of plot_cost is         : 54.63610453559974 

 At row:32, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:32, column:30,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:30,the value of plot_cost is         : 54.37521934871774 

 At row:32, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:32, column:31,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:31,the value of plot_cost is         : 54.11514222223825 

 At row:32, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:32, column:32,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:32,the value of plot_cost is         : 53.85587315616127 

 At row:32, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:32, column:33,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:33,the value of plot_cost is         : 53.59741215048682 

 At row:32, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:32, column:34,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:34,the value of plot_cost is         : 53.339759205214875 

 At row:32, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:32, column:35,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:35,the value of plot_cost is         : 53.082914320345445 

 At row:32, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:32, column:36,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:36,the value of plot_cost is         : 52.826877495878534 

 At row:32, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:32, column:37,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:37,the value of plot_cost is         : 52.57164873181412 

 At row:32, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:32, column:38,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:38,the value of plot_cost is         : 52.317228028152236 

 At row:32, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:32, column:39,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:39,the value of plot_cost is         : 52.06361538489287 

 At row:32, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:32, column:40,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:40,the value of plot_cost is         : 51.810810802036016 

 At row:32, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:32, column:41,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:41,the value of plot_cost is         : 51.55881427958168 

 At row:32, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:32, column:42,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:42,the value of plot_cost is         : 51.30762581752985 

 At row:32, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:32, column:43,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:43,the value of plot_cost is         : 51.05724541588055 

 At row:32, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:32, column:44,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:44,the value of plot_cost is         : 50.807673074633755 

 At row:32, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:32, column:45,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:45,the value of plot_cost is         : 50.55890879378947 

 At row:32, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:32, column:46,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:46,the value of plot_cost is         : 50.310952573347706 

 At row:32, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:32, column:47,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:47,the value of plot_cost is         : 50.06380441330846 

 At row:32, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:32, column:48,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:48,the value of plot_cost is         : 49.81746431367172 

 At row:32, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:32, column:49,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:49,the value of plot_cost is         : 49.5719322744375 

 At row:32, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:32, column:50,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:50,the value of plot_cost is         : 49.32720829560581 

 At row:32, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:32, column:51,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:51,the value of plot_cost is         : 49.08329237717662 

 At row:32, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:32, column:52,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:52,the value of plot_cost is         : 48.84018451914995 

 At row:32, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:32, column:53,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:53,the value of plot_cost is         : 48.59788472152579 

 At row:32, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:32, column:54,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:54,the value of plot_cost is         : 48.35639298430415 

 At row:32, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:32, column:55,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:55,the value of plot_cost is         : 48.11570930748502 

 At row:32, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:32, column:56,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:56,the value of plot_cost is         : 47.87583369106841 

 At row:32, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:32, column:57,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:57,the value of plot_cost is         : 47.6367661350543 

 At row:32, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:32, column:58,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:58,the value of plot_cost is         : 47.398506639442715 

 At row:32, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:32, column:59,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:59,the value of plot_cost is         : 47.16105520423365 

 At row:32, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:32, column:60,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:60,the value of plot_cost is         : 46.9244118294271 

 At row:32, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:32, column:61,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:61,the value of plot_cost is         : 46.688576515023065 

 At row:32, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:32, column:62,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:62,the value of plot_cost is         : 46.45354926102154 

 At row:32, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:32, column:63,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:63,the value of plot_cost is         : 46.21933006742254 

 At row:32, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:32, column:64,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:64,the value of plot_cost is         : 45.98591893422605 

 At row:32, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:32, column:65,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:65,the value of plot_cost is         : 45.75331586143207 

 At row:32, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:32, column:66,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:66,the value of plot_cost is         : 45.52152084904061 

 At row:32, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:32, column:67,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:67,the value of plot_cost is         : 45.29053389705166 

 At row:32, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:32, column:68,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:68,the value of plot_cost is         : 45.06035500546523 

 At row:32, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:32, column:69,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:69,the value of plot_cost is         : 44.830984174281305 

 At row:32, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:32, column:70,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:70,the value of plot_cost is         : 44.6024214034999 

 At row:32, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:32, column:71,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:71,the value of plot_cost is         : 44.37466669312102 

 At row:32, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:32, column:72,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:72,the value of plot_cost is         : 44.14772004314466 

 At row:32, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:32, column:73,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:73,the value of plot_cost is         : 43.92158145357079 

 At row:32, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:32, column:74,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:74,the value of plot_cost is         : 43.69625092439944 

 At row:32, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:32, column:75,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:75,the value of plot_cost is         : 43.471728455630625 

 At row:32, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:32, column:76,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:76,the value of plot_cost is         : 43.24801404726432 

 At row:32, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:32, column:77,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:77,the value of plot_cost is         : 43.02510769930052 

 At row:32, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:32, column:78,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:78,the value of plot_cost is         : 42.80300941173923 

 At row:32, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:32, column:79,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:79,the value of plot_cost is         : 42.581719184580464 

 At row:32, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:32, column:80,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:80,the value of plot_cost is         : 42.36123701782423 

 At row:32, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:32, column:81,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:81,the value of plot_cost is         : 42.14156291147049 

 At row:32, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:32, column:82,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:82,the value of plot_cost is         : 41.92269686551927 

 At row:32, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:32, column:83,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:83,the value of plot_cost is         : 41.70463887997056 

 At row:32, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:32, column:84,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:84,the value of plot_cost is         : 41.487388954824375 

 At row:32, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:32, column:85,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:85,the value of plot_cost is         : 41.27094709008069 

 At row:32, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:32, column:86,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:86,the value of plot_cost is         : 41.055313285739544 

 At row:32, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:32, column:87,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:87,the value of plot_cost is         : 40.84048754180089 

 At row:32, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:32, column:88,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:88,the value of plot_cost is         : 40.62646985826475 

 At row:32, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:32, column:89,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:89,the value of plot_cost is         : 40.41326023513114 

 At row:32, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:32, column:90,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:90,the value of plot_cost is         : 40.200858672400045 

 At row:32, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:32, column:91,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:91,the value of plot_cost is         : 39.98926517007146 

 At row:32, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:32, column:92,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:92,the value of plot_cost is         : 39.7784797281454 

 At row:32, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:32, column:93,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:93,the value of plot_cost is         : 39.568502346621834 

 At row:32, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:32, column:94,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:94,the value of plot_cost is         : 39.359333025500796 

 At row:32, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:32, column:95,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:95,the value of plot_cost is         : 39.15097176478227 

 At row:32, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:32, column:96,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:96,the value of plot_cost is         : 38.943418564466256 

 At row:32, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:32, column:97,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:97,the value of plot_cost is         : 38.73667342455277 

 At row:32, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:32, column:98,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:98,the value of plot_cost is         : 38.53073634504178 

 At row:32, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:32, column:99,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:99,the value of plot_cost is         : 38.325607325933326 

 At row:32, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:32, column:100,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:100,the value of plot_cost is         : 38.12128636722738 

 At row:32, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:32, column:101,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:101,the value of plot_cost is         : 37.91777346892395 

 At row:32, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:32, column:102,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:102,the value of plot_cost is         : 37.71506863102303 

 At row:32, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:32, column:103,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:103,the value of plot_cost is         : 37.51317185352462 

 At row:32, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:32, column:104,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:104,the value of plot_cost is         : 37.312083136428726 

 At row:32, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:32, column:105,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:105,the value of plot_cost is         : 37.11180247973535 

 At row:32, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:32, column:106,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:106,the value of plot_cost is         : 36.9123298834445 

 At row:32, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:32, column:107,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:107,the value of plot_cost is         : 36.71366534755615 

 At row:32, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:32, column:108,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:108,the value of plot_cost is         : 36.51580887207032 

 At row:32, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:32, column:109,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:109,the value of plot_cost is         : 36.31876045698701 

 At row:32, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:32, column:110,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:110,the value of plot_cost is         : 36.12252010230622 

 At row:32, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:32, column:111,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:111,the value of plot_cost is         : 35.927087808027935 

 At row:32, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:32, column:112,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:112,the value of plot_cost is         : 35.73246357415217 

 At row:32, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:32, column:113,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:113,the value of plot_cost is         : 35.53864740067891 

 At row:32, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:32, column:114,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:114,the value of plot_cost is         : 35.34563928760817 

 At row:32, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:32, column:115,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:115,the value of plot_cost is         : 35.15343923493995 

 At row:32, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:32, column:116,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:116,the value of plot_cost is         : 34.96204724267424 

 At row:32, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:32, column:117,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:117,the value of plot_cost is         : 34.77146331081105 

 At row:32, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:32, column:118,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:118,the value of plot_cost is         : 34.58168743935037 

 At row:32, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:32, column:119,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:119,the value of plot_cost is         : 34.39271962829221 

 At row:32, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:32, column:120,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:120,the value of plot_cost is         : 34.20455987763656 

 At row:32, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:32, column:121,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:121,the value of plot_cost is         : 34.01720818738343 

 At row:32, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:32, column:122,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:122,the value of plot_cost is         : 33.83066455753282 

 At row:32, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:32, column:123,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:123,the value of plot_cost is         : 33.644928988084715 

 At row:32, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:32, column:124,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:124,the value of plot_cost is         : 33.46000147903913 

 At row:32, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:32, column:125,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:125,the value of plot_cost is         : 33.275882030396055 

 At row:32, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:32, column:126,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:126,the value of plot_cost is         : 33.0925706421555 

 At row:32, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:32, column:127,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:127,the value of plot_cost is         : 32.91006731431745 

 At row:32, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:32, column:128,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:128,the value of plot_cost is         : 32.72837204688193 

 At row:32, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:32, column:129,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:129,the value of plot_cost is         : 32.54748483984891 

 At row:32, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:32, column:130,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:130,the value of plot_cost is         : 32.36740569321842 

 At row:32, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:32, column:131,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:131,the value of plot_cost is         : 32.188134606990445 

 At row:32, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:32, column:132,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:132,the value of plot_cost is         : 32.00967158116498 

 At row:32, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:32, column:133,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:133,the value of plot_cost is         : 31.832016615742027 

 At row:32, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:32, column:134,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:134,the value of plot_cost is         : 31.655169710721584 

 At row:32, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:32, column:135,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:135,the value of plot_cost is         : 31.479130866103663 

 At row:32, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:32, column:136,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:136,the value of plot_cost is         : 31.303900081888262 

 At row:32, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:32, column:137,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:137,the value of plot_cost is         : 31.12947735807537 

 At row:32, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:32, column:138,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:138,the value of plot_cost is         : 30.955862694664987 

 At row:32, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:32, column:139,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:139,the value of plot_cost is         : 30.783056091657134 

 At row:32, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:32, column:140,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:140,the value of plot_cost is         : 30.611057549051786 

 At row:32, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:32, column:141,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:141,the value of plot_cost is         : 30.43986706684896 

 At row:32, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:32, column:142,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:142,the value of plot_cost is         : 30.269484645048646 

 At row:32, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:32, column:143,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:143,the value of plot_cost is         : 30.099910283650843 

 At row:32, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:32, column:144,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:144,the value of plot_cost is         : 29.931143982655556 

 At row:32, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:32, column:145,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:145,the value of plot_cost is         : 29.763185742062788 

 At row:32, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:32, column:146,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:146,the value of plot_cost is         : 29.596035561872537 

 At row:32, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:32, column:147,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:147,the value of plot_cost is         : 29.429693442084794 

 At row:32, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:32, column:148,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:148,the value of plot_cost is         : 29.264159382699564 

 At row:32, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:32, column:149,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:149,the value of plot_cost is         : 29.09943338371686 

 At row:32, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:32, column:150,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:150,the value of plot_cost is         : 28.935515445136662 

 At row:32, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:32, column:151,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:151,the value of plot_cost is         : 28.772405566958987 

 At row:32, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:32, column:152,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:152,the value of plot_cost is         : 28.61010374918383 

 At row:32, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:32, column:153,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:153,the value of plot_cost is         : 28.44860999181117 

 At row:32, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:32, column:154,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:154,the value of plot_cost is         : 28.287924294841037 

 At row:32, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:32, column:155,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:155,the value of plot_cost is         : 28.128046658273416 

 At row:32, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:32, column:156,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:156,the value of plot_cost is         : 27.96897708210831 

 At row:32, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:32, column:157,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:157,the value of plot_cost is         : 27.810715566345724 

 At row:32, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:32, column:158,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:158,the value of plot_cost is         : 27.65326211098565 

 At row:32, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:32, column:159,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:159,the value of plot_cost is         : 27.496616716028093 

 At row:32, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:32, column:160,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:160,the value of plot_cost is         : 27.340779381473045 

 At row:32, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:32, column:161,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:161,the value of plot_cost is         : 27.18575010732052 

 At row:32, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:32, column:162,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:162,the value of plot_cost is         : 27.03152889357051 

 At row:32, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:32, column:163,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:163,the value of plot_cost is         : 26.87811574022301 

 At row:32, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:32, column:164,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:164,the value of plot_cost is         : 26.725510647278025 

 At row:32, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:32, column:165,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:165,the value of plot_cost is         : 26.573713614735553 

 At row:32, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:32, column:166,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:166,the value of plot_cost is         : 26.4227246425956 

 At row:32, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:32, column:167,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:167,the value of plot_cost is         : 26.272543730858168 

 At row:32, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:32, column:168,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:168,the value of plot_cost is         : 26.123170879523236 

 At row:32, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:32, column:169,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:169,the value of plot_cost is         : 25.974606088590836 

 At row:32, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:32, column:170,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:170,the value of plot_cost is         : 25.82684935806094 

 At row:32, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:32, column:171,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:171,the value of plot_cost is         : 25.679900687933564 

 At row:32, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:32, column:172,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:172,the value of plot_cost is         : 25.533760078208704 

 At row:32, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:32, column:173,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:173,the value of plot_cost is         : 25.388427528886357 

 At row:32, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:32, column:174,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:174,the value of plot_cost is         : 25.243903039966522 

 At row:32, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:32, column:175,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:175,the value of plot_cost is         : 25.100186611449207 

 At row:32, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:32, column:176,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:176,the value of plot_cost is         : 24.9572782433344 

 At row:32, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:32, column:177,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:177,the value of plot_cost is         : 24.815177935622113 

 At row:32, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:32, column:178,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:178,the value of plot_cost is         : 24.67388568831234 

 At row:32, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:32, column:179,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:179,the value of plot_cost is         : 24.533401501405084 

 At row:32, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:32, column:180,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:180,the value of plot_cost is         : 24.39372537490034 

 At row:32, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:32, column:181,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:181,the value of plot_cost is         : 24.254857308798115 

 At row:32, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:32, column:182,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:182,the value of plot_cost is         : 24.11679730309841 

 At row:32, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:32, column:183,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:183,the value of plot_cost is         : 23.979545357801207 

 At row:32, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:32, column:184,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:184,the value of plot_cost is         : 23.843101472906525 

 At row:32, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:32, column:185,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:185,the value of plot_cost is         : 23.70746564841436 

 At row:32, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:32, column:186,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:186,the value of plot_cost is         : 23.572637884324706 

 At row:32, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:32, column:187,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:187,the value of plot_cost is         : 23.43861818063757 

 At row:32, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:32, column:188,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:188,the value of plot_cost is         : 23.30540653735295 

 At row:32, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:32, column:189,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:189,the value of plot_cost is         : 23.173002954470842 

 At row:32, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:32, column:190,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:190,the value of plot_cost is         : 23.041407431991257 

 At row:32, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:32, column:191,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:191,the value of plot_cost is         : 22.91061996991418 

 At row:32, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:32, column:192,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:192,the value of plot_cost is         : 22.780640568239622 

 At row:32, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:32, column:193,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:193,the value of plot_cost is         : 22.651469226967574 

 At row:32, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:32, column:194,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:194,the value of plot_cost is         : 22.523105946098042 

 At row:32, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:32, column:195,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:195,the value of plot_cost is         : 22.395550725631026 

 At row:32, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:32, column:196,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:196,the value of plot_cost is         : 22.26880356556652 

 At row:32, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:32, column:197,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:197,the value of plot_cost is         : 22.142864465904537 

 At row:32, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:32, column:198,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:198,the value of plot_cost is         : 22.01773342664507 

 At row:32, column:199,the value of plot_t0 is           : 3.0
 At row:32, column:199,the value of plot_t1 is           : -0.35678391959798994
 At row:32, column:199,the value of plot_cost is         : 21.893410447788114 

 At row:33, column:0,the value of plot_t0 is           : -1.0
 At row:33, column:0,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:0,the value of plot_cost is         : 61.32465828784987 

 At row:33, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:33, column:1,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:1,the value of plot_cost is         : 61.04301749234327 

 At row:33, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:33, column:2,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:2,the value of plot_cost is         : 60.76218475723916 

 At row:33, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:33, column:3,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:3,the value of plot_cost is         : 60.4821600825376 

 At row:33, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:33, column:4,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:4,the value of plot_cost is         : 60.20294346823854 

 At row:33, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:33, column:5,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:5,the value of plot_cost is         : 59.92453491434199 

 At row:33, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:33, column:6,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:6,the value of plot_cost is         : 59.64693442084795 

 At row:33, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:33, column:7,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:7,the value of plot_cost is         : 59.37014198775643 

 At row:33, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:33, column:8,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:8,the value of plot_cost is         : 59.09415761506743 

 At row:33, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:33, column:9,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:9,the value of plot_cost is         : 58.818981302780955 

 At row:33, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:33, column:10,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:10,the value of plot_cost is         : 58.54461305089698 

 At row:33, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:33, column:11,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:11,the value of plot_cost is         : 58.27105285941552 

 At row:33, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:33, column:12,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:12,the value of plot_cost is         : 57.99830072833658 

 At row:33, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:33, column:13,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:13,the value of plot_cost is         : 57.726356657660155 

 At row:33, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:33, column:14,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:14,the value of plot_cost is         : 57.45522064738624 

 At row:33, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:33, column:15,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:15,the value of plot_cost is         : 57.184892697514854 

 At row:33, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:33, column:16,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:16,the value of plot_cost is         : 56.91537280804597 

 At row:33, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:33, column:17,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:17,the value of plot_cost is         : 56.6466609789796 

 At row:33, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:33, column:18,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:18,the value of plot_cost is         : 56.37875721031575 

 At row:33, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:33, column:19,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:19,the value of plot_cost is         : 56.111661502054424 

 At row:33, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:33, column:20,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:20,the value of plot_cost is         : 55.845373854195586 

 At row:33, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:33, column:21,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:21,the value of plot_cost is         : 55.5798942667393 

 At row:33, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:33, column:22,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:22,the value of plot_cost is         : 55.31522273968551 

 At row:33, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:33, column:23,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:23,the value of plot_cost is         : 55.05135927303424 

 At row:33, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:33, column:24,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:24,the value of plot_cost is         : 54.78830386678547 

 At row:33, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:33, column:25,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:25,the value of plot_cost is         : 54.52605652093923 

 At row:33, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:33, column:26,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:26,the value of plot_cost is         : 54.264617235495486 

 At row:33, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:33, column:27,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:27,the value of plot_cost is         : 54.003986010454284 

 At row:33, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:33, column:28,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:28,the value of plot_cost is         : 53.74416284581558 

 At row:33, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:33, column:29,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:29,the value of plot_cost is         : 53.485147741579404 

 At row:33, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:33, column:30,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:30,the value of plot_cost is         : 53.22694069774572 

 At row:33, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:33, column:31,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:31,the value of plot_cost is         : 52.96954171431457 

 At row:33, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:33, column:32,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:32,the value of plot_cost is         : 52.71295079128593 

 At row:33, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:33, column:33,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:33,the value of plot_cost is         : 52.45716792865981 

 At row:33, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:33, column:34,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:34,the value of plot_cost is         : 52.20219312643619 

 At row:33, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:33, column:35,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:35,the value of plot_cost is         : 51.948026384615105 

 At row:33, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:33, column:36,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:36,the value of plot_cost is         : 51.69466770319652 

 At row:33, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:33, column:37,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:37,the value of plot_cost is         : 51.44211708218047 

 At row:33, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:33, column:38,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:38,the value of plot_cost is         : 51.19037452156692 

 At row:33, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:33, column:39,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:39,the value of plot_cost is         : 50.93944002135587 

 At row:33, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:33, column:40,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:40,the value of plot_cost is         : 50.68931358154735 

 At row:33, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:33, column:41,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:41,the value of plot_cost is         : 50.439995202141354 

 At row:33, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:33, column:42,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:42,the value of plot_cost is         : 50.19148488313786 

 At row:33, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:33, column:43,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:43,the value of plot_cost is         : 49.943782624536894 

 At row:33, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:33, column:44,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:44,the value of plot_cost is         : 49.69688842633844 

 At row:33, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:33, column:45,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:45,the value of plot_cost is         : 49.4508022885425 

 At row:33, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:33, column:46,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:46,the value of plot_cost is         : 49.20552421114907 

 At row:33, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:33, column:47,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:47,the value of plot_cost is         : 48.96105419415815 

 At row:33, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:33, column:48,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:48,the value of plot_cost is         : 48.71739223756976 

 At row:33, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:33, column:49,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:49,the value of plot_cost is         : 48.47453834138387 

 At row:33, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:33, column:50,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:50,the value of plot_cost is         : 48.232492505600504 

 At row:33, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:33, column:51,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:51,the value of plot_cost is         : 47.99125473021965 

 At row:33, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:33, column:52,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:52,the value of plot_cost is         : 47.75082501524131 

 At row:33, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:33, column:53,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:53,the value of plot_cost is         : 47.5112033606655 

 At row:33, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:33, column:54,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:54,the value of plot_cost is         : 47.27238976649218 

 At row:33, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:33, column:55,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:55,the value of plot_cost is         : 47.03438423272139 

 At row:33, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:33, column:56,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:56,the value of plot_cost is         : 46.79718675935312 

 At row:33, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:33, column:57,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:57,the value of plot_cost is         : 46.56079734638736 

 At row:33, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:33, column:58,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:58,the value of plot_cost is         : 46.32521599382411 

 At row:33, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:33, column:59,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:59,the value of plot_cost is         : 46.09044270166337 

 At row:33, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:33, column:60,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:60,the value of plot_cost is         : 45.85647746990516 

 At row:33, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:33, column:61,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:61,the value of plot_cost is         : 45.62332029854946 

 At row:33, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:33, column:62,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:62,the value of plot_cost is         : 45.39097118759627 

 At row:33, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:33, column:63,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:63,the value of plot_cost is         : 45.159430137045604 

 At row:33, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:33, column:64,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:64,the value of plot_cost is         : 44.92869714689744 

 At row:33, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:33, column:65,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:65,the value of plot_cost is         : 44.6987722171518 

 At row:33, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:33, column:66,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:66,the value of plot_cost is         : 44.469655347808676 

 At row:33, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:33, column:67,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:67,the value of plot_cost is         : 44.241346538868065 

 At row:33, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:33, column:68,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:68,the value of plot_cost is         : 44.013845790329974 

 At row:33, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:33, column:69,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:69,the value of plot_cost is         : 43.78715310219439 

 At row:33, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:33, column:70,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:70,the value of plot_cost is         : 43.56126847446132 

 At row:33, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:33, column:71,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:71,the value of plot_cost is         : 43.33619190713077 

 At row:33, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:33, column:72,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:72,the value of plot_cost is         : 43.11192340020273 

 At row:33, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:33, column:73,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:73,the value of plot_cost is         : 42.88846295367722 

 At row:33, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:33, column:74,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:74,the value of plot_cost is         : 42.66581056755421 

 At row:33, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:33, column:75,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:75,the value of plot_cost is         : 42.44396624183372 

 At row:33, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:33, column:76,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:76,the value of plot_cost is         : 42.22292997651574 

 At row:33, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:33, column:77,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:77,the value of plot_cost is         : 42.00270177160028 

 At row:33, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:33, column:78,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:78,the value of plot_cost is         : 41.783281627087334 

 At row:33, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:33, column:79,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:79,the value of plot_cost is         : 41.56466954297691 

 At row:33, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:33, column:80,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:80,the value of plot_cost is         : 41.34686551926899 

 At row:33, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:33, column:81,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:81,the value of plot_cost is         : 41.12986955596359 

 At row:33, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:33, column:82,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:82,the value of plot_cost is         : 40.9136816530607 

 At row:33, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:33, column:83,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:83,the value of plot_cost is         : 40.69830181056034 

 At row:33, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:33, column:84,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:84,the value of plot_cost is         : 40.48373002846248 

 At row:33, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:33, column:85,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:85,the value of plot_cost is         : 40.26996630676714 

 At row:33, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:33, column:86,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:86,the value of plot_cost is         : 40.057010645474314 

 At row:33, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:33, column:87,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:87,the value of plot_cost is         : 39.84486304458401 

 At row:33, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:33, column:88,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:88,the value of plot_cost is         : 39.63352350409621 

 At row:33, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:33, column:89,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:89,the value of plot_cost is         : 39.42299202401094 

 At row:33, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:33, column:90,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:90,the value of plot_cost is         : 39.21326860432817 

 At row:33, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:33, column:91,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:91,the value of plot_cost is         : 39.00435324504792 

 At row:33, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:33, column:92,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:92,the value of plot_cost is         : 38.79624594617019 

 At row:33, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:33, column:93,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:93,the value of plot_cost is         : 38.58894670769497 

 At row:33, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:33, column:94,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:94,the value of plot_cost is         : 38.38245552962226 

 At row:33, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:33, column:95,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:95,the value of plot_cost is         : 38.17677241195208 

 At row:33, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:33, column:96,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:96,the value of plot_cost is         : 37.971897354684394 

 At row:33, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:33, column:97,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:97,the value of plot_cost is         : 37.76783035781924 

 At row:33, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:33, column:98,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:98,the value of plot_cost is         : 37.5645714213566 

 At row:33, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:33, column:99,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:99,the value of plot_cost is         : 37.36212054529648 

 At row:33, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:33, column:100,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:100,the value of plot_cost is         : 37.160477729638856 

 At row:33, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:33, column:101,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:101,the value of plot_cost is         : 36.95964297438377 

 At row:33, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:33, column:102,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:102,the value of plot_cost is         : 36.75961627953117 

 At row:33, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:33, column:103,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:103,the value of plot_cost is         : 36.5603976450811 

 At row:33, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:33, column:104,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:104,the value of plot_cost is         : 36.36198707103356 

 At row:33, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:33, column:105,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:105,the value of plot_cost is         : 36.16438455738853 

 At row:33, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:33, column:106,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:106,the value of plot_cost is         : 35.967590104146 

 At row:33, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:33, column:107,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:107,the value of plot_cost is         : 35.77160371130599 

 At row:33, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:33, column:108,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:108,the value of plot_cost is         : 35.57642537886849 

 At row:33, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:33, column:109,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:109,the value of plot_cost is         : 35.38205510683352 

 At row:33, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:33, column:110,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:110,the value of plot_cost is         : 35.18849289520105 

 At row:33, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:33, column:111,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:111,the value of plot_cost is         : 34.99573874397111 

 At row:33, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:33, column:112,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:112,the value of plot_cost is         : 34.80379265314368 

 At row:33, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:33, column:113,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:113,the value of plot_cost is         : 34.612654622718765 

 At row:33, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:33, column:114,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:114,the value of plot_cost is         : 34.42232465269636 

 At row:33, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:33, column:115,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:115,the value of plot_cost is         : 34.23280274307647 

 At row:33, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:33, column:116,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:116,the value of plot_cost is         : 34.044088893859104 

 At row:33, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:33, column:117,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:117,the value of plot_cost is         : 33.856183105044245 

 At row:33, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:33, column:118,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:118,the value of plot_cost is         : 33.6690853766319 

 At row:33, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:33, column:119,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:119,the value of plot_cost is         : 33.48279570862207 

 At row:33, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:33, column:120,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:120,the value of plot_cost is         : 33.29731410101476 

 At row:33, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:33, column:121,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:121,the value of plot_cost is         : 33.11264055380997 

 At row:33, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:33, column:122,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:122,the value of plot_cost is         : 32.928775067007685 

 At row:33, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:33, column:123,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:123,the value of plot_cost is         : 32.745717640607914 

 At row:33, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:33, column:124,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:124,the value of plot_cost is         : 32.56346827461067 

 At row:33, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:33, column:125,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:125,the value of plot_cost is         : 32.382026969015925 

 At row:33, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:33, column:126,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:126,the value of plot_cost is         : 32.20139372382371 

 At row:33, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:33, column:127,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:127,the value of plot_cost is         : 32.02156853903401 

 At row:33, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:33, column:128,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:128,the value of plot_cost is         : 31.842551414646817 

 At row:33, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:33, column:129,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:129,the value of plot_cost is         : 31.66434235066214 

 At row:33, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:33, column:130,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:130,the value of plot_cost is         : 31.486941347079977 

 At row:33, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:33, column:131,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:131,the value of plot_cost is         : 31.310348403900335 

 At row:33, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:33, column:132,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:132,the value of plot_cost is         : 31.1345635211232 

 At row:33, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:33, column:133,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:133,the value of plot_cost is         : 30.959586698748588 

 At row:33, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:33, column:134,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:134,the value of plot_cost is         : 30.785417936776486 

 At row:33, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:33, column:135,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:135,the value of plot_cost is         : 30.6120572352069 

 At row:33, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:33, column:136,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:136,the value of plot_cost is         : 30.439504594039832 

 At row:33, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:33, column:137,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:137,the value of plot_cost is         : 30.267760013275282 

 At row:33, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:33, column:138,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:138,the value of plot_cost is         : 30.096823492913234 

 At row:33, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:33, column:139,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:139,the value of plot_cost is         : 29.926695032953706 

 At row:33, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:33, column:140,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:140,the value of plot_cost is         : 29.7573746333967 

 At row:33, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:33, column:141,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:141,the value of plot_cost is         : 29.58886229424221 

 At row:33, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:33, column:142,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:142,the value of plot_cost is         : 29.421158015490228 

 At row:33, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:33, column:143,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:143,the value of plot_cost is         : 29.25426179714076 

 At row:33, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:33, column:144,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:144,the value of plot_cost is         : 29.088173639193815 

 At row:33, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:33, column:145,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:145,the value of plot_cost is         : 28.922893541649376 

 At row:33, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:33, column:146,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:146,the value of plot_cost is         : 28.758421504507464 

 At row:33, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:33, column:147,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:147,the value of plot_cost is         : 28.59475752776806 

 At row:33, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:33, column:148,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:148,the value of plot_cost is         : 28.431901611431165 

 At row:33, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:33, column:149,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:149,the value of plot_cost is         : 28.269853755496786 

 At row:33, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:33, column:150,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:150,the value of plot_cost is         : 28.10861395996493 

 At row:33, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:33, column:151,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:151,the value of plot_cost is         : 27.94818222483559 

 At row:33, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:33, column:152,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:152,the value of plot_cost is         : 27.78855855010876 

 At row:33, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:33, column:153,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:153,the value of plot_cost is         : 27.629742935784446 

 At row:33, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:33, column:154,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:154,the value of plot_cost is         : 27.47173538186265 

 At row:33, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:33, column:155,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:155,the value of plot_cost is         : 27.314535888343364 

 At row:33, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:33, column:156,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:156,the value of plot_cost is         : 27.1581444552266 

 At row:33, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:33, column:157,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:157,the value of plot_cost is         : 27.00256108251235 

 At row:33, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:33, column:158,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:158,the value of plot_cost is         : 26.847785770200606 

 At row:33, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:33, column:159,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:159,the value of plot_cost is         : 26.69381851829138 

 At row:33, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:33, column:160,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:160,the value of plot_cost is         : 26.540659326784674 

 At row:33, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:33, column:161,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:161,the value of plot_cost is         : 26.38830819568048 

 At row:33, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:33, column:162,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:162,the value of plot_cost is         : 26.236765124978806 

 At row:33, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:33, column:163,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:163,the value of plot_cost is         : 26.08603011467964 

 At row:33, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:33, column:164,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:164,the value of plot_cost is         : 25.936103164782995 

 At row:33, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:33, column:165,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:165,the value of plot_cost is         : 25.786984275288862 

 At row:33, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:33, column:166,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:166,the value of plot_cost is         : 25.638673446197245 

 At row:33, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:33, column:167,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:167,the value of plot_cost is         : 25.491170677508148 

 At row:33, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:33, column:168,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:168,the value of plot_cost is         : 25.344475969221556 

 At row:33, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:33, column:169,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:169,the value of plot_cost is         : 25.19858932133748 

 At row:33, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:33, column:170,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:170,the value of plot_cost is         : 25.053510733855923 

 At row:33, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:33, column:171,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:171,the value of plot_cost is         : 24.909240206776882 

 At row:33, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:33, column:172,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:172,the value of plot_cost is         : 24.765777740100354 

 At row:33, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:33, column:173,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:173,the value of plot_cost is         : 24.623123333826342 

 At row:33, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:33, column:174,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:174,the value of plot_cost is         : 24.481276987954846 

 At row:33, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:33, column:175,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:175,the value of plot_cost is         : 24.340238702485866 

 At row:33, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:33, column:176,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:176,the value of plot_cost is         : 24.200008477419395 

 At row:33, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:33, column:177,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:177,the value of plot_cost is         : 24.06058631275545 

 At row:33, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:33, column:178,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:178,the value of plot_cost is         : 23.92197220849401 

 At row:33, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:33, column:179,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:179,the value of plot_cost is         : 23.78416616463509 

 At row:33, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:33, column:180,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:180,the value of plot_cost is         : 23.64716818117868 

 At row:33, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:33, column:181,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:181,the value of plot_cost is         : 23.510978258124794 

 At row:33, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:33, column:182,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:182,the value of plot_cost is         : 23.375596395473416 

 At row:33, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:33, column:183,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:183,the value of plot_cost is         : 23.241022593224557 

 At row:33, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:33, column:184,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:184,the value of plot_cost is         : 23.107256851378214 

 At row:33, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:33, column:185,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:185,the value of plot_cost is         : 22.97429916993438 

 At row:33, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:33, column:186,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:186,the value of plot_cost is         : 22.84214954889306 

 At row:33, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:33, column:187,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:187,the value of plot_cost is         : 22.710807988254267 

 At row:33, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:33, column:188,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:188,the value of plot_cost is         : 22.58027448801798 

 At row:33, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:33, column:189,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:189,the value of plot_cost is         : 22.450549048184207 

 At row:33, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:33, column:190,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:190,the value of plot_cost is         : 22.321631668752953 

 At row:33, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:33, column:191,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:191,the value of plot_cost is         : 22.19352234972421 

 At row:33, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:33, column:192,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:192,the value of plot_cost is         : 22.066221091097987 

 At row:33, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:33, column:193,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:193,the value of plot_cost is         : 21.939727892874274 

 At row:33, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:33, column:194,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:194,the value of plot_cost is         : 21.814042755053084 

 At row:33, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:33, column:195,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:195,the value of plot_cost is         : 21.689165677634403 

 At row:33, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:33, column:196,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:196,the value of plot_cost is         : 21.565096660618234 

 At row:33, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:33, column:197,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:197,the value of plot_cost is         : 21.441835704004585 

 At row:33, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:33, column:198,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:198,the value of plot_cost is         : 21.319382807793456 

 At row:33, column:199,the value of plot_t0 is           : 3.0
 At row:33, column:199,the value of plot_t1 is           : -0.33668341708542715
 At row:33, column:199,the value of plot_cost is         : 21.197737971984832 

 At row:34, column:0,the value of plot_t0 is           : -1.0
 At row:34, column:0,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:0,the value of plot_cost is         : 60.108618000266944 

 At row:34, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:34, column:1,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:1,the value of plot_cost is         : 59.82965534780867 

 At row:34, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:34, column:2,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:2,the value of plot_cost is         : 59.551500755752926 

 At row:34, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:34, column:3,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:3,the value of plot_cost is         : 59.274154224099675 

 At row:34, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:34, column:4,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:4,the value of plot_cost is         : 58.99761575284894 

 At row:34, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:34, column:5,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:5,the value of plot_cost is         : 58.721885342000746 

 At row:34, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:34, column:6,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:6,the value of plot_cost is         : 58.44696299155505 

 At row:34, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:34, column:7,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:7,the value of plot_cost is         : 58.17284870151187 

 At row:34, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:34, column:8,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:8,the value of plot_cost is         : 57.89954247187121 

 At row:34, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:34, column:9,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:9,the value of plot_cost is         : 57.62704430263305 

 At row:34, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:34, column:10,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:10,the value of plot_cost is         : 57.35535419379742 

 At row:34, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:34, column:11,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:11,the value of plot_cost is         : 57.084472145364295 

 At row:34, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:34, column:12,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:12,the value of plot_cost is         : 56.814398157333684 

 At row:34, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:34, column:13,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:13,the value of plot_cost is         : 56.5451322297056 

 At row:34, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:34, column:14,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:14,the value of plot_cost is         : 56.27667436248001 

 At row:34, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:34, column:15,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:15,the value of plot_cost is         : 56.009024555656964 

 At row:34, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:34, column:16,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:16,the value of plot_cost is         : 55.74218280923642 

 At row:34, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:34, column:17,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:17,the value of plot_cost is         : 55.476149123218384 

 At row:34, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:34, column:18,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:18,the value of plot_cost is         : 55.21092349760287 

 At row:34, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:34, column:19,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:19,the value of plot_cost is         : 54.94650593238987 

 At row:34, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:34, column:20,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:20,the value of plot_cost is         : 54.68289642757939 

 At row:34, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:34, column:21,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:21,the value of plot_cost is         : 54.42009498317142 

 At row:34, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:34, column:22,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:22,the value of plot_cost is         : 54.15810159916595 

 At row:34, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:34, column:23,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:23,the value of plot_cost is         : 53.89691627556302 

 At row:34, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:34, column:24,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:24,the value of plot_cost is         : 53.6365390123626 

 At row:34, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:34, column:25,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:25,the value of plot_cost is         : 53.37696980956469 

 At row:34, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:34, column:26,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:26,the value of plot_cost is         : 53.118208667169284 

 At row:34, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:34, column:27,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:27,the value of plot_cost is         : 52.86025558517642 

 At row:34, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:34, column:28,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:28,the value of plot_cost is         : 52.60311056358606 

 At row:34, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:34, column:29,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:29,the value of plot_cost is         : 52.3467736023982 

 At row:34, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:34, column:30,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:30,the value of plot_cost is         : 52.091244701612865 

 At row:34, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:34, column:31,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:31,the value of plot_cost is         : 51.836523861230056 

 At row:34, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:34, column:32,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:32,the value of plot_cost is         : 51.58261108124974 

 At row:34, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:34, column:33,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:33,the value of plot_cost is         : 51.32950636167196 

 At row:34, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:34, column:34,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:34,the value of plot_cost is         : 51.07720970249669 

 At row:34, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:34, column:35,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:35,the value of plot_cost is         : 50.825721103723936 

 At row:34, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:34, column:36,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:36,the value of plot_cost is         : 50.57504056535369 

 At row:34, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:34, column:37,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:37,the value of plot_cost is         : 50.325168087385954 

 At row:34, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:34, column:38,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:38,the value of plot_cost is         : 50.076103669820746 

 At row:34, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:34, column:39,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:39,the value of plot_cost is         : 49.82784731265805 

 At row:34, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:34, column:40,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:40,the value of plot_cost is         : 49.58039901589787 

 At row:34, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:34, column:41,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:41,the value of plot_cost is         : 49.333758779540204 

 At row:34, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:34, column:42,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:42,the value of plot_cost is         : 49.08792660358503 

 At row:34, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:34, column:43,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:43,the value of plot_cost is         : 48.84290248803241 

 At row:34, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:34, column:44,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:44,the value of plot_cost is         : 48.59868643288229 

 At row:34, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:34, column:45,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:45,the value of plot_cost is         : 48.355278438134675 

 At row:34, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:34, column:46,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:46,the value of plot_cost is         : 48.11267850378958 

 At row:34, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:34, column:47,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:47,the value of plot_cost is         : 47.870886629847014 

 At row:34, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:34, column:48,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:48,the value of plot_cost is         : 47.629902816306945 

 At row:34, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:34, column:49,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:49,the value of plot_cost is         : 47.3897270631694 

 At row:34, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:34, column:50,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:50,the value of plot_cost is         : 47.150359370434366 

 At row:34, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:34, column:51,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:51,the value of plot_cost is         : 46.91179973810185 

 At row:34, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:34, column:52,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:52,the value of plot_cost is         : 46.67404816617184 

 At row:34, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:34, column:53,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:53,the value of plot_cost is         : 46.43710465464435 

 At row:34, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:34, column:54,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:54,the value of plot_cost is         : 46.20096920351939 

 At row:34, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:34, column:55,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:55,the value of plot_cost is         : 45.96564181279693 

 At row:34, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:34, column:56,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:56,the value of plot_cost is         : 45.73112248247699 

 At row:34, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:34, column:57,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:57,the value of plot_cost is         : 45.49741121255957 

 At row:34, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:34, column:58,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:58,the value of plot_cost is         : 45.264508003044654 

 At row:34, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:34, column:59,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:59,the value of plot_cost is         : 45.032412853932264 

 At row:34, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:34, column:60,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:60,the value of plot_cost is         : 44.80112576522238 

 At row:34, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:34, column:61,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:61,the value of plot_cost is         : 44.570646736915016 

 At row:34, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:34, column:62,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:62,the value of plot_cost is         : 44.34097576901016 

 At row:34, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:34, column:63,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:63,the value of plot_cost is         : 44.11211286150782 

 At row:34, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:34, column:64,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:64,the value of plot_cost is         : 43.884058014408 

 At row:34, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:34, column:65,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:65,the value of plot_cost is         : 43.656811227710705 

 At row:34, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:34, column:66,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:66,the value of plot_cost is         : 43.4303725014159 

 At row:34, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:34, column:67,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:67,the value of plot_cost is         : 43.20474183552364 

 At row:34, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:34, column:68,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:68,the value of plot_cost is         : 42.979919230033865 

 At row:34, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:34, column:69,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:69,the value of plot_cost is         : 42.75590468494662 

 At row:34, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:34, column:70,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:70,the value of plot_cost is         : 42.5326982002619 

 At row:34, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:34, column:71,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:71,the value of plot_cost is         : 42.310299775979686 

 At row:34, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:34, column:72,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:72,the value of plot_cost is         : 42.08870941209997 

 At row:34, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:34, column:73,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:73,the value of plot_cost is         : 41.867927108622794 

 At row:34, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:34, column:74,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:74,the value of plot_cost is         : 41.64795286554813 

 At row:34, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:34, column:75,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:75,the value of plot_cost is         : 41.42878668287597 

 At row:34, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:34, column:76,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:76,the value of plot_cost is         : 41.21042856060633 

 At row:34, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:34, column:77,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:77,the value of plot_cost is         : 40.9928784987392 

 At row:34, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:34, column:78,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:78,the value of plot_cost is         : 40.77613649727459 

 At row:34, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:34, column:79,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:79,the value of plot_cost is         : 40.560202556212495 

 At row:34, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:34, column:80,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:80,the value of plot_cost is         : 40.345076675552924 

 At row:34, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:34, column:81,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:81,the value of plot_cost is         : 40.13075885529586 

 At row:34, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:34, column:82,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:82,the value of plot_cost is         : 39.9172490954413 

 At row:34, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:34, column:83,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:83,the value of plot_cost is         : 39.70454739598928 

 At row:34, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:34, column:84,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:84,the value of plot_cost is         : 39.49265375693977 

 At row:34, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:34, column:85,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:85,the value of plot_cost is         : 39.28156817829275 

 At row:34, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:34, column:86,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:86,the value of plot_cost is         : 39.07129066004826 

 At row:34, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:34, column:87,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:87,the value of plot_cost is         : 38.86182120220629 

 At row:34, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:34, column:88,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:88,the value of plot_cost is         : 38.65315980476683 

 At row:34, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:34, column:89,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:89,the value of plot_cost is         : 38.44530646772989 

 At row:34, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:34, column:90,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:90,the value of plot_cost is         : 38.23826119109546 

 At row:34, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:34, column:91,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:91,the value of plot_cost is         : 38.03202397486355 

 At row:34, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:34, column:92,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:92,the value of plot_cost is         : 37.82659481903415 

 At row:34, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:34, column:93,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:93,the value of plot_cost is         : 37.62197372360726 

 At row:34, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:34, column:94,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:94,the value of plot_cost is         : 37.418160688582894 

 At row:34, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:34, column:95,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:95,the value of plot_cost is         : 37.215155713961046 

 At row:34, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:34, column:96,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:96,the value of plot_cost is         : 37.01295879974171 

 At row:34, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:34, column:97,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:97,the value of plot_cost is         : 36.81156994592489 

 At row:34, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:34, column:98,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:98,the value of plot_cost is         : 36.61098915251057 

 At row:34, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:34, column:99,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:99,the value of plot_cost is         : 36.411216419498786 

 At row:34, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:34, column:100,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:100,the value of plot_cost is         : 36.21225174688951 

 At row:34, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:34, column:101,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:101,the value of plot_cost is         : 36.01409513468275 

 At row:34, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:34, column:102,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:102,the value of plot_cost is         : 35.816746582878494 

 At row:34, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:34, column:103,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:103,the value of plot_cost is         : 35.62020609147676 

 At row:34, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:34, column:104,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:104,the value of plot_cost is         : 35.424473660477545 

 At row:34, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:34, column:105,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:105,the value of plot_cost is         : 35.22954928988085 

 At row:34, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:34, column:106,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:106,the value of plot_cost is         : 35.035432979686654 

 At row:34, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:34, column:107,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:107,the value of plot_cost is         : 34.84212472989499 

 At row:34, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:34, column:108,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:108,the value of plot_cost is         : 34.64962454050583 

 At row:34, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:34, column:109,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:109,the value of plot_cost is         : 34.45793241151919 

 At row:34, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:34, column:110,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:110,the value of plot_cost is         : 34.26704834293506 

 At row:34, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:34, column:111,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:111,the value of plot_cost is         : 34.07697233475346 

 At row:34, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:34, column:112,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:112,the value of plot_cost is         : 33.88770438697435 

 At row:34, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:34, column:113,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:113,the value of plot_cost is         : 33.69924449959777 

 At row:34, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:34, column:114,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:114,the value of plot_cost is         : 33.511592672623706 

 At row:34, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:34, column:115,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:115,the value of plot_cost is         : 33.32474890605215 

 At row:34, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:34, column:116,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:116,the value of plot_cost is         : 33.13871319988312 

 At row:34, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:34, column:117,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:117,the value of plot_cost is         : 32.9534855541166 

 At row:34, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:34, column:118,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:118,the value of plot_cost is         : 32.769065968752585 

 At row:34, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:34, column:119,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:119,the value of plot_cost is         : 32.5854544437911 

 At row:34, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:34, column:120,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:120,the value of plot_cost is         : 32.40265097923213 

 At row:34, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:34, column:121,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:121,the value of plot_cost is         : 32.22065557507567 

 At row:34, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:34, column:122,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:122,the value of plot_cost is         : 32.03946823132171 

 At row:34, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:34, column:123,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:123,the value of plot_cost is         : 31.85908894797028 

 At row:34, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:34, column:124,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:124,the value of plot_cost is         : 31.679517725021373 

 At row:34, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:34, column:125,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:125,the value of plot_cost is         : 31.50075456247497 

 At row:34, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:34, column:126,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:126,the value of plot_cost is         : 31.32279946033109 

 At row:34, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:34, column:127,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:127,the value of plot_cost is         : 31.14565241858972 

 At row:34, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:34, column:128,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:128,the value of plot_cost is         : 30.96931343725086 

 At row:34, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:34, column:129,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:129,the value of plot_cost is         : 30.793782516314522 

 At row:34, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:34, column:130,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:130,the value of plot_cost is         : 30.619059655780703 

 At row:34, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:34, column:131,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:131,the value of plot_cost is         : 30.445144855649392 

 At row:34, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:34, column:132,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:132,the value of plot_cost is         : 30.272038115920587 

 At row:34, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:34, column:133,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:133,the value of plot_cost is         : 30.09973943659431 

 At row:34, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:34, column:134,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:134,the value of plot_cost is         : 29.92824881767055 

 At row:34, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:34, column:135,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:135,the value of plot_cost is         : 29.757566259149296 

 At row:34, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:34, column:136,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:136,the value of plot_cost is         : 29.587691761030563 

 At row:34, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:34, column:137,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:137,the value of plot_cost is         : 29.418625323314348 

 At row:34, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:34, column:138,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:138,the value of plot_cost is         : 29.250366946000643 

 At row:34, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:34, column:139,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:139,the value of plot_cost is         : 29.082916629089453 

 At row:34, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:34, column:140,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:140,the value of plot_cost is         : 28.91627437258078 

 At row:34, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:34, column:141,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:141,the value of plot_cost is         : 28.75044017647462 

 At row:34, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:34, column:142,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:142,the value of plot_cost is         : 28.58541404077097 

 At row:34, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:34, column:143,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:143,the value of plot_cost is         : 28.42119596546985 

 At row:34, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:34, column:144,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:144,the value of plot_cost is         : 28.257785950571233 

 At row:34, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:34, column:145,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:145,the value of plot_cost is         : 28.095183996075132 

 At row:34, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:34, column:146,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:146,the value of plot_cost is         : 27.933390101981548 

 At row:34, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:34, column:147,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:147,the value of plot_cost is         : 27.772404268290487 

 At row:34, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:34, column:148,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:148,the value of plot_cost is         : 27.612226495001927 

 At row:34, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:34, column:149,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:149,the value of plot_cost is         : 27.45285678211589 

 At row:34, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:34, column:150,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:150,the value of plot_cost is         : 27.294295129632367 

 At row:34, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:34, column:151,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:151,the value of plot_cost is         : 27.136541537551356 

 At row:34, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:34, column:152,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:152,the value of plot_cost is         : 26.979596005872864 

 At row:34, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:34, column:153,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:153,the value of plot_cost is         : 26.823458534596885 

 At row:34, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:34, column:154,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:154,the value of plot_cost is         : 26.668129123723425 

 At row:34, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:34, column:155,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:155,the value of plot_cost is         : 26.513607773252474 

 At row:34, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:34, column:156,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:156,the value of plot_cost is         : 26.359894483184046 

 At row:34, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:34, column:157,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:157,the value of plot_cost is         : 26.20698925351813 

 At row:34, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:34, column:158,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:158,the value of plot_cost is         : 26.05489208425472 

 At row:34, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:34, column:159,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:159,the value of plot_cost is         : 25.903602975393838 

 At row:34, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:34, column:160,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:160,the value of plot_cost is         : 25.753121926935467 

 At row:34, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:34, column:161,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:161,the value of plot_cost is         : 25.603448938879602 

 At row:34, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:34, column:162,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:162,the value of plot_cost is         : 25.454584011226263 

 At row:34, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:34, column:163,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:163,the value of plot_cost is         : 25.306527143975437 

 At row:34, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:34, column:164,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:164,the value of plot_cost is         : 25.15927833712713 

 At row:34, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:34, column:165,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:165,the value of plot_cost is         : 25.01283759068133 

 At row:34, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:34, column:166,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:166,the value of plot_cost is         : 24.86720490463805 

 At row:34, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:34, column:167,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:167,the value of plot_cost is         : 24.722380278997285 

 At row:34, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:34, column:168,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:168,the value of plot_cost is         : 24.57836371375903 

 At row:34, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:34, column:169,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:169,the value of plot_cost is         : 24.435155208923295 

 At row:34, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:34, column:170,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:170,the value of plot_cost is         : 24.292754764490073 

 At row:34, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:34, column:171,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:171,the value of plot_cost is         : 24.15116238045936 

 At row:34, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:34, column:172,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:172,the value of plot_cost is         : 24.010378056831176 

 At row:34, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:34, column:173,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:173,the value of plot_cost is         : 23.870401793605495 

 At row:34, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:34, column:174,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:174,the value of plot_cost is         : 23.731233590782338 

 At row:34, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:34, column:175,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:175,the value of plot_cost is         : 23.59287344836169 

 At row:34, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:34, column:176,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:176,the value of plot_cost is         : 23.45532136634356 

 At row:34, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:34, column:177,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:177,the value of plot_cost is         : 23.31857734472795 

 At row:34, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:34, column:178,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:178,the value of plot_cost is         : 23.182641383514845 

 At row:34, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:34, column:179,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:179,the value of plot_cost is         : 23.04751348270426 

 At row:34, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:34, column:180,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:180,the value of plot_cost is         : 22.913193642296186 

 At row:34, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:34, column:181,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:181,the value of plot_cost is         : 22.779681862290634 

 At row:34, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:34, column:182,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:182,the value of plot_cost is         : 22.64697814268759 

 At row:34, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:34, column:183,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:183,the value of plot_cost is         : 22.515082483487067 

 At row:34, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:34, column:184,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:184,the value of plot_cost is         : 22.38399488468906 

 At row:34, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:34, column:185,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:185,the value of plot_cost is         : 22.25371534629356 

 At row:34, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:34, column:186,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:186,the value of plot_cost is         : 22.12424386830058 

 At row:34, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:34, column:187,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:187,the value of plot_cost is         : 21.995580450710122 

 At row:34, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:34, column:188,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:188,the value of plot_cost is         : 21.867725093522168 

 At row:34, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:34, column:189,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:189,the value of plot_cost is         : 21.740677796736737 

 At row:34, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:34, column:190,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:190,the value of plot_cost is         : 21.614438560353815 

 At row:34, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:34, column:191,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:191,the value of plot_cost is         : 21.489007384373405 

 At row:34, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:34, column:192,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:192,the value of plot_cost is         : 21.36438426879552 

 At row:34, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:34, column:193,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:193,the value of plot_cost is         : 21.240569213620144 

 At row:34, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:34, column:194,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:194,the value of plot_cost is         : 21.117562218847286 

 At row:34, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:34, column:195,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:195,the value of plot_cost is         : 20.99536328447694 

 At row:34, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:34, column:196,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:196,the value of plot_cost is         : 20.873972410509115 

 At row:34, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:34, column:197,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:197,the value of plot_cost is         : 20.753389596943794 

 At row:34, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:34, column:198,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:198,the value of plot_cost is         : 20.633614843781 

 At row:34, column:199,the value of plot_t0 is           : 3.0
 At row:34, column:199,the value of plot_t1 is           : -0.31658291457286436
 At row:34, column:199,the value of plot_cost is         : 20.51464815102072 

 At row:35, column:0,the value of plot_t0 is           : -1.0
 At row:35, column:0,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:0,the value of plot_cost is         : 58.90516036752317 

 At row:35, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:35, column:1,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:1,the value of plot_cost is         : 58.62887585811325 

 At row:35, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:35, column:2,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:2,the value of plot_cost is         : 58.35339940910583 

 At row:35, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:35, column:3,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:3,the value of plot_cost is         : 58.07873102050091 

 At row:35, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:35, column:4,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:4,the value of plot_cost is         : 57.804870692298515 

 At row:35, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:35, column:5,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:5,the value of plot_cost is         : 57.53181842449865 

 At row:35, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:35, column:6,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:6,the value of plot_cost is         : 57.259574217101296 

 At row:35, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:35, column:7,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:7,the value of plot_cost is         : 56.98813807010646 

 At row:35, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:35, column:8,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:8,the value of plot_cost is         : 56.71750998351412 

 At row:35, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:35, column:9,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:9,the value of plot_cost is         : 56.44768995732429 

 At row:35, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:35, column:10,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:10,the value of plot_cost is         : 56.17867799153699 

 At row:35, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:35, column:11,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:11,the value of plot_cost is         : 55.91047408615221 

 At row:35, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:35, column:12,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:12,the value of plot_cost is         : 55.64307824116995 

 At row:35, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:35, column:13,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:13,the value of plot_cost is         : 55.37649045659018 

 At row:35, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:35, column:14,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:14,the value of plot_cost is         : 55.110710732412954 

 At row:35, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:35, column:15,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:15,the value of plot_cost is         : 54.845739068638224 

 At row:35, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:35, column:16,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:16,the value of plot_cost is         : 54.58157546526602 

 At row:35, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:35, column:17,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:17,the value of plot_cost is         : 54.318219922296336 

 At row:35, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:35, column:18,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:18,the value of plot_cost is         : 54.05567243972914 

 At row:35, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:35, column:19,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:19,the value of plot_cost is         : 53.79393301756447 

 At row:35, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:35, column:20,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:20,the value of plot_cost is         : 53.53300165580233 

 At row:35, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:35, column:21,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:21,the value of plot_cost is         : 53.27287835444271 

 At row:35, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:35, column:22,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:22,the value of plot_cost is         : 53.01356311348559 

 At row:35, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:35, column:23,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:23,the value of plot_cost is         : 52.755055932930986 

 At row:35, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:35, column:24,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:24,the value of plot_cost is         : 52.49735681277889 

 At row:35, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:35, column:25,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:25,the value of plot_cost is         : 52.24046575302931 

 At row:35, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:35, column:26,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:26,the value of plot_cost is         : 51.984382753682254 

 At row:35, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:35, column:27,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:27,the value of plot_cost is         : 51.729107814737716 

 At row:35, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:35, column:28,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:28,the value of plot_cost is         : 51.47464093619569 

 At row:35, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:35, column:29,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:29,the value of plot_cost is         : 51.22098211805617 

 At row:35, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:35, column:30,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:30,the value of plot_cost is         : 50.96813136031918 

 At row:35, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:35, column:31,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:31,the value of plot_cost is         : 50.7160886629847 

 At row:35, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:35, column:32,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:32,the value of plot_cost is         : 50.46485402605273 

 At row:35, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:35, column:33,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:33,the value of plot_cost is         : 50.21442744952327 

 At row:35, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:35, column:34,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:34,the value of plot_cost is         : 49.96480893339633 

 At row:35, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:35, column:35,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:35,the value of plot_cost is         : 49.71599847767192 

 At row:35, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:35, column:36,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:36,the value of plot_cost is         : 49.467996082350005 

 At row:35, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:35, column:37,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:37,the value of plot_cost is         : 49.22080174743062 

 At row:35, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:35, column:38,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:38,the value of plot_cost is         : 48.97441547291373 

 At row:35, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:35, column:39,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:39,the value of plot_cost is         : 48.728837258799366 

 At row:35, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:35, column:40,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:40,the value of plot_cost is         : 48.484067105087526 

 At row:35, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:35, column:41,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:41,the value of plot_cost is         : 48.24010501177819 

 At row:35, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:35, column:42,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:42,the value of plot_cost is         : 47.99695097887139 

 At row:35, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:35, column:43,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:43,the value of plot_cost is         : 47.75460500636707 

 At row:35, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:35, column:44,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:44,the value of plot_cost is         : 47.51306709426528 

 At row:35, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:35, column:45,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:45,the value of plot_cost is         : 47.27233724256602 

 At row:35, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:35, column:46,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:46,the value of plot_cost is         : 47.03241545126926 

 At row:35, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:35, column:47,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:47,the value of plot_cost is         : 46.79330172037502 

 At row:35, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:35, column:48,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:48,the value of plot_cost is         : 46.554996049883286 

 At row:35, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:35, column:49,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:49,the value of plot_cost is         : 46.31749843979408 

 At row:35, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:35, column:50,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:50,the value of plot_cost is         : 46.08080889010739 

 At row:35, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:35, column:51,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:51,the value of plot_cost is         : 45.8449274008232 

 At row:35, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:35, column:52,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:52,the value of plot_cost is         : 45.60985397194154 

 At row:35, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:35, column:53,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:53,the value of plot_cost is         : 45.37558860346238 

 At row:35, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:35, column:54,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:54,the value of plot_cost is         : 45.14213129538575 

 At row:35, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:35, column:55,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:55,the value of plot_cost is         : 44.90948204771163 

 At row:35, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:35, column:56,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:56,the value of plot_cost is         : 44.67764086044003 

 At row:35, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:35, column:57,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:57,the value of plot_cost is         : 44.446607733570936 

 At row:35, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:35, column:58,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:58,the value of plot_cost is         : 44.21638266710436 

 At row:35, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:35, column:59,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:59,the value of plot_cost is         : 43.986965661040294 

 At row:35, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:35, column:60,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:60,the value of plot_cost is         : 43.75835671537875 

 At row:35, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:35, column:61,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:61,the value of plot_cost is         : 43.53055583011972 

 At row:35, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:35, column:62,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:62,the value of plot_cost is         : 43.30356300526321 

 At row:35, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:35, column:63,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:63,the value of plot_cost is         : 43.0773782408092 

 At row:35, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:35, column:64,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:64,the value of plot_cost is         : 42.85200153675772 

 At row:35, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:35, column:65,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:65,the value of plot_cost is         : 42.627432893108754 

 At row:35, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:35, column:66,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:66,the value of plot_cost is         : 42.403672309862294 

 At row:35, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:35, column:67,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:67,the value of plot_cost is         : 42.18071978701836 

 At row:35, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:35, column:68,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:68,the value of plot_cost is         : 41.95857532457694 

 At row:35, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:35, column:69,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:69,the value of plot_cost is         : 41.73723892253802 

 At row:35, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:35, column:70,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:70,the value of plot_cost is         : 41.51671058090162 

 At row:35, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:35, column:71,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:71,the value of plot_cost is         : 41.296990299667755 

 At row:35, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:35, column:72,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:72,the value of plot_cost is         : 41.07807807883639 

 At row:35, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:35, column:73,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:73,the value of plot_cost is         : 40.85997391840754 

 At row:35, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:35, column:74,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:74,the value of plot_cost is         : 40.642677818381195 

 At row:35, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:35, column:75,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:75,the value of plot_cost is         : 40.42618977875738 

 At row:35, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:35, column:76,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:76,the value of plot_cost is         : 40.21050979953608 

 At row:35, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:35, column:77,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:77,the value of plot_cost is         : 39.99563788071729 

 At row:35, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:35, column:78,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:78,the value of plot_cost is         : 39.781574022301015 

 At row:35, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:35, column:79,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:79,the value of plot_cost is         : 39.56831822428725 

 At row:35, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:35, column:80,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:80,the value of plot_cost is         : 39.35587048667602 

 At row:35, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:35, column:81,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:81,the value of plot_cost is         : 39.14423080946729 

 At row:35, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:35, column:82,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:82,the value of plot_cost is         : 38.93339919266108 

 At row:35, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:35, column:83,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:83,the value of plot_cost is         : 38.723375636257366 

 At row:35, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:35, column:84,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:84,the value of plot_cost is         : 38.514160140256195 

 At row:35, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:35, column:85,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:85,the value of plot_cost is         : 38.30575270465752 

 At row:35, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:35, column:86,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:86,the value of plot_cost is         : 38.098153329461375 

 At row:35, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:35, column:87,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:87,the value of plot_cost is         : 37.891362014667735 

 At row:35, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:35, column:88,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:88,the value of plot_cost is         : 37.685378760276606 

 At row:35, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:35, column:89,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:89,the value of plot_cost is         : 37.480203566288 

 At row:35, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:35, column:90,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:90,the value of plot_cost is         : 37.27583643270191 

 At row:35, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:35, column:91,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:91,the value of plot_cost is         : 37.07227735951833 

 At row:35, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:35, column:92,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:92,the value of plot_cost is         : 36.869526346737274 

 At row:35, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:35, column:93,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:93,the value of plot_cost is         : 36.667583394358715 

 At row:35, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:35, column:94,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:94,the value of plot_cost is         : 36.46644850238269 

 At row:35, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:35, column:95,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:95,the value of plot_cost is         : 36.26612167080918 

 At row:35, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:35, column:96,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:96,the value of plot_cost is         : 36.06660289963818 

 At row:35, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:35, column:97,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:97,the value of plot_cost is         : 35.86789218886969 

 At row:35, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:35, column:98,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:98,the value of plot_cost is         : 35.66998953850371 

 At row:35, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:35, column:99,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:99,the value of plot_cost is         : 35.47289494854025 

 At row:35, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:35, column:100,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:100,the value of plot_cost is         : 35.276608418979315 

 At row:35, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:35, column:101,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:101,the value of plot_cost is         : 35.081129949820884 

 At row:35, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:35, column:102,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:102,the value of plot_cost is         : 34.88645954106497 

 At row:35, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:35, column:103,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:103,the value of plot_cost is         : 34.692597192711574 

 At row:35, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:35, column:104,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:104,the value of plot_cost is         : 34.499542904760695 

 At row:35, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:35, column:105,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:105,the value of plot_cost is         : 34.30729667721233 

 At row:35, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:35, column:106,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:106,the value of plot_cost is         : 34.11585851006648 

 At row:35, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:35, column:107,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:107,the value of plot_cost is         : 33.925228403323146 

 At row:35, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:35, column:108,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:108,the value of plot_cost is         : 33.73540635698232 

 At row:35, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:35, column:109,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:109,the value of plot_cost is         : 33.546392371044014 

 At row:35, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:35, column:110,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:110,the value of plot_cost is         : 33.35818644550822 

 At row:35, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:35, column:111,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:111,the value of plot_cost is         : 33.17078858037495 

 At row:35, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:35, column:112,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:112,the value of plot_cost is         : 32.98419877564419 

 At row:35, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:35, column:113,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:113,the value of plot_cost is         : 32.79841703131594 

 At row:35, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:35, column:114,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:114,the value of plot_cost is         : 32.61344334739021 

 At row:35, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:35, column:115,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:115,the value of plot_cost is         : 32.429277723866996 

 At row:35, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:35, column:116,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:116,the value of plot_cost is         : 32.245920160746294 

 At row:35, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:35, column:117,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:117,the value of plot_cost is         : 32.06337065802811 

 At row:35, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:35, column:118,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:118,the value of plot_cost is         : 31.88162921571244 

 At row:35, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:35, column:119,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:119,the value of plot_cost is         : 31.70069583379928 

 At row:35, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:35, column:120,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:120,the value of plot_cost is         : 31.520570512288646 

 At row:35, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:35, column:121,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:121,the value of plot_cost is         : 31.341253251180525 

 At row:35, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:35, column:122,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:122,the value of plot_cost is         : 31.162744050474917 

 At row:35, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:35, column:123,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:123,the value of plot_cost is         : 30.985042910171806 

 At row:35, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:35, column:124,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:124,the value of plot_cost is         : 30.808149830271233 

 At row:35, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:35, column:125,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:125,the value of plot_cost is         : 30.632064810773173 

 At row:35, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:35, column:126,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:126,the value of plot_cost is         : 30.45678785167762 

 At row:35, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:35, column:127,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:127,the value of plot_cost is         : 30.28231895298459 

 At row:35, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:35, column:128,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:128,the value of plot_cost is         : 30.10865811469407 

 At row:35, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:35, column:129,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:129,the value of plot_cost is         : 29.93580533680606 

 At row:35, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:35, column:130,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:130,the value of plot_cost is         : 29.76376061932057 

 At row:35, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:35, column:131,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:131,the value of plot_cost is         : 29.592523962237607 

 At row:35, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:35, column:132,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:132,the value of plot_cost is         : 29.422095365557148 

 At row:35, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:35, column:133,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:133,the value of plot_cost is         : 29.252474829279194 

 At row:35, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:35, column:134,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:134,the value of plot_cost is         : 29.083662353403767 

 At row:35, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:35, column:135,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:135,the value of plot_cost is         : 28.91565793793086 

 At row:35, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:35, column:136,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:136,the value of plot_cost is         : 28.748461582860457 

 At row:35, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:35, column:137,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:137,the value of plot_cost is         : 28.582073288192575 

 At row:35, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:35, column:138,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:138,the value of plot_cost is         : 28.416493053927198 

 At row:35, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:35, column:139,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:139,the value of plot_cost is         : 28.251720880064347 

 At row:35, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:35, column:140,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:140,the value of plot_cost is         : 28.08775676660401 

 At row:35, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:35, column:141,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:141,the value of plot_cost is         : 27.92460071354619 

 At row:35, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:35, column:142,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:142,the value of plot_cost is         : 27.76225272089088 

 At row:35, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:35, column:143,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:143,the value of plot_cost is         : 27.600712788638084 

 At row:35, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:35, column:144,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:144,the value of plot_cost is         : 27.439980916787807 

 At row:35, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:35, column:145,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:145,the value of plot_cost is         : 27.280057105340045 

 At row:35, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:35, column:146,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:146,the value of plot_cost is         : 27.120941354294803 

 At row:35, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:35, column:147,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:147,the value of plot_cost is         : 26.96263366365207 

 At row:35, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:35, column:148,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:148,the value of plot_cost is         : 26.805134033411846 

 At row:35, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:35, column:149,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:149,the value of plot_cost is         : 26.648442463574145 

 At row:35, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:35, column:150,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:150,the value of plot_cost is         : 26.49255895413896 

 At row:35, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:35, column:151,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:151,the value of plot_cost is         : 26.337483505106285 

 At row:35, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:35, column:152,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:152,the value of plot_cost is         : 26.183216116476135 

 At row:35, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:35, column:153,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:153,the value of plot_cost is         : 26.029756788248488 

 At row:35, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:35, column:154,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:154,the value of plot_cost is         : 25.877105520423363 

 At row:35, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:35, column:155,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:155,the value of plot_cost is         : 25.72526231300075 

 At row:35, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:35, column:156,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:156,the value of plot_cost is         : 25.574227165980652 

 At row:35, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:35, column:157,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:157,the value of plot_cost is         : 25.42400007936307 

 At row:35, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:35, column:158,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:158,the value of plot_cost is         : 25.274581053148 

 At row:35, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:35, column:159,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:159,the value of plot_cost is         : 25.12597008733545 

 At row:35, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:35, column:160,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:160,the value of plot_cost is         : 24.978167181925414 

 At row:35, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:35, column:161,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:161,the value of plot_cost is         : 24.831172336917895 

 At row:35, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:35, column:162,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:162,the value of plot_cost is         : 24.684985552312888 

 At row:35, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:35, column:163,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:163,the value of plot_cost is         : 24.539606828110397 

 At row:35, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:35, column:164,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:164,the value of plot_cost is         : 24.39503616431042 

 At row:35, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:35, column:165,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:165,the value of plot_cost is         : 24.25127356091296 

 At row:35, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:35, column:166,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:166,the value of plot_cost is         : 24.108319017918014 

 At row:35, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:35, column:167,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:167,the value of plot_cost is         : 23.966172535325583 

 At row:35, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:35, column:168,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:168,the value of plot_cost is         : 23.82483411313567 

 At row:35, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:35, column:169,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:169,the value of plot_cost is         : 23.684303751348267 

 At row:35, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:35, column:170,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:170,the value of plot_cost is         : 23.544581449963378 

 At row:35, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:35, column:171,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:171,the value of plot_cost is         : 23.405667208981008 

 At row:35, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:35, column:172,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:172,the value of plot_cost is         : 23.267561028401154 

 At row:35, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:35, column:173,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:173,the value of plot_cost is         : 23.130262908223813 

 At row:35, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:35, column:174,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:174,the value of plot_cost is         : 22.993772848448987 

 At row:35, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:35, column:175,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:175,the value of plot_cost is         : 22.858090849076678 

 At row:35, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:35, column:176,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:176,the value of plot_cost is         : 22.723216910106885 

 At row:35, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:35, column:177,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:177,the value of plot_cost is         : 22.589151031539604 

 At row:35, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:35, column:178,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:178,the value of plot_cost is         : 22.455893213374836 

 At row:35, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:35, column:179,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:179,the value of plot_cost is         : 22.323443455612587 

 At row:35, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:35, column:180,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:180,the value of plot_cost is         : 22.19180175825285 

 At row:35, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:35, column:181,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:181,the value of plot_cost is         : 22.060968121295634 

 At row:35, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:35, column:182,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:182,the value of plot_cost is         : 21.930942544740933 

 At row:35, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:35, column:183,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:183,the value of plot_cost is         : 21.801725028588738 

 At row:35, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:35, column:184,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:184,the value of plot_cost is         : 21.673315572839062 

 At row:35, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:35, column:185,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:185,the value of plot_cost is         : 21.545714177491906 

 At row:35, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:35, column:186,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:186,the value of plot_cost is         : 21.418920842547266 

 At row:35, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:35, column:187,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:187,the value of plot_cost is         : 21.292935568005138 

 At row:35, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:35, column:188,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:188,the value of plot_cost is         : 21.167758353865516 

 At row:35, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:35, column:189,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:189,the value of plot_cost is         : 21.04338920012842 

 At row:35, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:35, column:190,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:190,the value of plot_cost is         : 20.919828106793837 

 At row:35, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:35, column:191,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:191,the value of plot_cost is         : 20.797075073861766 

 At row:35, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:35, column:192,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:192,the value of plot_cost is         : 20.675130101332215 

 At row:35, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:35, column:193,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:193,the value of plot_cost is         : 20.553993189205173 

 At row:35, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:35, column:194,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:194,the value of plot_cost is         : 20.43366433748065 

 At row:35, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:35, column:195,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:195,the value of plot_cost is         : 20.314143546158643 

 At row:35, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:35, column:196,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:196,the value of plot_cost is         : 20.19543081523915 

 At row:35, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:35, column:197,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:197,the value of plot_cost is         : 20.077526144722167 

 At row:35, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:35, column:198,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:198,the value of plot_cost is         : 19.96042953460771 

 At row:35, column:199,the value of plot_t0 is           : 3.0
 At row:35, column:199,the value of plot_t1 is           : -0.29648241206030146
 At row:35, column:199,the value of plot_cost is         : 19.844140984895756 

 At row:36, column:0,the value of plot_t0 is           : -1.0
 At row:36, column:0,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:0,the value of plot_cost is         : 57.71428538961858 

 At row:36, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:36, column:1,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:1,the value of plot_cost is         : 57.44067902325698 

 At row:36, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:36, column:2,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:2,the value of plot_cost is         : 57.16788071729789 

 At row:36, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:36, column:3,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:3,the value of plot_cost is         : 56.895890471741325 

 At row:36, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:36, column:4,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:4,the value of plot_cost is         : 56.62470828658727 

 At row:36, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:36, column:5,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:5,the value of plot_cost is         : 56.35433416183573 

 At row:36, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:36, column:6,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:6,the value of plot_cost is         : 56.08476809748671 

 At row:36, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:36, column:7,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:7,the value of plot_cost is         : 55.8160100935402 

 At row:36, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:36, column:8,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:8,the value of plot_cost is         : 55.5480601499962 

 At row:36, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:36, column:9,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:9,the value of plot_cost is         : 55.280918266854734 

 At row:36, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:36, column:10,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:10,the value of plot_cost is         : 55.014584444115755 

 At row:36, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:36, column:11,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:11,the value of plot_cost is         : 54.74905868177931 

 At row:36, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:36, column:12,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:12,the value of plot_cost is         : 54.48434097984538 

 At row:36, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:36, column:13,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:13,the value of plot_cost is         : 54.22043133831396 

 At row:36, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:36, column:14,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:14,the value of plot_cost is         : 53.95732975718506 

 At row:36, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:36, column:15,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:15,the value of plot_cost is         : 53.69503623645867 

 At row:36, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:36, column:16,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:16,the value of plot_cost is         : 53.433550776134794 

 At row:36, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:36, column:17,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:17,the value of plot_cost is         : 53.17287337621344 

 At row:36, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:36, column:18,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:18,the value of plot_cost is         : 52.913004036694595 

 At row:36, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:36, column:19,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:19,the value of plot_cost is         : 52.653942757578264 

 At row:36, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:36, column:20,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:20,the value of plot_cost is         : 52.39568953886445 

 At row:36, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:36, column:21,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:21,the value of plot_cost is         : 52.138244380553154 

 At row:36, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:36, column:22,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:22,the value of plot_cost is         : 51.88160728264437 

 At row:36, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:36, column:23,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:23,the value of plot_cost is         : 51.6257782451381 

 At row:36, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:36, column:24,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:24,the value of plot_cost is         : 51.37075726803435 

 At row:36, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:36, column:25,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:25,the value of plot_cost is         : 51.11654435133312 

 At row:36, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:36, column:26,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:26,the value of plot_cost is         : 50.86313949503439 

 At row:36, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:36, column:27,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:27,the value of plot_cost is         : 50.61054269913819 

 At row:36, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:36, column:28,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:28,the value of plot_cost is         : 50.35875396364449 

 At row:36, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:36, column:29,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:29,the value of plot_cost is         : 50.10777328855331 

 At row:36, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:36, column:30,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:30,the value of plot_cost is         : 49.85760067386465 

 At row:36, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:36, column:31,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:31,the value of plot_cost is         : 49.6082361195785 

 At row:36, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:36, column:32,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:32,the value of plot_cost is         : 49.359679625694866 

 At row:36, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:36, column:33,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:33,the value of plot_cost is         : 49.11193119221375 

 At row:36, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:36, column:34,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:34,the value of plot_cost is         : 48.86499081913515 

 At row:36, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:36, column:35,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:35,the value of plot_cost is         : 48.61885850645907 

 At row:36, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:36, column:36,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:36,the value of plot_cost is         : 48.37353425418549 

 At row:36, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:36, column:37,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:37,the value of plot_cost is         : 48.12901806231444 

 At row:36, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:36, column:38,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:38,the value of plot_cost is         : 47.88530993084589 

 At row:36, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:36, column:39,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:39,the value of plot_cost is         : 47.64240985977986 

 At row:36, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:36, column:40,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:40,the value of plot_cost is         : 47.400317849116355 

 At row:36, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:36, column:41,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:41,the value of plot_cost is         : 47.15903389885537 

 At row:36, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:36, column:42,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:42,the value of plot_cost is         : 46.918558008996875 

 At row:36, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:36, column:43,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:43,the value of plot_cost is         : 46.678890179540915 

 At row:36, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:36, column:44,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:44,the value of plot_cost is         : 46.440030410487466 

 At row:36, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:36, column:45,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:45,the value of plot_cost is         : 46.201978701836524 

 At row:36, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:36, column:46,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:46,the value of plot_cost is         : 45.96473505358811 

 At row:36, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:36, column:47,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:47,the value of plot_cost is         : 45.728299465742204 

 At row:36, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:36, column:48,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:48,the value of plot_cost is         : 45.492671938298805 

 At row:36, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:36, column:49,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:49,the value of plot_cost is         : 45.25785247125794 

 At row:36, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:36, column:50,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:50,the value of plot_cost is         : 45.023841064619575 

 At row:36, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:36, column:51,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:51,the value of plot_cost is         : 44.79063771838374 

 At row:36, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:36, column:52,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:52,the value of plot_cost is         : 44.5582424325504 

 At row:36, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:36, column:53,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:53,the value of plot_cost is         : 44.326655207119586 

 At row:36, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:36, column:54,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:54,the value of plot_cost is         : 44.095876042091284 

 At row:36, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:36, column:55,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:55,the value of plot_cost is         : 43.865904937465494 

 At row:36, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:36, column:56,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:56,the value of plot_cost is         : 43.63674189324223 

 At row:36, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:36, column:57,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:57,the value of plot_cost is         : 43.408386909421466 

 At row:36, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:36, column:58,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:58,the value of plot_cost is         : 43.180839986003235 

 At row:36, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:36, column:59,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:59,the value of plot_cost is         : 42.95410112298751 

 At row:36, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:36, column:60,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:60,the value of plot_cost is         : 42.72817032037431 

 At row:36, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:36, column:61,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:61,the value of plot_cost is         : 42.50304757816361 

 At row:36, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:36, column:62,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:62,the value of plot_cost is         : 42.27873289635542 

 At row:36, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:36, column:63,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:63,the value of plot_cost is         : 42.05522627494976 

 At row:36, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:36, column:64,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:64,the value of plot_cost is         : 41.83252771394661 

 At row:36, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:36, column:65,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:65,the value of plot_cost is         : 41.61063721334598 

 At row:36, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:36, column:66,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:66,the value of plot_cost is         : 41.38955477314786 

 At row:36, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:36, column:67,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:67,the value of plot_cost is         : 41.16928039335226 

 At row:36, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:36, column:68,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:68,the value of plot_cost is         : 40.94981407395916 

 At row:36, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:36, column:69,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:69,the value of plot_cost is         : 40.7311558149686 

 At row:36, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:36, column:70,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:70,the value of plot_cost is         : 40.513305616380535 

 At row:36, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:36, column:71,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:71,the value of plot_cost is         : 40.296263478194994 

 At row:36, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:36, column:72,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:72,the value of plot_cost is         : 40.08002940041196 

 At row:36, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:36, column:73,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:73,the value of plot_cost is         : 39.864603383031444 

 At row:36, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:36, column:74,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:74,the value of plot_cost is         : 39.649985426053455 

 At row:36, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:36, column:75,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:75,the value of plot_cost is         : 39.436175529477964 

 At row:36, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:36, column:76,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:76,the value of plot_cost is         : 39.223173693305 

 At row:36, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:36, column:77,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:77,the value of plot_cost is         : 39.01097991753455 

 At row:36, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:36, column:78,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:78,the value of plot_cost is         : 38.7995942021666 

 At row:36, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:36, column:79,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:79,the value of plot_cost is         : 38.58901654720119 

 At row:36, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:36, column:80,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:80,the value of plot_cost is         : 38.379246952638276 

 At row:36, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:36, column:81,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:81,the value of plot_cost is         : 38.17028541847789 

 At row:36, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:36, column:82,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:82,the value of plot_cost is         : 37.96213194472 

 At row:36, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:36, column:83,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:83,the value of plot_cost is         : 37.754786531364644 

 At row:36, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:36, column:84,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:84,the value of plot_cost is         : 37.548249178411794 

 At row:36, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:36, column:85,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:85,the value of plot_cost is         : 37.34251988586147 

 At row:36, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:36, column:86,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:86,the value of plot_cost is         : 37.13759865371364 

 At row:36, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:36, column:87,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:87,the value of plot_cost is         : 36.93348548196834 

 At row:36, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:36, column:88,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:88,the value of plot_cost is         : 36.730180370625554 

 At row:36, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:36, column:89,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:89,the value of plot_cost is         : 36.52768331968529 

 At row:36, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:36, column:90,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:90,the value of plot_cost is         : 36.325994329147534 

 At row:36, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:36, column:91,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:91,the value of plot_cost is         : 36.12511339901229 

 At row:36, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:36, column:92,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:92,the value of plot_cost is         : 35.925040529279556 

 At row:36, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:36, column:93,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:93,the value of plot_cost is         : 35.72577571994935 

 At row:36, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:36, column:94,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:94,the value of plot_cost is         : 35.52731897102166 

 At row:36, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:36, column:95,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:95,the value of plot_cost is         : 35.32967028249647 

 At row:36, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:36, column:96,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:96,the value of plot_cost is         : 35.1328296543738 

 At row:36, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:36, column:97,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:97,the value of plot_cost is         : 34.936797086653655 

 At row:36, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:36, column:98,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:98,the value of plot_cost is         : 34.74157257933601 

 At row:36, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:36, column:99,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:99,the value of plot_cost is         : 34.547156132420895 

 At row:36, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:36, column:100,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:100,the value of plot_cost is         : 34.35354774590829 

 At row:36, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:36, column:101,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:101,the value of plot_cost is         : 34.160747419798206 

 At row:36, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:36, column:102,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:102,the value of plot_cost is         : 33.968755154090616 

 At row:36, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:36, column:103,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:103,the value of plot_cost is         : 33.77757094878556 

 At row:36, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:36, column:104,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:104,the value of plot_cost is         : 33.587194803883015 

 At row:36, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:36, column:105,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:105,the value of plot_cost is         : 33.397626719382984 

 At row:36, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:36, column:106,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:106,the value of plot_cost is         : 33.208866695285465 

 At row:36, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:36, column:107,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:107,the value of plot_cost is         : 33.020914731590466 

 At row:36, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:36, column:108,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:108,the value of plot_cost is         : 32.83377082829798 

 At row:36, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:36, column:109,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:109,the value of plot_cost is         : 32.64743498540801 

 At row:36, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:36, column:110,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:110,the value of plot_cost is         : 32.46190720292056 

 At row:36, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:36, column:111,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:111,the value of plot_cost is         : 32.27718748083562 

 At row:36, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:36, column:112,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:112,the value of plot_cost is         : 32.093275819153185 

 At row:36, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:36, column:113,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:113,the value of plot_cost is         : 31.910172217873285 

 At row:36, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:36, column:114,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:114,the value of plot_cost is         : 31.727876676995884 

 At row:36, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:36, column:115,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:115,the value of plot_cost is         : 31.546389196521005 

 At row:36, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:36, column:116,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:116,the value of plot_cost is         : 31.365709776448643 

 At row:36, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:36, column:117,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:117,the value of plot_cost is         : 31.185838416778786 

 At row:36, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:36, column:118,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:118,the value of plot_cost is         : 31.00677511751146 

 At row:36, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:36, column:119,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:119,the value of plot_cost is         : 30.82851987864664 

 At row:36, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:36, column:120,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:120,the value of plot_cost is         : 30.651072700184336 

 At row:36, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:36, column:121,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:121,the value of plot_cost is         : 30.47443358212455 

 At row:36, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:36, column:122,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:122,the value of plot_cost is         : 30.29860252446727 

 At row:36, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:36, column:123,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:123,the value of plot_cost is         : 30.123579527212517 

 At row:36, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:36, column:124,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:124,the value of plot_cost is         : 29.949364590360272 

 At row:36, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:36, column:125,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:125,the value of plot_cost is         : 29.775957713910543 

 At row:36, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:36, column:126,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:126,the value of plot_cost is         : 29.603358897863323 

 At row:36, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:36, column:127,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:127,the value of plot_cost is         : 29.43156814221863 

 At row:36, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:36, column:128,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:128,the value of plot_cost is         : 29.26058544697644 

 At row:36, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:36, column:129,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:129,the value of plot_cost is         : 29.09041081213677 

 At row:36, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:36, column:130,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:130,the value of plot_cost is         : 28.921044237699626 

 At row:36, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:36, column:131,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:131,the value of plot_cost is         : 28.75248572366499 

 At row:36, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:36, column:132,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:132,the value of plot_cost is         : 28.584735270032855 

 At row:36, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:36, column:133,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:133,the value of plot_cost is         : 28.41779287680325 

 At row:36, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:36, column:134,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:134,the value of plot_cost is         : 28.251658543976156 

 At row:36, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:36, column:135,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:135,the value of plot_cost is         : 28.086332271551576 

 At row:36, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:36, column:136,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:136,the value of plot_cost is         : 27.92181405952952 

 At row:36, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:36, column:137,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:137,the value of plot_cost is         : 27.75810390790997 

 At row:36, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:36, column:138,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:138,the value of plot_cost is         : 27.59520181669294 

 At row:36, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:36, column:139,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:139,the value of plot_cost is         : 27.43310778587842 

 At row:36, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:36, column:140,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:140,the value of plot_cost is         : 27.271821815466417 

 At row:36, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:36, column:141,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:141,the value of plot_cost is         : 27.111343905456934 

 At row:36, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:36, column:142,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:142,the value of plot_cost is         : 26.951674055849953 

 At row:36, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:36, column:143,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:143,the value of plot_cost is         : 26.7928122666455 

 At row:36, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:36, column:144,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:144,the value of plot_cost is         : 26.634758537843556 

 At row:36, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:36, column:145,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:145,the value of plot_cost is         : 26.47751286944413 

 At row:36, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:36, column:146,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:146,the value of plot_cost is         : 26.32107526144722 

 At row:36, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:36, column:147,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:147,the value of plot_cost is         : 26.165445713852822 

 At row:36, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:36, column:148,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:148,the value of plot_cost is         : 26.010624226660937 

 At row:36, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:36, column:149,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:149,the value of plot_cost is         : 25.85661079987157 

 At row:36, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:36, column:150,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:150,the value of plot_cost is         : 25.70340543348472 

 At row:36, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:36, column:151,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:151,the value of plot_cost is         : 25.55100812750038 

 At row:36, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:36, column:152,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:152,the value of plot_cost is         : 25.399418881918564 

 At row:36, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:36, column:153,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:153,the value of plot_cost is         : 25.248637696739255 

 At row:36, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:36, column:154,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:154,the value of plot_cost is         : 25.098664571962466 

 At row:36, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:36, column:155,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:155,the value of plot_cost is         : 24.949499507588186 

 At row:36, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:36, column:156,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:156,the value of plot_cost is         : 24.801142503616425 

 At row:36, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:36, column:157,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:157,the value of plot_cost is         : 24.65359356004718 

 At row:36, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:36, column:158,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:158,the value of plot_cost is         : 24.50685267688045 

 At row:36, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:36, column:159,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:159,the value of plot_cost is         : 24.360919854116236 

 At row:36, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:36, column:160,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:160,the value of plot_cost is         : 24.215795091754533 

 At row:36, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:36, column:161,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:161,the value of plot_cost is         : 24.07147838979535 

 At row:36, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:36, column:162,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:162,the value of plot_cost is         : 23.927969748238677 

 At row:36, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:36, column:163,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:163,the value of plot_cost is         : 23.78526916708452 

 At row:36, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:36, column:164,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:164,the value of plot_cost is         : 23.643376646332886 

 At row:36, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:36, column:165,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:165,the value of plot_cost is         : 23.50229218598375 

 At row:36, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:36, column:166,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:166,the value of plot_cost is         : 23.362015786037148 

 At row:36, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:36, column:167,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:167,the value of plot_cost is         : 23.222547446493053 

 At row:36, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:36, column:168,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:168,the value of plot_cost is         : 23.08388716735147 

 At row:36, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:36, column:169,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:169,the value of plot_cost is         : 22.946034948612407 

 At row:36, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:36, column:170,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:170,the value of plot_cost is         : 22.808990790275857 

 At row:36, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:36, column:171,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:171,the value of plot_cost is         : 22.67275469234182 

 At row:36, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:36, column:172,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:172,the value of plot_cost is         : 22.537326654810304 

 At row:36, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:36, column:173,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:173,the value of plot_cost is         : 22.402706677681298 

 At row:36, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:36, column:174,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:174,the value of plot_cost is         : 22.268894760954808 

 At row:36, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:36, column:175,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:175,the value of plot_cost is         : 22.13589090463083 

 At row:36, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:36, column:176,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:176,the value of plot_cost is         : 22.00369510870937 

 At row:36, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:36, column:177,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:177,the value of plot_cost is         : 21.872307373190427 

 At row:36, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:36, column:178,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:178,the value of plot_cost is         : 21.741727698073998 

 At row:36, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:36, column:179,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:179,the value of plot_cost is         : 21.611956083360084 

 At row:36, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:36, column:180,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:180,the value of plot_cost is         : 21.48299252904869 

 At row:36, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:36, column:181,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:181,the value of plot_cost is         : 21.3548370351398 

 At row:36, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:36, column:182,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:182,the value of plot_cost is         : 21.227489601633437 

 At row:36, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:36, column:183,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:183,the value of plot_cost is         : 21.100950228529577 

 At row:36, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:36, column:184,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:184,the value of plot_cost is         : 20.975218915828243 

 At row:36, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:36, column:185,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:185,the value of plot_cost is         : 20.850295663529415 

 At row:36, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:36, column:186,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:186,the value of plot_cost is         : 20.726180471633104 

 At row:36, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:36, column:187,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:187,the value of plot_cost is         : 20.602873340139315 

 At row:36, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:36, column:188,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:188,the value of plot_cost is         : 20.48037426904804 

 At row:36, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:36, column:189,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:189,the value of plot_cost is         : 20.358683258359275 

 At row:36, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:36, column:190,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:190,the value of plot_cost is         : 20.237800308073027 

 At row:36, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:36, column:191,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:191,the value of plot_cost is         : 20.11772541818929 

 At row:36, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:36, column:192,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:192,the value of plot_cost is         : 19.998458588708075 

 At row:36, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:36, column:193,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:193,the value of plot_cost is         : 19.879999819629372 

 At row:36, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:36, column:194,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:194,the value of plot_cost is         : 19.762349110953185 

 At row:36, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:36, column:195,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:195,the value of plot_cost is         : 19.645506462679506 

 At row:36, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:36, column:196,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:196,the value of plot_cost is         : 19.52947187480835 

 At row:36, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:36, column:197,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:197,the value of plot_cost is         : 19.414245347339712 

 At row:36, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:36, column:198,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:198,the value of plot_cost is         : 19.29982688027358 

 At row:36, column:199,the value of plot_t0 is           : 3.0
 At row:36, column:199,the value of plot_t1 is           : -0.27638190954773867
 At row:36, column:199,the value of plot_cost is         : 19.18621647360997 

 At row:37, column:0,the value of plot_t0 is           : -1.0
 At row:37, column:0,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:0,the value of plot_cost is         : 56.53599306655315 

 At row:37, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:37, column:1,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:1,the value of plot_cost is         : 56.265064843239884 

 At row:37, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:37, column:2,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:2,the value of plot_cost is         : 55.99494468032914 

 At row:37, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:37, column:3,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:3,the value of plot_cost is         : 55.7256325778209 

 At row:37, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:37, column:4,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:4,the value of plot_cost is         : 55.45712853571519 

 At row:37, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:37, column:5,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:5,the value of plot_cost is         : 55.18943255401197 

 At row:37, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:37, column:6,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:6,the value of plot_cost is         : 54.922544632711286 

 At row:37, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:37, column:7,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:7,the value of plot_cost is         : 54.65646477181312 

 At row:37, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:37, column:8,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:8,the value of plot_cost is         : 54.39119297131745 

 At row:37, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:37, column:9,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:9,the value of plot_cost is         : 54.12672923122432 

 At row:37, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:37, column:10,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:10,the value of plot_cost is         : 53.86307355153368 

 At row:37, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:37, column:11,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:11,the value of plot_cost is         : 53.60022593224558 

 At row:37, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:37, column:12,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:12,the value of plot_cost is         : 53.33818637335998 

 At row:37, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:37, column:13,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:13,the value of plot_cost is         : 53.0769548748769 

 At row:37, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:37, column:14,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:14,the value of plot_cost is         : 52.816531436796325 

 At row:37, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:37, column:15,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:15,the value of plot_cost is         : 52.556916059118265 

 At row:37, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:37, column:16,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:16,the value of plot_cost is         : 52.29810874184273 

 At row:37, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:37, column:17,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:17,the value of plot_cost is         : 52.040109484969705 

 At row:37, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:37, column:18,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:18,the value of plot_cost is         : 51.7829182884992 

 At row:37, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:37, column:19,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:19,the value of plot_cost is         : 51.52653515243121 

 At row:37, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:37, column:20,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:20,the value of plot_cost is         : 51.27096007676573 

 At row:37, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:37, column:21,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:21,the value of plot_cost is         : 51.016193061502776 

 At row:37, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:37, column:22,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:22,the value of plot_cost is         : 50.762234106642325 

 At row:37, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:37, column:23,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:23,the value of plot_cost is         : 50.50908321218439 

 At row:37, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:37, column:24,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:24,the value of plot_cost is         : 50.25674037812898 

 At row:37, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:37, column:25,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:25,the value of plot_cost is         : 50.00520560447607 

 At row:37, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:37, column:26,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:26,the value of plot_cost is         : 49.75447889122569 

 At row:37, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:37, column:27,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:27,the value of plot_cost is         : 49.50456023837781 

 At row:37, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:37, column:28,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:28,the value of plot_cost is         : 49.25544964593246 

 At row:37, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:37, column:29,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:29,the value of plot_cost is         : 49.007147113889616 

 At row:37, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:37, column:30,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:30,the value of plot_cost is         : 48.759652642249286 

 At row:37, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:37, column:31,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:31,the value of plot_cost is         : 48.512966231011475 

 At row:37, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:37, column:32,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:32,the value of plot_cost is         : 48.267087880176184 

 At row:37, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:37, column:33,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:33,the value of plot_cost is         : 48.0220175897434 

 At row:37, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:37, column:34,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:34,the value of plot_cost is         : 47.77775535971314 

 At row:37, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:37, column:35,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:35,the value of plot_cost is         : 47.53430119008537 

 At row:37, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:37, column:36,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:36,the value of plot_cost is         : 47.29165508086014 

 At row:37, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:37, column:37,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:37,the value of plot_cost is         : 47.04981703203743 

 At row:37, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:37, column:38,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:38,the value of plot_cost is         : 46.80878704361722 

 At row:37, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:37, column:39,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:39,the value of plot_cost is         : 46.568565115599526 

 At row:37, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:37, column:40,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:40,the value of plot_cost is         : 46.32915124798435 

 At row:37, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:37, column:41,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:41,the value of plot_cost is         : 46.09054544077169 

 At row:37, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:37, column:42,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:42,the value of plot_cost is         : 45.85274769396155 

 At row:37, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:37, column:43,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:43,the value of plot_cost is         : 45.615758007553914 

 At row:37, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:37, column:44,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:44,the value of plot_cost is         : 45.37957638154881 

 At row:37, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:37, column:45,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:45,the value of plot_cost is         : 45.1442028159462 

 At row:37, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:37, column:46,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:46,the value of plot_cost is         : 44.90963731074612 

 At row:37, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:37, column:47,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:47,the value of plot_cost is         : 44.67587986594855 

 At row:37, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:37, column:48,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:48,the value of plot_cost is         : 44.4429304815535 

 At row:37, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:37, column:49,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:49,the value of plot_cost is         : 44.21078915756095 

 At row:37, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:37, column:50,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:50,the value of plot_cost is         : 43.97945589397093 

 At row:37, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:37, column:51,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:51,the value of plot_cost is         : 43.74893069078342 

 At row:37, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:37, column:52,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:52,the value of plot_cost is         : 43.51921354799842 

 At row:37, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:37, column:53,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:53,the value of plot_cost is         : 43.29030446561595 

 At row:37, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:37, column:54,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:54,the value of plot_cost is         : 43.06220344363598 

 At row:37, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:37, column:55,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:55,the value of plot_cost is         : 42.83491048205852 

 At row:37, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:37, column:56,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:56,the value of plot_cost is         : 42.6084255808836 

 At row:37, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:37, column:57,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:57,the value of plot_cost is         : 42.382748740111175 

 At row:37, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:37, column:58,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:58,the value of plot_cost is         : 42.15787995974127 

 At row:37, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:37, column:59,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:59,the value of plot_cost is         : 41.93381923977388 

 At row:37, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:37, column:60,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:60,the value of plot_cost is         : 41.71056658020901 

 At row:37, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:37, column:61,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:61,the value of plot_cost is         : 41.488121981046646 

 At row:37, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:37, column:62,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:62,the value of plot_cost is         : 41.26648544228681 

 At row:37, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:37, column:63,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:63,the value of plot_cost is         : 41.045656963929474 

 At row:37, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:37, column:64,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:64,the value of plot_cost is         : 40.82563654597467 

 At row:37, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:37, column:65,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:65,the value of plot_cost is         : 40.606424188422366 

 At row:37, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:37, column:66,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:66,the value of plot_cost is         : 40.38801989127258 

 At row:37, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:37, column:67,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:67,the value of plot_cost is         : 40.17042365452531 

 At row:37, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:37, column:68,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:68,the value of plot_cost is         : 39.953635478180566 

 At row:37, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:37, column:69,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:69,the value of plot_cost is         : 39.73765536223832 

 At row:37, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:37, column:70,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:70,the value of plot_cost is         : 39.5224833066986 

 At row:37, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:37, column:71,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:71,the value of plot_cost is         : 39.30811931156139 

 At row:37, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:37, column:72,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:72,the value of plot_cost is         : 39.0945633768267 

 At row:37, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:37, column:73,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:73,the value of plot_cost is         : 38.881815502494526 

 At row:37, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:37, column:74,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:74,the value of plot_cost is         : 38.66987568856486 

 At row:37, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:37, column:75,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:75,the value of plot_cost is         : 38.45874393503771 

 At row:37, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:37, column:76,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:76,the value of plot_cost is         : 38.248420241913074 

 At row:37, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:37, column:77,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:77,the value of plot_cost is         : 38.03890460919096 

 At row:37, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:37, column:78,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:78,the value of plot_cost is         : 37.83019703687136 

 At row:37, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:37, column:79,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:79,the value of plot_cost is         : 37.62229752495427 

 At row:37, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:37, column:80,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:80,the value of plot_cost is         : 37.4152060734397 

 At row:37, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:37, column:81,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:81,the value of plot_cost is         : 37.20892268232764 

 At row:37, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:37, column:82,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:82,the value of plot_cost is         : 37.0034473516181 

 At row:37, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:37, column:83,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:83,the value of plot_cost is         : 36.79878008131108 

 At row:37, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:37, column:84,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:84,the value of plot_cost is         : 36.59492087140656 

 At row:37, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:37, column:85,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:85,the value of plot_cost is         : 36.39186972190456 

 At row:37, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:37, column:86,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:86,the value of plot_cost is         : 36.18962663280508 

 At row:37, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:37, column:87,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:87,the value of plot_cost is         : 35.988191604108124 

 At row:37, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:37, column:88,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:88,the value of plot_cost is         : 35.78756463581366 

 At row:37, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:37, column:89,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:89,the value of plot_cost is         : 35.587745727921735 

 At row:37, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:37, column:90,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:90,the value of plot_cost is         : 35.38873488043231 

 At row:37, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:37, column:91,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:91,the value of plot_cost is         : 35.1905320933454 

 At row:37, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:37, column:92,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:92,the value of plot_cost is         : 34.99313736666102 

 At row:37, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:37, column:93,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:93,the value of plot_cost is         : 34.796550700379136 

 At row:37, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:37, column:94,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:94,the value of plot_cost is         : 34.600772094499774 

 At row:37, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:37, column:95,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:95,the value of plot_cost is         : 34.405801549022925 

 At row:37, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:37, column:96,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:96,the value of plot_cost is         : 34.2116390639486 

 At row:37, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:37, column:97,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:97,the value of plot_cost is         : 34.018284639276786 

 At row:37, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:37, column:98,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:98,the value of plot_cost is         : 33.825738275007474 

 At row:37, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:37, column:99,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:99,the value of plot_cost is         : 33.633999971140696 

 At row:37, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:37, column:100,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:100,the value of plot_cost is         : 33.44306972767642 

 At row:37, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:37, column:101,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:101,the value of plot_cost is         : 33.25294754461467 

 At row:37, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:37, column:102,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:102,the value of plot_cost is         : 33.06363342195544 

 At row:37, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:37, column:103,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:103,the value of plot_cost is         : 32.87512735969871 

 At row:37, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:37, column:104,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:104,the value of plot_cost is         : 32.6874293578445 

 At row:37, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:37, column:105,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:105,the value of plot_cost is         : 32.5005394163928 

 At row:37, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:37, column:106,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:106,the value of plot_cost is         : 32.31445753534362 

 At row:37, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:37, column:107,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:107,the value of plot_cost is         : 32.12918371469696 

 At row:37, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:37, column:108,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:108,the value of plot_cost is         : 31.944717954452802 

 At row:37, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:37, column:109,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:109,the value of plot_cost is         : 31.76106025461117 

 At row:37, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:37, column:110,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:110,the value of plot_cost is         : 31.578210615172043 

 At row:37, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:37, column:111,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:111,the value of plot_cost is         : 31.396169036135447 

 At row:37, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:37, column:112,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:112,the value of plot_cost is         : 31.21493551750136 

 At row:37, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:37, column:113,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:113,the value of plot_cost is         : 31.034510059269785 

 At row:37, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:37, column:114,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:114,the value of plot_cost is         : 30.854892661440726 

 At row:37, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:37, column:115,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:115,the value of plot_cost is         : 30.67608332401418 

 At row:37, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:37, column:116,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:116,the value of plot_cost is         : 30.49808204699015 

 At row:37, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:37, column:117,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:117,the value of plot_cost is         : 30.32088883036864 

 At row:37, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:37, column:118,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:118,the value of plot_cost is         : 30.14450367414964 

 At row:37, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:37, column:119,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:119,the value of plot_cost is         : 29.968926578333154 

 At row:37, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:37, column:120,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:120,the value of plot_cost is         : 29.794157542919184 

 At row:37, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:37, column:121,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:121,the value of plot_cost is         : 29.620196567907733 

 At row:37, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:37, column:122,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:122,the value of plot_cost is         : 29.447043653298795 

 At row:37, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:37, column:123,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:123,the value of plot_cost is         : 29.274698799092373 

 At row:37, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:37, column:124,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:124,the value of plot_cost is         : 29.103162005288464 

 At row:37, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:37, column:125,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:125,the value of plot_cost is         : 28.932433271887067 

 At row:37, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:37, column:126,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:126,the value of plot_cost is         : 28.762512598888193 

 At row:37, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:37, column:127,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:127,the value of plot_cost is         : 28.593399986291832 

 At row:37, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:37, column:128,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:128,the value of plot_cost is         : 28.425095434097983 

 At row:37, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:37, column:129,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:129,the value of plot_cost is         : 28.257598942306643 

 At row:37, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:37, column:130,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:130,the value of plot_cost is         : 28.090910510917826 

 At row:37, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:37, column:131,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:131,the value of plot_cost is         : 27.92503013993153 

 At row:37, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:37, column:132,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:132,the value of plot_cost is         : 27.759957829347744 

 At row:37, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:37, column:133,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:133,the value of plot_cost is         : 27.59569357916647 

 At row:37, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:37, column:134,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:134,the value of plot_cost is         : 27.43223738938771 

 At row:37, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:37, column:135,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:135,the value of plot_cost is         : 27.269589260011465 

 At row:37, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:37, column:136,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:136,the value of plot_cost is         : 27.10774919103774 

 At row:37, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:37, column:137,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:137,the value of plot_cost is         : 26.946717182466532 

 At row:37, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:37, column:138,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:138,the value of plot_cost is         : 26.786493234297826 

 At row:37, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:37, column:139,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:139,the value of plot_cost is         : 26.627077346531653 

 At row:37, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:37, column:140,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:140,the value of plot_cost is         : 26.468469519167982 

 At row:37, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:37, column:141,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:141,the value of plot_cost is         : 26.31066975220683 

 At row:37, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:37, column:142,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:142,the value of plot_cost is         : 26.153678045648196 

 At row:37, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:37, column:143,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:143,the value of plot_cost is         : 25.997494399492076 

 At row:37, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:37, column:144,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:144,the value of plot_cost is         : 25.842118813738466 

 At row:37, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:37, column:145,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:145,the value of plot_cost is         : 25.687551288387375 

 At row:37, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:37, column:146,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:146,the value of plot_cost is         : 25.533791823438804 

 At row:37, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:37, column:147,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:147,the value of plot_cost is         : 25.38084041889274 

 At row:37, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:37, column:148,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:148,the value of plot_cost is         : 25.228697074749185 

 At row:37, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:37, column:149,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:149,the value of plot_cost is         : 25.07736179100816 

 At row:37, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:37, column:150,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:150,the value of plot_cost is         : 24.926834567669644 

 At row:37, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:37, column:151,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:151,the value of plot_cost is         : 24.777115404733642 

 At row:37, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:37, column:152,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:152,the value of plot_cost is         : 24.62820430220016 

 At row:37, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:37, column:153,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:153,the value of plot_cost is         : 24.48010126006919 

 At row:37, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:37, column:154,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:154,the value of plot_cost is         : 24.33280627834073 

 At row:37, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:37, column:155,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:155,the value of plot_cost is         : 24.186319357014792 

 At row:37, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:37, column:156,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:156,the value of plot_cost is         : 24.040640496091367 

 At row:37, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:37, column:157,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:157,the value of plot_cost is         : 23.895769695570458 

 At row:37, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:37, column:158,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:158,the value of plot_cost is         : 23.751706955452057 

 At row:37, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:37, column:159,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:159,the value of plot_cost is         : 23.608452275736177 

 At row:37, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:37, column:160,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:160,the value of plot_cost is         : 23.466005656422812 

 At row:37, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:37, column:161,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:161,the value of plot_cost is         : 23.324367097511963 

 At row:37, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:37, column:162,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:162,the value of plot_cost is         : 23.18353659900363 

 At row:37, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:37, column:163,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:163,the value of plot_cost is         : 23.043514160897814 

 At row:37, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:37, column:164,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:164,the value of plot_cost is         : 22.904299783194503 

 At row:37, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:37, column:165,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:165,the value of plot_cost is         : 22.765893465893715 

 At row:37, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:37, column:166,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:166,the value of plot_cost is         : 22.628295208995443 

 At row:37, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:37, column:167,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:167,the value of plot_cost is         : 22.491505012499683 

 At row:37, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:37, column:168,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:168,the value of plot_cost is         : 22.355522876406436 

 At row:37, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:37, column:169,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:169,the value of plot_cost is         : 22.220348800715705 

 At row:37, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:37, column:170,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:170,the value of plot_cost is         : 22.085982785427493 

 At row:37, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:37, column:171,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:171,the value of plot_cost is         : 21.952424830541794 

 At row:37, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:37, column:172,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:172,the value of plot_cost is         : 21.819674936058615 

 At row:37, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:37, column:173,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:173,the value of plot_cost is         : 21.687733101977944 

 At row:37, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:37, column:174,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:174,the value of plot_cost is         : 21.556599328299786 

 At row:37, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:37, column:175,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:175,the value of plot_cost is         : 21.42627361502415 

 At row:37, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:37, column:176,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:176,the value of plot_cost is         : 21.29675596215103 

 At row:37, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:37, column:177,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:177,the value of plot_cost is         : 21.168046369680418 

 At row:37, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:37, column:178,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:178,the value of plot_cost is         : 21.04014483761232 

 At row:37, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:37, column:179,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:179,the value of plot_cost is         : 20.913051365946743 

 At row:37, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:37, column:180,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:180,the value of plot_cost is         : 20.786765954683684 

 At row:37, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:37, column:181,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:181,the value of plot_cost is         : 20.661288603823134 

 At row:37, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:37, column:182,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:182,the value of plot_cost is         : 20.5366193133651 

 At row:37, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:37, column:183,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:183,the value of plot_cost is         : 20.412758083309583 

 At row:37, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:37, column:184,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:184,the value of plot_cost is         : 20.28970491365658 

 At row:37, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:37, column:185,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:185,the value of plot_cost is         : 20.167459804406093 

 At row:37, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:37, column:186,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:186,the value of plot_cost is         : 20.04602275555812 

 At row:37, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:37, column:187,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:187,the value of plot_cost is         : 19.925393767112663 

 At row:37, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:37, column:188,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:188,the value of plot_cost is         : 19.805572839069715 

 At row:37, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:37, column:189,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:189,the value of plot_cost is         : 19.68655997142929 

 At row:37, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:37, column:190,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:190,the value of plot_cost is         : 19.568355164191377 

 At row:37, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:37, column:191,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:191,the value of plot_cost is         : 19.45095841735598 

 At row:37, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:37, column:192,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:192,the value of plot_cost is         : 19.334369730923104 

 At row:37, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:37, column:193,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:193,the value of plot_cost is         : 19.218589104892732 

 At row:37, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:37, column:194,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:194,the value of plot_cost is         : 19.103616539264877 

 At row:37, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:37, column:195,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:195,the value of plot_cost is         : 18.98945203403954 

 At row:37, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:37, column:196,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:196,the value of plot_cost is         : 18.876095589216717 

 At row:37, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:37, column:197,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:197,the value of plot_cost is         : 18.76354720479641 

 At row:37, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:37, column:198,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:198,the value of plot_cost is         : 18.651806880778622 

 At row:37, column:199,the value of plot_t0 is           : 3.0
 At row:37, column:199,the value of plot_t1 is           : -0.2562814070351759
 At row:37, column:199,the value of plot_cost is         : 18.540874617163343 

 At row:38, column:0,the value of plot_t0 is           : -1.0
 At row:38, column:0,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:0,the value of plot_cost is         : 55.37028339832688 

 At row:38, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:38, column:1,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:1,the value of plot_cost is         : 55.10203331806194 

 At row:38, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:38, column:2,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:2,the value of plot_cost is         : 54.83459129819954 

 At row:38, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:38, column:3,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:3,the value of plot_cost is         : 54.567957338739646 

 At row:38, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:38, column:4,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:4,the value of plot_cost is         : 54.302131439682256 

 At row:38, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:38, column:5,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:5,the value of plot_cost is         : 54.037113601027386 

 At row:38, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:38, column:6,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:6,the value of plot_cost is         : 53.77290382277503 

 At row:38, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:38, column:7,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:7,the value of plot_cost is         : 53.5095021049252 

 At row:38, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:38, column:8,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:8,the value of plot_cost is         : 53.24690844747787 

 At row:38, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:38, column:9,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:9,the value of plot_cost is         : 52.98512285043307 

 At row:38, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:38, column:10,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:10,the value of plot_cost is         : 52.72414531379077 

 At row:38, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:38, column:11,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:11,the value of plot_cost is         : 52.46397583755099 

 At row:38, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:38, column:12,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:12,the value of plot_cost is         : 52.204614421713735 

 At row:38, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:38, column:13,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:13,the value of plot_cost is         : 51.946061066278986 

 At row:38, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:38, column:14,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:14,the value of plot_cost is         : 51.68831577124676 

 At row:38, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:38, column:15,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:15,the value of plot_cost is         : 51.431378536617046 

 At row:38, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:38, column:16,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:16,the value of plot_cost is         : 51.175249362389835 

 At row:38, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:38, column:17,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:17,the value of plot_cost is         : 50.91992824856516 

 At row:38, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:38, column:18,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:18,the value of plot_cost is         : 50.66541519514298 

 At row:38, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:38, column:19,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:19,the value of plot_cost is         : 50.411710202123324 

 At row:38, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:38, column:20,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:20,the value of plot_cost is         : 50.158813269506176 

 At row:38, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:38, column:21,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:21,the value of plot_cost is         : 49.90672439729154 

 At row:38, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:38, column:22,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:22,the value of plot_cost is         : 49.65544358547944 

 At row:38, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:38, column:23,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:23,the value of plot_cost is         : 49.40497083406985 

 At row:38, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:38, column:24,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:24,the value of plot_cost is         : 49.15530614306276 

 At row:38, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:38, column:25,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:25,the value of plot_cost is         : 48.906449512458195 

 At row:38, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:38, column:26,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:26,the value of plot_cost is         : 48.65840094225614 

 At row:38, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:38, column:27,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:27,the value of plot_cost is         : 48.411160432456604 

 At row:38, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:38, column:28,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:28,the value of plot_cost is         : 48.164727983059585 

 At row:38, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:38, column:29,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:29,the value of plot_cost is         : 47.919103594065085 

 At row:38, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:38, column:30,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:30,the value of plot_cost is         : 47.67428726547309 

 At row:38, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:38, column:31,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:31,the value of plot_cost is         : 47.430278997283615 

 At row:38, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:38, column:32,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:32,the value of plot_cost is         : 47.18707878949665 

 At row:38, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:38, column:33,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:33,the value of plot_cost is         : 46.94468664211221 

 At row:38, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:38, column:34,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:34,the value of plot_cost is         : 46.70310255513028 

 At row:38, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:38, column:35,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:35,the value of plot_cost is         : 46.46232652855086 

 At row:38, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:38, column:36,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:36,the value of plot_cost is         : 46.22235856237396 

 At row:38, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:38, column:37,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:37,the value of plot_cost is         : 45.983198656599576 

 At row:38, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:38, column:38,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:38,the value of plot_cost is         : 45.74484681122772 

 At row:38, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:38, column:39,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:39,the value of plot_cost is         : 45.507303026258356 

 At row:38, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:38, column:40,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:40,the value of plot_cost is         : 45.27056730169151 

 At row:38, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:38, column:41,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:41,the value of plot_cost is         : 45.034639637527185 

 At row:38, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:38, column:42,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:42,the value of plot_cost is         : 44.799520033765376 

 At row:38, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:38, column:43,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:43,the value of plot_cost is         : 44.565208490406086 

 At row:38, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:38, column:44,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:44,the value of plot_cost is         : 44.3317050074493 

 At row:38, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:38, column:45,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:45,the value of plot_cost is         : 44.09900958489504 

 At row:38, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:38, column:46,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:46,the value of plot_cost is         : 43.86712222274329 

 At row:38, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:38, column:47,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:47,the value of plot_cost is         : 43.63604292099405 

 At row:38, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:38, column:48,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:48,the value of plot_cost is         : 43.40577167964734 

 At row:38, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:38, column:49,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:49,the value of plot_cost is         : 43.176308498703136 

 At row:38, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:38, column:50,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:50,the value of plot_cost is         : 42.94765337816144 

 At row:38, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:38, column:51,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:51,the value of plot_cost is         : 42.71980631802226 

 At row:38, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:38, column:52,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:52,the value of plot_cost is         : 42.49276731828561 

 At row:38, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:38, column:53,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:53,the value of plot_cost is         : 42.266536378951464 

 At row:38, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:38, column:54,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:54,the value of plot_cost is         : 42.04111350001984 

 At row:38, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:38, column:55,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:55,the value of plot_cost is         : 41.81649868149072 

 At row:38, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:38, column:56,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:56,the value of plot_cost is         : 41.59269192336413 

 At row:38, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:38, column:57,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:57,the value of plot_cost is         : 41.36969322564005 

 At row:38, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:38, column:58,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:58,the value of plot_cost is         : 41.147502588318474 

 At row:38, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:38, column:59,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:59,the value of plot_cost is         : 40.926120011399426 

 At row:38, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:38, column:60,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:60,the value of plot_cost is         : 40.705545494882884 

 At row:38, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:38, column:61,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:61,the value of plot_cost is         : 40.485779038768854 

 At row:38, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:38, column:62,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:62,the value of plot_cost is         : 40.26682064305735 

 At row:38, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:38, column:63,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:63,the value of plot_cost is         : 40.04867030774836 

 At row:38, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:38, column:64,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:64,the value of plot_cost is         : 39.83132803284189 

 At row:38, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:38, column:65,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:65,the value of plot_cost is         : 39.614793818337915 

 At row:38, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:38, column:66,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:66,the value of plot_cost is         : 39.39906766423647 

 At row:38, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:38, column:67,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:67,the value of plot_cost is         : 39.184149570537535 

 At row:38, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:38, column:68,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:68,the value of plot_cost is         : 38.97003953724113 

 At row:38, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:38, column:69,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:69,the value of plot_cost is         : 38.75673756434722 

 At row:38, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:38, column:70,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:70,the value of plot_cost is         : 38.54424365185583 

 At row:38, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:38, column:71,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:71,the value of plot_cost is         : 38.33255779976696 

 At row:38, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:38, column:72,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:72,the value of plot_cost is         : 38.1216800080806 

 At row:38, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:38, column:73,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:73,the value of plot_cost is         : 37.91161027679676 

 At row:38, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:38, column:74,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:74,the value of plot_cost is         : 37.70234860591543 

 At row:38, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:38, column:75,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:75,the value of plot_cost is         : 37.49389499543662 

 At row:38, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:38, column:76,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:76,the value of plot_cost is         : 37.28624944536032 

 At row:38, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:38, column:77,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:77,the value of plot_cost is         : 37.07941195568654 

 At row:38, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:38, column:78,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:78,the value of plot_cost is         : 36.87338252641528 

 At row:38, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:38, column:79,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:79,the value of plot_cost is         : 36.66816115754653 

 At row:38, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:38, column:80,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:80,the value of plot_cost is         : 36.463747849080285 

 At row:38, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:38, column:81,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:81,the value of plot_cost is         : 36.26014260101656 

 At row:38, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:38, column:82,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:82,the value of plot_cost is         : 36.05734541335536 

 At row:38, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:38, column:83,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:83,the value of plot_cost is         : 35.855356286096665 

 At row:38, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:38, column:84,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:84,the value of plot_cost is         : 35.65417521924049 

 At row:38, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:38, column:85,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:85,the value of plot_cost is         : 35.453802212786826 

 At row:38, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:38, column:86,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:86,the value of plot_cost is         : 35.254237266735686 

 At row:38, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:38, column:87,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:87,the value of plot_cost is         : 35.05548038108705 

 At row:38, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:38, column:88,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:88,the value of plot_cost is         : 34.857531555840936 

 At row:38, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:38, column:89,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:89,the value of plot_cost is         : 34.66039079099734 

 At row:38, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:38, column:90,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:90,the value of plot_cost is         : 34.46405808655625 

 At row:38, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:38, column:91,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:91,the value of plot_cost is         : 34.26853344251768 

 At row:38, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:38, column:92,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:92,the value of plot_cost is         : 34.07381685888163 

 At row:38, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:38, column:93,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:93,the value of plot_cost is         : 33.87990833564808 

 At row:38, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:38, column:94,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:94,the value of plot_cost is         : 33.68680787281706 

 At row:38, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:38, column:95,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:95,the value of plot_cost is         : 33.494515470388556 

 At row:38, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:38, column:96,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:96,the value of plot_cost is         : 33.303031128362555 

 At row:38, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:38, column:97,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:97,the value of plot_cost is         : 33.11235484673907 

 At row:38, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:38, column:98,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:98,the value of plot_cost is         : 32.92248662551811 

 At row:38, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:38, column:99,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:99,the value of plot_cost is         : 32.73342646469967 

 At row:38, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:38, column:100,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:100,the value of plot_cost is         : 32.54517436428373 

 At row:38, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:38, column:101,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:101,the value of plot_cost is         : 32.35773032427031 

 At row:38, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:38, column:102,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:102,the value of plot_cost is         : 32.1710943446594 

 At row:38, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:38, column:103,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:103,the value of plot_cost is         : 31.985266425451016 

 At row:38, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:38, column:104,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:104,the value of plot_cost is         : 31.800246566645146 

 At row:38, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:38, column:105,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:105,the value of plot_cost is         : 31.61603476824179 

 At row:38, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:38, column:106,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:106,the value of plot_cost is         : 31.43263103024094 

 At row:38, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:38, column:107,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:107,the value of plot_cost is         : 31.250035352642605 

 At row:38, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:38, column:108,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:108,the value of plot_cost is         : 31.068247735446796 

 At row:38, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:38, column:109,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:109,the value of plot_cost is         : 30.887268178653493 

 At row:38, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:38, column:110,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:110,the value of plot_cost is         : 30.707096682262705 

 At row:38, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:38, column:111,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:111,the value of plot_cost is         : 30.52773324627444 

 At row:38, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:38, column:112,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:112,the value of plot_cost is         : 30.349177870688685 

 At row:38, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:38, column:113,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:113,the value of plot_cost is         : 30.171430555505452 

 At row:38, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:38, column:114,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:114,the value of plot_cost is         : 29.99449130072473 

 At row:38, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:38, column:115,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:115,the value of plot_cost is         : 29.818360106346518 

 At row:38, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:38, column:116,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:116,the value of plot_cost is         : 29.643036972370826 

 At row:38, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:38, column:117,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:117,the value of plot_cost is         : 29.468521898797647 

 At row:38, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:38, column:118,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:118,the value of plot_cost is         : 29.294814885626987 

 At row:38, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:38, column:119,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:119,the value of plot_cost is         : 29.121915932858833 

 At row:38, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:38, column:120,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:120,the value of plot_cost is         : 28.949825040493195 

 At row:38, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:38, column:121,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:121,the value of plot_cost is         : 28.77854220853008 

 At row:38, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:38, column:122,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:122,the value of plot_cost is         : 28.608067436969485 

 At row:38, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:38, column:123,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:123,the value of plot_cost is         : 28.438400725811395 

 At row:38, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:38, column:124,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:124,the value of plot_cost is         : 28.269542075055824 

 At row:38, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:38, column:125,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:125,the value of plot_cost is         : 28.101491484702766 

 At row:38, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:38, column:126,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:126,the value of plot_cost is         : 27.934248954752224 

 At row:38, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:38, column:127,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:127,the value of plot_cost is         : 27.767814485204195 

 At row:38, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:38, column:128,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:128,the value of plot_cost is         : 27.60218807605868 

 At row:38, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:38, column:129,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:129,the value of plot_cost is         : 27.437369727315684 

 At row:38, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:38, column:130,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:130,the value of plot_cost is         : 27.2733594389752 

 At row:38, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:38, column:131,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:131,the value of plot_cost is         : 27.110157211037237 

 At row:38, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:38, column:132,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:132,the value of plot_cost is         : 26.947763043501784 

 At row:38, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:38, column:133,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:133,the value of plot_cost is         : 26.78617693636885 

 At row:38, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:38, column:134,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:134,the value of plot_cost is         : 26.625398889638426 

 At row:38, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:38, column:135,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:135,the value of plot_cost is         : 26.46542890331052 

 At row:38, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:38, column:136,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:136,the value of plot_cost is         : 26.306266977385132 

 At row:38, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:38, column:137,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:137,the value of plot_cost is         : 26.147913111862252 

 At row:38, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:38, column:138,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:138,the value of plot_cost is         : 25.99036730674189 

 At row:38, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:38, column:139,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:139,the value of plot_cost is         : 25.833629562024043 

 At row:38, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:38, column:140,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:140,the value of plot_cost is         : 25.677699877708708 

 At row:38, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:38, column:141,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:141,the value of plot_cost is         : 25.5225782537959 

 At row:38, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:38, column:142,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:142,the value of plot_cost is         : 25.3682646902856 

 At row:38, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:38, column:143,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:143,the value of plot_cost is         : 25.214759187177812 

 At row:38, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:38, column:144,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:144,the value of plot_cost is         : 25.062061744472544 

 At row:38, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:38, column:145,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:145,the value of plot_cost is         : 24.91017236216978 

 At row:38, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:38, column:146,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:146,the value of plot_cost is         : 24.759091040269546 

 At row:38, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:38, column:147,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:147,the value of plot_cost is         : 24.608817778771822 

 At row:38, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:38, column:148,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:148,the value of plot_cost is         : 24.459352577676604 

 At row:38, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:38, column:149,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:149,the value of plot_cost is         : 24.310695436983913 

 At row:38, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:38, column:150,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:150,the value of plot_cost is         : 24.162846356693727 

 At row:38, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:38, column:151,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:151,the value of plot_cost is         : 24.015805336806068 

 At row:38, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:38, column:152,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:152,the value of plot_cost is         : 23.869572377320917 

 At row:38, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:38, column:153,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:153,the value of plot_cost is         : 23.724147478238283 

 At row:38, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:38, column:154,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:154,the value of plot_cost is         : 23.57953063955816 

 At row:38, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:38, column:155,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:155,the value of plot_cost is         : 23.43572186128056 

 At row:38, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:38, column:156,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:156,the value of plot_cost is         : 23.292721143405466 

 At row:38, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:38, column:157,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:157,the value of plot_cost is         : 23.150528485932895 

 At row:38, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:38, column:158,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:158,the value of plot_cost is         : 23.009143888862837 

 At row:38, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:38, column:159,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:159,the value of plot_cost is         : 22.86856735219529 

 At row:38, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:38, column:160,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:160,the value of plot_cost is         : 22.728798875930256 

 At row:38, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:38, column:161,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:161,the value of plot_cost is         : 22.589838460067742 

 At row:38, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:38, column:162,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:162,the value of plot_cost is         : 22.45168610460775 

 At row:38, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:38, column:163,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:163,the value of plot_cost is         : 22.314341809550264 

 At row:38, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:38, column:164,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:164,the value of plot_cost is         : 22.1778055748953 

 At row:38, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:38, column:165,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:165,the value of plot_cost is         : 22.04207740064284 

 At row:38, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:38, column:166,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:166,the value of plot_cost is         : 21.907157286792895 

 At row:38, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:38, column:167,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:167,the value of plot_cost is         : 21.773045233345478 

 At row:38, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:38, column:168,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:168,the value of plot_cost is         : 21.63974124030057 

 At row:38, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:38, column:169,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:169,the value of plot_cost is         : 21.507245307658177 

 At row:38, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:38, column:170,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:170,the value of plot_cost is         : 21.37555743541829 

 At row:38, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:38, column:171,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:171,the value of plot_cost is         : 21.244677623580927 

 At row:38, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:38, column:172,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:172,the value of plot_cost is         : 21.114605872146086 

 At row:38, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:38, column:173,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:173,the value of plot_cost is         : 20.98534218111375 

 At row:38, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:38, column:174,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:174,the value of plot_cost is         : 20.85688655048393 

 At row:38, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:38, column:175,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:175,the value of plot_cost is         : 20.72923898025663 

 At row:38, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:38, column:176,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:176,the value of plot_cost is         : 20.602399470431838 

 At row:38, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:38, column:177,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:177,the value of plot_cost is         : 20.47636802100957 

 At row:38, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:38, column:178,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:178,the value of plot_cost is         : 20.35114463198981 

 At row:38, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:38, column:179,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:179,the value of plot_cost is         : 20.22672930337257 

 At row:38, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:38, column:180,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:180,the value of plot_cost is         : 20.10312203515784 

 At row:38, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:38, column:181,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:181,the value of plot_cost is         : 19.980322827345628 

 At row:38, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:38, column:182,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:182,the value of plot_cost is         : 19.858331679935933 

 At row:38, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:38, column:183,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:183,the value of plot_cost is         : 19.73714859292875 

 At row:38, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:38, column:184,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:184,the value of plot_cost is         : 19.61677356632408 

 At row:38, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:38, column:185,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:185,the value of plot_cost is         : 19.49720660012193 

 At row:38, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:38, column:186,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:186,the value of plot_cost is         : 19.37844769432229 

 At row:38, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:38, column:187,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:187,the value of plot_cost is         : 19.26049684892517 

 At row:38, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:38, column:188,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:188,the value of plot_cost is         : 19.143354063930563 

 At row:38, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:38, column:189,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:189,the value of plot_cost is         : 19.02701933933847 

 At row:38, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:38, column:190,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:190,the value of plot_cost is         : 18.911492675148892 

 At row:38, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:38, column:191,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:191,the value of plot_cost is         : 18.79677407136183 

 At row:38, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:38, column:192,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:192,the value of plot_cost is         : 18.682863527977286 

 At row:38, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:38, column:193,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:193,the value of plot_cost is         : 18.569761044995257 

 At row:38, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:38, column:194,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:194,the value of plot_cost is         : 18.457466622415737 

 At row:38, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:38, column:195,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:195,the value of plot_cost is         : 18.345980260238733 

 At row:38, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:38, column:196,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:196,the value of plot_cost is         : 18.23530195846425 

 At row:38, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:38, column:197,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:197,the value of plot_cost is         : 18.12543171709228 

 At row:38, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:38, column:198,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:198,the value of plot_cost is         : 18.016369536122824 

 At row:38, column:199,the value of plot_t0 is           : 3.0
 At row:38, column:199,the value of plot_t1 is           : -0.2361809045226131
 At row:38, column:199,the value of plot_cost is         : 17.908115415555883 

 At row:39, column:0,the value of plot_t0 is           : -1.0
 At row:39, column:0,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:0,the value of plot_cost is         : 54.21715638493977 

 At row:39, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:39, column:1,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:1,the value of plot_cost is         : 53.951584447723164 

 At row:39, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:39, column:2,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:2,the value of plot_cost is         : 53.68682057090909 

 At row:39, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:39, column:3,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:3,the value of plot_cost is         : 53.422864754497525 

 At row:39, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:39, column:4,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:4,the value of plot_cost is         : 53.159716998488484 

 At row:39, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:39, column:5,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:5,the value of plot_cost is         : 52.89737730288196 

 At row:39, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:39, column:6,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:6,the value of plot_cost is         : 52.63584566767794 

 At row:39, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:39, column:7,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:7,the value of plot_cost is         : 52.37512209287644 

 At row:39, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:39, column:8,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:8,the value of plot_cost is         : 52.11520657847744 

 At row:39, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:39, column:9,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:9,the value of plot_cost is         : 51.85609912448098 

 At row:39, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:39, column:10,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:10,the value of plot_cost is         : 51.59779973088702 

 At row:39, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:39, column:11,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:11,the value of plot_cost is         : 51.340308397695566 

 At row:39, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:39, column:12,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:12,the value of plot_cost is         : 51.083625124906646 

 At row:39, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:39, column:13,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:13,the value of plot_cost is         : 50.82774991252024 

 At row:39, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:39, column:14,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:14,the value of plot_cost is         : 50.572682760536345 

 At row:39, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:39, column:15,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:15,the value of plot_cost is         : 50.31842366895496 

 At row:39, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:39, column:16,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:16,the value of plot_cost is         : 50.0649726377761 

 At row:39, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:39, column:17,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:17,the value of plot_cost is         : 49.81232966699975 

 At row:39, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:39, column:18,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:18,the value of plot_cost is         : 49.5604947566259 

 At row:39, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:39, column:19,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:19,the value of plot_cost is         : 49.30946790665458 

 At row:39, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:39, column:20,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:20,the value of plot_cost is         : 49.059249117085784 

 At row:39, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:39, column:21,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:21,the value of plot_cost is         : 48.80983838791949 

 At row:39, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:39, column:22,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:22,the value of plot_cost is         : 48.561235719155704 

 At row:39, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:39, column:23,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:23,the value of plot_cost is         : 48.31344111079445 

 At row:39, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:39, column:24,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:24,the value of plot_cost is         : 48.06645456283571 

 At row:39, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:39, column:25,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:25,the value of plot_cost is         : 47.82027607527948 

 At row:39, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:39, column:26,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:26,the value of plot_cost is         : 47.574905648125764 

 At row:39, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:39, column:27,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:27,the value of plot_cost is         : 47.33034328137457 

 At row:39, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:39, column:28,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:28,the value of plot_cost is         : 47.086588975025876 

 At row:39, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:39, column:29,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:29,the value of plot_cost is         : 46.843642729079704 

 At row:39, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:39, column:30,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:30,the value of plot_cost is         : 46.601504543536045 

 At row:39, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:39, column:31,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:31,the value of plot_cost is         : 46.360174418394905 

 At row:39, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:39, column:32,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:32,the value of plot_cost is         : 46.11965235365628 

 At row:39, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:39, column:33,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:33,the value of plot_cost is         : 45.87993834932017 

 At row:39, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:39, column:34,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:34,the value of plot_cost is         : 45.64103240538658 

 At row:39, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:39, column:35,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:35,the value of plot_cost is         : 45.40293452185551 

 At row:39, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:39, column:36,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:36,the value of plot_cost is         : 45.165644698726936 

 At row:39, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:39, column:37,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:37,the value of plot_cost is         : 44.929162936000886 

 At row:39, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:39, column:38,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:38,the value of plot_cost is         : 44.69348923367735 

 At row:39, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:39, column:39,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:39,the value of plot_cost is         : 44.45862359175633 

 At row:39, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:39, column:40,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:40,the value of plot_cost is         : 44.22456601023783 

 At row:39, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:39, column:41,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:41,the value of plot_cost is         : 43.991316489121836 

 At row:39, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:39, column:42,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:42,the value of plot_cost is         : 43.75887502840836 

 At row:39, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:39, column:43,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:43,the value of plot_cost is         : 43.52724162809741 

 At row:39, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:39, column:44,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:44,the value of plot_cost is         : 43.296416288188965 

 At row:39, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:39, column:45,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:45,the value of plot_cost is         : 43.06639900868303 

 At row:39, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:39, column:46,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:46,the value of plot_cost is         : 42.837189789579625 

 At row:39, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:39, column:47,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:47,the value of plot_cost is         : 42.60878863087873 

 At row:39, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:39, column:48,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:48,the value of plot_cost is         : 42.381195532580335 

 At row:39, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:39, column:49,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:49,the value of plot_cost is         : 42.15441049468446 

 At row:39, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:39, column:50,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:50,the value of plot_cost is         : 41.92843351719112 

 At row:39, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:39, column:51,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:51,the value of plot_cost is         : 41.70326460010028 

 At row:39, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:39, column:52,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:52,the value of plot_cost is         : 41.478903743411955 

 At row:39, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:39, column:53,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:53,the value of plot_cost is         : 41.255350947126146 

 At row:39, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:39, column:54,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:54,the value of plot_cost is         : 41.03260621124284 

 At row:39, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:39, column:55,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:55,the value of plot_cost is         : 40.81066953576208 

 At row:39, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:39, column:56,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:56,the value of plot_cost is         : 40.589540920683824 

 At row:39, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:39, column:57,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:57,the value of plot_cost is         : 40.369220366008065 

 At row:39, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:39, column:58,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:58,the value of plot_cost is         : 40.14970787173484 

 At row:39, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:39, column:59,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:59,the value of plot_cost is         : 39.93100343786411 

 At row:39, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:39, column:60,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:60,the value of plot_cost is         : 39.71310706439591 

 At row:39, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:39, column:61,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:61,the value of plot_cost is         : 39.496018751330226 

 At row:39, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:39, column:62,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:62,the value of plot_cost is         : 39.279738498667044 

 At row:39, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:39, column:63,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:63,the value of plot_cost is         : 39.0642663064064 

 At row:39, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:39, column:64,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:64,the value of plot_cost is         : 38.84960217454825 

 At row:39, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:39, column:65,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:65,the value of plot_cost is         : 38.63574610309263 

 At row:39, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:39, column:66,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:66,the value of plot_cost is         : 38.422698092039525 

 At row:39, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:39, column:67,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:67,the value of plot_cost is         : 38.210458141388905 

 At row:39, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:39, column:68,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:68,the value of plot_cost is         : 37.99902625114084 

 At row:39, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:39, column:69,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:69,the value of plot_cost is         : 37.78840242129527 

 At row:39, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:39, column:70,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:70,the value of plot_cost is         : 37.57858665185222 

 At row:39, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:39, column:71,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:71,the value of plot_cost is         : 37.36957894281168 

 At row:39, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:39, column:72,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:72,the value of plot_cost is         : 37.161379294173656 

 At row:39, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:39, column:73,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:73,the value of plot_cost is         : 36.953987705938154 

 At row:39, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:39, column:74,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:74,the value of plot_cost is         : 36.74740417810517 

 At row:39, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:39, column:75,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:75,the value of plot_cost is         : 36.54162871067469 

 At row:39, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:39, column:76,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:76,the value of plot_cost is         : 36.336661303646736 

 At row:39, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:39, column:77,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:77,the value of plot_cost is         : 36.132501957021276 

 At row:39, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:39, column:78,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:78,the value of plot_cost is         : 35.92915067079835 

 At row:39, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:39, column:79,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:79,the value of plot_cost is         : 35.72660744497793 

 At row:39, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:39, column:80,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:80,the value of plot_cost is         : 35.524872279560036 

 At row:39, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:39, column:81,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:81,the value of plot_cost is         : 35.32394517454465 

 At row:39, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:39, column:82,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:82,the value of plot_cost is         : 35.12382612993177 

 At row:39, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:39, column:83,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:83,the value of plot_cost is         : 34.924515145721415 

 At row:39, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:39, column:84,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:84,the value of plot_cost is         : 34.72601222191358 

 At row:39, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:39, column:85,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:85,the value of plot_cost is         : 34.528317358508254 

 At row:39, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:39, column:86,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:86,the value of plot_cost is         : 34.33143055550545 

 At row:39, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:39, column:87,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:87,the value of plot_cost is         : 34.13535181290515 

 At row:39, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:39, column:88,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:88,the value of plot_cost is         : 33.94008113070737 

 At row:39, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:39, column:89,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:89,the value of plot_cost is         : 33.74561850891211 

 At row:39, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:39, column:90,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:90,the value of plot_cost is         : 33.55196394751936 

 At row:39, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:39, column:91,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:91,the value of plot_cost is         : 33.359117446529126 

 At row:39, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:39, column:92,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:92,the value of plot_cost is         : 33.1670790059414 

 At row:39, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:39, column:93,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:93,the value of plot_cost is         : 32.97584862575619 

 At row:39, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:39, column:94,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:94,the value of plot_cost is         : 32.78542630597351 

 At row:39, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:39, column:95,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:95,the value of plot_cost is         : 32.59581204659333 

 At row:39, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:39, column:96,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:96,the value of plot_cost is         : 32.40700584761568 

 At row:39, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:39, column:97,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:97,the value of plot_cost is         : 32.219007709040525 

 At row:39, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:39, column:98,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:98,the value of plot_cost is         : 32.0318176308679 

 At row:39, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:39, column:99,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:99,the value of plot_cost is         : 31.845435613097788 

 At row:39, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:39, column:100,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:100,the value of plot_cost is         : 31.65986165573019 

 At row:39, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:39, column:101,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:101,the value of plot_cost is         : 31.475095758765104 

 At row:39, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:39, column:102,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:102,the value of plot_cost is         : 31.291137922202534 

 At row:39, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:39, column:103,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:103,the value of plot_cost is         : 31.10798814604248 

 At row:39, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:39, column:104,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:104,the value of plot_cost is         : 30.925646430284942 

 At row:39, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:39, column:105,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:105,the value of plot_cost is         : 30.74411277492992 

 At row:39, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:39, column:106,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:106,the value of plot_cost is         : 30.563387179977422 

 At row:39, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:39, column:107,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:107,the value of plot_cost is         : 30.383469645427414 

 At row:39, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:39, column:108,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:108,the value of plot_cost is         : 30.204360171279937 

 At row:39, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:39, column:109,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:109,the value of plot_cost is         : 30.02605875753498 

 At row:39, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:39, column:110,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:110,the value of plot_cost is         : 29.848565404192527 

 At row:39, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:39, column:111,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:111,the value of plot_cost is         : 29.671880111252598 

 At row:39, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:39, column:112,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:112,the value of plot_cost is         : 29.496002878715174 

 At row:39, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:39, column:113,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:113,the value of plot_cost is         : 29.320933706580277 

 At row:39, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:39, column:114,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:114,the value of plot_cost is         : 29.146672594847885 

 At row:39, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:39, column:115,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:115,the value of plot_cost is         : 28.97321954351802 

 At row:39, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:39, column:116,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:116,the value of plot_cost is         : 28.80057455259066 

 At row:39, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:39, column:117,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:117,the value of plot_cost is         : 28.628737622065817 

 At row:39, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:39, column:118,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:118,the value of plot_cost is         : 28.457708751943485 

 At row:39, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:39, column:119,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:119,the value of plot_cost is         : 28.287487942223674 

 At row:39, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:39, column:120,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:120,the value of plot_cost is         : 28.118075192906375 

 At row:39, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:39, column:121,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:121,the value of plot_cost is         : 27.949470503991595 

 At row:39, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:39, column:122,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:122,the value of plot_cost is         : 27.781673875479328 

 At row:39, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:39, column:123,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:123,the value of plot_cost is         : 27.61468530736958 

 At row:39, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:39, column:124,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:124,the value of plot_cost is         : 27.448504799662338 

 At row:39, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:39, column:125,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:125,the value of plot_cost is         : 27.28313235235762 

 At row:39, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:39, column:126,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:126,the value of plot_cost is         : 27.11856796545542 

 At row:39, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:39, column:127,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:127,the value of plot_cost is         : 26.954811638955718 

 At row:39, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:39, column:128,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:128,the value of plot_cost is         : 26.791863372858543 

 At row:39, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:39, column:129,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:129,the value of plot_cost is         : 26.62972316716388 

 At row:39, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:39, column:130,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:130,the value of plot_cost is         : 26.468391021871735 

 At row:39, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:39, column:131,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:131,the value of plot_cost is         : 26.30786693698211 

 At row:39, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:39, column:132,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:132,the value of plot_cost is         : 26.148150912494984 

 At row:39, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:39, column:133,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:133,the value of plot_cost is         : 25.989242948410386 

 At row:39, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:39, column:134,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:134,the value of plot_cost is         : 25.831143044728304 

 At row:39, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:39, column:135,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:135,the value of plot_cost is         : 25.67385120144873 

 At row:39, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:39, column:136,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:136,the value of plot_cost is         : 25.51736741857168 

 At row:39, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:39, column:137,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:137,the value of plot_cost is         : 25.361691696097132 

 At row:39, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:39, column:138,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:138,the value of plot_cost is         : 25.20682403402511 

 At row:39, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:39, column:139,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:139,the value of plot_cost is         : 25.0527644323556 

 At row:39, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:39, column:140,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:140,the value of plot_cost is         : 24.899512891088605 

 At row:39, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:39, column:141,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:141,the value of plot_cost is         : 24.747069410224128 

 At row:39, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:39, column:142,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:142,the value of plot_cost is         : 24.595433989762153 

 At row:39, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:39, column:143,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:143,the value of plot_cost is         : 24.444606629702708 

 At row:39, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:39, column:144,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:144,the value of plot_cost is         : 24.294587330045772 

 At row:39, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:39, column:145,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:145,the value of plot_cost is         : 24.145376090791352 

 At row:39, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:39, column:146,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:146,the value of plot_cost is         : 23.99697291193945 

 At row:39, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:39, column:147,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:147,the value of plot_cost is         : 23.849377793490056 

 At row:39, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:39, column:148,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:148,the value of plot_cost is         : 23.702590735443184 

 At row:39, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:39, column:149,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:149,the value of plot_cost is         : 23.55661173779882 

 At row:39, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:39, column:150,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:150,the value of plot_cost is         : 23.411440800556978 

 At row:39, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:39, column:151,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:151,the value of plot_cost is         : 23.267077923717647 

 At row:39, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:39, column:152,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:152,the value of plot_cost is         : 23.123523107280832 

 At row:39, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:39, column:153,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:153,the value of plot_cost is         : 22.980776351246533 

 At row:39, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:39, column:154,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:154,the value of plot_cost is         : 22.838837655614753 

 At row:39, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:39, column:155,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:155,the value of plot_cost is         : 22.697707020385486 

 At row:39, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:39, column:156,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:156,the value of plot_cost is         : 22.557384445558725 

 At row:39, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:39, column:157,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:157,the value of plot_cost is         : 22.417869931134486 

 At row:39, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:39, column:158,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:158,the value of plot_cost is         : 22.279163477112764 

 At row:39, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:39, column:159,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:159,the value of plot_cost is         : 22.141265083493558 

 At row:39, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:39, column:160,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:160,the value of plot_cost is         : 22.004174750276864 

 At row:39, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:39, column:161,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:161,the value of plot_cost is         : 21.867892477462682 

 At row:39, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:39, column:162,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:162,the value of plot_cost is         : 21.73241826505102 

 At row:39, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:39, column:163,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:163,the value of plot_cost is         : 21.597752113041874 

 At row:39, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:39, column:164,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:164,the value of plot_cost is         : 21.46389402143524 

 At row:39, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:39, column:165,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:165,the value of plot_cost is         : 21.33084399023112 

 At row:39, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:39, column:166,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:166,the value of plot_cost is         : 21.19860201942951 

 At row:39, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:39, column:167,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:167,the value of plot_cost is         : 21.067168109030433 

 At row:39, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:39, column:168,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:168,the value of plot_cost is         : 20.936542259033857 

 At row:39, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:39, column:169,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:169,the value of plot_cost is         : 20.8067244694398 

 At row:39, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:39, column:170,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:170,the value of plot_cost is         : 20.67771474024826 

 At row:39, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:39, column:171,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:171,the value of plot_cost is         : 20.549513071459227 

 At row:39, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:39, column:172,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:172,the value of plot_cost is         : 20.422119463072715 

 At row:39, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:39, column:173,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:173,the value of plot_cost is         : 20.295533915088715 

 At row:39, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:39, column:174,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:174,the value of plot_cost is         : 20.169756427507238 

 At row:39, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:39, column:175,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:175,the value of plot_cost is         : 20.04478700032827 

 At row:39, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:39, column:176,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:176,the value of plot_cost is         : 19.92062563355181 

 At row:39, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:39, column:177,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:177,the value of plot_cost is         : 19.79727232717788 

 At row:39, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:39, column:178,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:178,the value of plot_cost is         : 19.67472708120646 

 At row:39, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:39, column:179,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:179,the value of plot_cost is         : 19.552989895637552 

 At row:39, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:39, column:180,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:180,the value of plot_cost is         : 19.432060770471164 

 At row:39, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:39, column:181,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:181,the value of plot_cost is         : 19.311939705707278 

 At row:39, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:39, column:182,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:182,the value of plot_cost is         : 19.192626701345922 

 At row:39, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:39, column:183,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:183,the value of plot_cost is         : 19.074121757387076 

 At row:39, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:39, column:184,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:184,the value of plot_cost is         : 18.956424873830745 

 At row:39, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:39, column:185,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:185,the value of plot_cost is         : 18.839536050676926 

 At row:39, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:39, column:186,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:186,the value of plot_cost is         : 18.723455287925624 

 At row:39, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:39, column:187,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:187,the value of plot_cost is         : 18.608182585576838 

 At row:39, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:39, column:188,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:188,the value of plot_cost is         : 18.493717943630568 

 At row:39, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:39, column:189,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:189,the value of plot_cost is         : 18.38006136208681 

 At row:39, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:39, column:190,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:190,the value of plot_cost is         : 18.26721284094557 

 At row:39, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:39, column:191,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:191,the value of plot_cost is         : 18.155172380206842 

 At row:39, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:39, column:192,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:192,the value of plot_cost is         : 18.043939979870636 

 At row:39, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:39, column:193,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:193,the value of plot_cost is         : 17.93351563993694 

 At row:39, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:39, column:194,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:194,the value of plot_cost is         : 17.82389936040576 

 At row:39, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:39, column:195,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:195,the value of plot_cost is         : 17.71509114127709 

 At row:39, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:39, column:196,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:196,the value of plot_cost is         : 17.60709098255094 

 At row:39, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:39, column:197,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:197,the value of plot_cost is         : 17.499898884227303 

 At row:39, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:39, column:198,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:198,the value of plot_cost is         : 17.393514846306186 

 At row:39, column:199,the value of plot_t0 is           : 3.0
 At row:39, column:199,the value of plot_t1 is           : -0.2160804020100502
 At row:39, column:199,the value of plot_cost is         : 17.28793886878758 

 At row:40, column:0,the value of plot_t0 is           : -1.0
 At row:40, column:0,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:0,the value of plot_cost is         : 53.07661202639182 

 At row:40, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:40, column:1,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:1,the value of plot_cost is         : 52.81371823222357 

 At row:40, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:40, column:2,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:2,the value of plot_cost is         : 52.55163249845782 

 At row:40, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:40, column:3,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:3,the value of plot_cost is         : 52.2903548250946 

 At row:40, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:40, column:4,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:4,the value of plot_cost is         : 52.02988521213389 

 At row:40, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:40, column:5,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:5,the value of plot_cost is         : 51.77022365957568 

 At row:40, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:40, column:6,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:6,the value of plot_cost is         : 51.51137016742 

 At row:40, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:40, column:7,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:7,the value of plot_cost is         : 51.253324735666844 

 At row:40, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:40, column:8,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:8,the value of plot_cost is         : 50.99608736431619 

 At row:40, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:40, column:9,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:9,the value of plot_cost is         : 50.73965805336805 

 At row:40, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:40, column:10,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:10,the value of plot_cost is         : 50.48403680282244 

 At row:40, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:40, column:11,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:11,the value of plot_cost is         : 50.229223612679334 

 At row:40, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:40, column:12,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:12,the value of plot_cost is         : 49.975218482938736 

 At row:40, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:40, column:13,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:13,the value of plot_cost is         : 49.722021413600665 

 At row:40, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:40, column:14,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:14,the value of plot_cost is         : 49.46963240466509 

 At row:40, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:40, column:15,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:15,the value of plot_cost is         : 49.21805145613206 

 At row:40, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:40, column:16,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:16,the value of plot_cost is         : 48.967278568001525 

 At row:40, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:40, column:17,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:17,the value of plot_cost is         : 48.71731374027351 

 At row:40, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:40, column:18,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:18,the value of plot_cost is         : 48.46815697294801 

 At row:40, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:40, column:19,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:19,the value of plot_cost is         : 48.21980826602502 

 At row:40, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:40, column:20,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:20,the value of plot_cost is         : 47.97226761950456 

 At row:40, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:40, column:21,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:21,the value of plot_cost is         : 47.72553503338659 

 At row:40, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:40, column:22,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:22,the value of plot_cost is         : 47.479610507671154 

 At row:40, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:40, column:23,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:23,the value of plot_cost is         : 47.234494042358236 

 At row:40, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:40, column:24,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:24,the value of plot_cost is         : 46.99018563744782 

 At row:40, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:40, column:25,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:25,the value of plot_cost is         : 46.74668529293993 

 At row:40, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:40, column:26,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:26,the value of plot_cost is         : 46.50399300883455 

 At row:40, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:40, column:27,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:27,the value of plot_cost is         : 46.26210878513168 

 At row:40, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:40, column:28,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:28,the value of plot_cost is         : 46.02103262183133 

 At row:40, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:40, column:29,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:29,the value of plot_cost is         : 45.7807645189335 

 At row:40, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:40, column:30,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:30,the value of plot_cost is         : 45.54130447643818 

 At row:40, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:40, column:31,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:31,the value of plot_cost is         : 45.30265249434537 

 At row:40, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:40, column:32,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:32,the value of plot_cost is         : 45.06480857265509 

 At row:40, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:40, column:33,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:33,the value of plot_cost is         : 44.82777271136731 

 At row:40, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:40, column:34,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:34,the value of plot_cost is         : 44.59154491048205 

 At row:40, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:40, column:35,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:35,the value of plot_cost is         : 44.35612516999931 

 At row:40, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:40, column:36,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:36,the value of plot_cost is         : 44.121513489919074 

 At row:40, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:40, column:37,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:37,the value of plot_cost is         : 43.887709870241366 

 At row:40, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:40, column:38,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:38,the value of plot_cost is         : 43.65471431096617 

 At row:40, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:40, column:39,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:39,the value of plot_cost is         : 43.42252681209348 

 At row:40, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:40, column:40,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:40,the value of plot_cost is         : 43.19114737362332 

 At row:40, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:40, column:41,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:41,the value of plot_cost is         : 42.96057599555566 

 At row:40, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:40, column:42,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:42,the value of plot_cost is         : 42.730812677890526 

 At row:40, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:40, column:43,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:43,the value of plot_cost is         : 42.50185742062791 

 At row:40, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:40, column:44,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:44,the value of plot_cost is         : 42.273710223767786 

 At row:40, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:40, column:45,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:45,the value of plot_cost is         : 42.0463710873102 

 At row:40, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:40, column:46,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:46,the value of plot_cost is         : 41.819840011255124 

 At row:40, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:40, column:47,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:47,the value of plot_cost is         : 41.594116995602555 

 At row:40, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:40, column:48,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:48,the value of plot_cost is         : 41.36920204035251 

 At row:40, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:40, column:49,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:49,the value of plot_cost is         : 41.145095145504975 

 At row:40, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:40, column:50,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:50,the value of plot_cost is         : 40.921796311059964 

 At row:40, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:40, column:51,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:51,the value of plot_cost is         : 40.69930553701746 

 At row:40, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:40, column:52,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:52,the value of plot_cost is         : 40.477622823377466 

 At row:40, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:40, column:53,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:53,the value of plot_cost is         : 40.25674817014 

 At row:40, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:40, column:54,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:54,the value of plot_cost is         : 40.036681577305046 

 At row:40, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:40, column:55,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:55,the value of plot_cost is         : 39.81742304487259 

 At row:40, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:40, column:56,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:56,the value of plot_cost is         : 39.598972572842676 

 At row:40, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:40, column:57,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:57,the value of plot_cost is         : 39.38133016121526 

 At row:40, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:40, column:58,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:58,the value of plot_cost is         : 39.16449580999036 

 At row:40, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:40, column:59,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:59,the value of plot_cost is         : 38.948469519167986 

 At row:40, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:40, column:60,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:60,the value of plot_cost is         : 38.73325128874811 

 At row:40, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:40, column:61,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:61,the value of plot_cost is         : 38.51884111873076 

 At row:40, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:40, column:62,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:62,the value of plot_cost is         : 38.30523900911592 

 At row:40, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:40, column:63,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:63,the value of plot_cost is         : 38.09244495990361 

 At row:40, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:40, column:64,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:64,the value of plot_cost is         : 37.8804589710938 

 At row:40, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:40, column:65,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:65,the value of plot_cost is         : 37.6692810426865 

 At row:40, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:40, column:66,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:66,the value of plot_cost is         : 37.45891117468173 

 At row:40, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:40, column:67,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:67,the value of plot_cost is         : 37.24934936707947 

 At row:40, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:40, column:68,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:68,the value of plot_cost is         : 37.040595619879724 

 At row:40, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:40, column:69,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:69,the value of plot_cost is         : 36.832649933082486 

 At row:40, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:40, column:70,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:70,the value of plot_cost is         : 36.625512306687774 

 At row:40, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:40, column:71,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:71,the value of plot_cost is         : 36.41918274069557 

 At row:40, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:40, column:72,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:72,the value of plot_cost is         : 36.21366123510589 

 At row:40, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:40, column:73,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:73,the value of plot_cost is         : 36.00894778991872 

 At row:40, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:40, column:74,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:74,the value of plot_cost is         : 35.80504240513407 

 At row:40, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:40, column:75,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:75,the value of plot_cost is         : 35.601945080751925 

 At row:40, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:40, column:76,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:76,the value of plot_cost is         : 35.399655816772295 

 At row:40, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:40, column:77,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:77,the value of plot_cost is         : 35.19817461319519 

 At row:40, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:40, column:78,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:78,the value of plot_cost is         : 34.99750147002059 

 At row:40, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:40, column:79,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:79,the value of plot_cost is         : 34.79763638724851 

 At row:40, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:40, column:80,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:80,the value of plot_cost is         : 34.59857936487895 

 At row:40, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:40, column:81,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:81,the value of plot_cost is         : 34.4003304029119 

 At row:40, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:40, column:82,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:82,the value of plot_cost is         : 34.202889501347364 

 At row:40, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:40, column:83,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:83,the value of plot_cost is         : 34.00625666018534 

 At row:40, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:40, column:84,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:84,the value of plot_cost is         : 33.81043187942584 

 At row:40, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:40, column:85,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:85,the value of plot_cost is         : 33.615415159068846 

 At row:40, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:40, column:86,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:86,the value of plot_cost is         : 33.421206499114376 

 At row:40, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:40, column:87,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:87,the value of plot_cost is         : 33.22780589956241 

 At row:40, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:40, column:88,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:88,the value of plot_cost is         : 33.03521336041297 

 At row:40, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:40, column:89,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:89,the value of plot_cost is         : 32.84342888166604 

 At row:40, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:40, column:90,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:90,the value of plot_cost is         : 32.65245246332163 

 At row:40, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:40, column:91,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:91,the value of plot_cost is         : 32.46228410537972 

 At row:40, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:40, column:92,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:92,the value of plot_cost is         : 32.27292380784035 

 At row:40, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:40, column:93,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:93,the value of plot_cost is         : 32.08437157070348 

 At row:40, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:40, column:94,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:94,the value of plot_cost is         : 31.896627393969126 

 At row:40, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:40, column:95,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:95,the value of plot_cost is         : 31.70969127763728 

 At row:40, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:40, column:96,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:96,the value of plot_cost is         : 31.52356322170796 

 At row:40, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:40, column:97,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:97,the value of plot_cost is         : 31.33824322618115 

 At row:40, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:40, column:98,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:98,the value of plot_cost is         : 31.15373129105686 

 At row:40, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:40, column:99,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:99,the value of plot_cost is         : 30.970027416335085 

 At row:40, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:40, column:100,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:100,the value of plot_cost is         : 30.787131602015823 

 At row:40, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:40, column:101,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:101,the value of plot_cost is         : 30.60504384809907 

 At row:40, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:40, column:102,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:102,the value of plot_cost is         : 30.423764154584838 

 At row:40, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:40, column:103,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:103,the value of plot_cost is         : 30.243292521473123 

 At row:40, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:40, column:104,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:104,the value of plot_cost is         : 30.063628948763913 

 At row:40, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:40, column:105,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:105,the value of plot_cost is         : 29.88477343645723 

 At row:40, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:40, column:106,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:106,the value of plot_cost is         : 29.706725984553053 

 At row:40, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:40, column:107,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:107,the value of plot_cost is         : 29.529486593051402 

 At row:40, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:40, column:108,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:108,the value of plot_cost is         : 29.353055261952257 

 At row:40, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:40, column:109,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:109,the value of plot_cost is         : 29.17743199125563 

 At row:40, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:40, column:110,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:110,the value of plot_cost is         : 29.00261678096151 

 At row:40, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:40, column:111,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:111,the value of plot_cost is         : 28.828609631069913 

 At row:40, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:40, column:112,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:112,the value of plot_cost is         : 28.655410541580835 

 At row:40, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:40, column:113,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:113,the value of plot_cost is         : 28.48301951249427 

 At row:40, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:40, column:114,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:114,the value of plot_cost is         : 28.311436543810217 

 At row:40, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:40, column:115,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:115,the value of plot_cost is         : 28.140661635528676 

 At row:40, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:40, column:116,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:116,the value of plot_cost is         : 27.97069478764966 

 At row:40, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:40, column:117,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:117,the value of plot_cost is         : 27.80153600017315 

 At row:40, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:40, column:118,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:118,the value of plot_cost is         : 27.633185273099162 

 At row:40, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:40, column:119,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:119,the value of plot_cost is         : 27.465642606427686 

 At row:40, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:40, column:120,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:120,the value of plot_cost is         : 27.29890800015872 

 At row:40, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:40, column:121,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:121,the value of plot_cost is         : 27.132981454292274 

 At row:40, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:40, column:122,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:122,the value of plot_cost is         : 26.967862968828346 

 At row:40, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:40, column:123,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:123,the value of plot_cost is         : 26.803552543766934 

 At row:40, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:40, column:124,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:124,the value of plot_cost is         : 26.640050179108023 

 At row:40, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:40, column:125,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:125,the value of plot_cost is         : 26.47735587485164 

 At row:40, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:40, column:126,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:126,the value of plot_cost is         : 26.315469630997775 

 At row:40, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:40, column:127,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:127,the value of plot_cost is         : 26.154391447546413 

 At row:40, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:40, column:128,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:128,the value of plot_cost is         : 25.994121324497574 

 At row:40, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:40, column:129,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:129,the value of plot_cost is         : 25.83465926185125 

 At row:40, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:40, column:130,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:130,the value of plot_cost is         : 25.676005259607436 

 At row:40, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:40, column:131,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:131,the value of plot_cost is         : 25.518159317766145 

 At row:40, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:40, column:132,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:132,the value of plot_cost is         : 25.36112143632736 

 At row:40, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:40, column:133,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:133,the value of plot_cost is         : 25.204891615291096 

 At row:40, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:40, column:134,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:134,the value of plot_cost is         : 25.049469854657342 

 At row:40, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:40, column:135,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:135,the value of plot_cost is         : 24.894856154426108 

 At row:40, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:40, column:136,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:136,the value of plot_cost is         : 24.741050514597394 

 At row:40, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:40, column:137,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:137,the value of plot_cost is         : 24.588052935171184 

 At row:40, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:40, column:138,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:138,the value of plot_cost is         : 24.4358634161475 

 At row:40, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:40, column:139,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:139,the value of plot_cost is         : 24.28448195752632 

 At row:40, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:40, column:140,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:140,the value of plot_cost is         : 24.133908559307663 

 At row:40, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:40, column:141,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:141,the value of plot_cost is         : 23.984143221491518 

 At row:40, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:40, column:142,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:142,the value of plot_cost is         : 23.835185944077885 

 At row:40, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:40, column:143,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:143,the value of plot_cost is         : 23.687036727066776 

 At row:40, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:40, column:144,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:144,the value of plot_cost is         : 23.539695570458168 

 At row:40, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:40, column:145,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:145,the value of plot_cost is         : 23.39316247425209 

 At row:40, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:40, column:146,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:146,the value of plot_cost is         : 23.24743743844852 

 At row:40, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:40, column:147,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:147,the value of plot_cost is         : 23.102520463047465 

 At row:40, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:40, column:148,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:148,the value of plot_cost is         : 22.95841154804893 

 At row:40, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:40, column:149,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:149,the value of plot_cost is         : 22.815110693452908 

 At row:40, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:40, column:150,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:150,the value of plot_cost is         : 22.672617899259397 

 At row:40, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:40, column:151,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:151,the value of plot_cost is         : 22.530933165468397 

 At row:40, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:40, column:152,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:152,the value of plot_cost is         : 22.39005649207992 

 At row:40, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:40, column:153,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:153,the value of plot_cost is         : 22.24998787909396 

 At row:40, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:40, column:154,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:154,the value of plot_cost is         : 22.110727326510506 

 At row:40, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:40, column:155,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:155,the value of plot_cost is         : 21.97227483432958 

 At row:40, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:40, column:156,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:156,the value of plot_cost is         : 21.834630402551156 

 At row:40, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:40, column:157,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:157,the value of plot_cost is         : 21.697794031175256 

 At row:40, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:40, column:158,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:158,the value of plot_cost is         : 21.561765720201873 

 At row:40, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:40, column:159,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:159,the value of plot_cost is         : 21.426545469630994 

 At row:40, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:40, column:160,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:160,the value of plot_cost is         : 21.292133279462636 

 At row:40, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:40, column:161,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:161,the value of plot_cost is         : 21.158529149696793 

 At row:40, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:40, column:162,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:162,the value of plot_cost is         : 21.025733080333467 

 At row:40, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:40, column:163,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:163,the value of plot_cost is         : 20.893745071372653 

 At row:40, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:40, column:164,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:164,the value of plot_cost is         : 20.76256512281435 

 At row:40, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:40, column:165,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:165,the value of plot_cost is         : 20.63219323465857 

 At row:40, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:40, column:166,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:166,the value of plot_cost is         : 20.502629406905303 

 At row:40, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:40, column:167,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:167,the value of plot_cost is         : 20.373873639554553 

 At row:40, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:40, column:168,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:168,the value of plot_cost is         : 20.245925932606323 

 At row:40, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:40, column:169,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:169,the value of plot_cost is         : 20.118786286060594 

 At row:40, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:40, column:170,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:170,the value of plot_cost is         : 19.992454699917385 

 At row:40, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:40, column:171,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:171,the value of plot_cost is         : 19.866931174176695 

 At row:40, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:40, column:172,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:172,the value of plot_cost is         : 19.742215708838515 

 At row:40, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:40, column:173,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:173,the value of plot_cost is         : 19.61830830390286 

 At row:40, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:40, column:174,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:174,the value of plot_cost is         : 19.49520895936971 

 At row:40, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:40, column:175,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:175,the value of plot_cost is         : 19.372917675239076 

 At row:40, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:40, column:176,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:176,the value of plot_cost is         : 19.25143445151096 

 At row:40, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:40, column:177,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:177,the value of plot_cost is         : 19.13075928818536 

 At row:40, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:40, column:178,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:178,the value of plot_cost is         : 19.010892185262275 

 At row:40, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:40, column:179,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:179,the value of plot_cost is         : 18.8918331427417 

 At row:40, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:40, column:180,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:180,the value of plot_cost is         : 18.773582160623647 

 At row:40, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:40, column:181,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:181,the value of plot_cost is         : 18.6561392389081 

 At row:40, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:40, column:182,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:182,the value of plot_cost is         : 18.53950437759508 

 At row:40, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:40, column:183,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:183,the value of plot_cost is         : 18.423677576684568 

 At row:40, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:40, column:184,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:184,the value of plot_cost is         : 18.30865883617657 

 At row:40, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:40, column:185,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:185,the value of plot_cost is         : 18.19444815607109 

 At row:40, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:40, column:186,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:186,the value of plot_cost is         : 18.081045536368126 

 At row:40, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:40, column:187,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:187,the value of plot_cost is         : 17.968450977067675 

 At row:40, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:40, column:188,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:188,the value of plot_cost is         : 17.85666447816974 

 At row:40, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:40, column:189,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:189,the value of plot_cost is         : 17.745686039674318 

 At row:40, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:40, column:190,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:190,the value of plot_cost is         : 17.63551566158141 

 At row:40, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:40, column:191,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:191,the value of plot_cost is         : 17.526153343891025 

 At row:40, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:40, column:192,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:192,the value of plot_cost is         : 17.417599086603147 

 At row:40, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:40, column:193,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:193,the value of plot_cost is         : 17.309852889717792 

 At row:40, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:40, column:194,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:194,the value of plot_cost is         : 17.202914753234946 

 At row:40, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:40, column:195,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:195,the value of plot_cost is         : 17.096784677154613 

 At row:40, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:40, column:196,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:196,the value of plot_cost is         : 16.9914626614768 

 At row:40, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:40, column:197,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:197,the value of plot_cost is         : 16.886948706201498 

 At row:40, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:40, column:198,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:198,the value of plot_cost is         : 16.78324281132872 

 At row:40, column:199,the value of plot_t0 is           : 3.0
 At row:40, column:199,the value of plot_t1 is           : -0.1959798994974874
 At row:40, column:199,the value of plot_cost is         : 16.680344976858443 

 At row:41, column:0,the value of plot_t0 is           : -1.0
 At row:41, column:0,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:0,the value of plot_cost is         : 51.94865032268304 

 At row:41, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:41, column:1,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:1,the value of plot_cost is         : 51.68843467156313 

 At row:41, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:41, column:2,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:2,the value of plot_cost is         : 51.429027080845714 

 At row:41, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:41, column:3,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:3,the value of plot_cost is         : 51.170427550530825 

 At row:41, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:41, column:4,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:4,the value of plot_cost is         : 50.91263608061845 

 At row:41, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:41, column:5,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:5,the value of plot_cost is         : 50.65565267110859 

 At row:41, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:41, column:6,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:6,the value of plot_cost is         : 50.399477322001246 

 At row:41, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:41, column:7,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:7,the value of plot_cost is         : 50.144110033296414 

 At row:41, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:41, column:8,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:8,the value of plot_cost is         : 49.889550804994094 

 At row:41, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:41, column:9,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:9,the value of plot_cost is         : 49.635799637094294 

 At row:41, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:41, column:10,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:10,the value of plot_cost is         : 49.38285652959701 

 At row:41, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:41, column:11,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:11,the value of plot_cost is         : 49.130721482502246 

 At row:41, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:41, column:12,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:12,the value of plot_cost is         : 48.87939449580999 

 At row:41, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:41, column:13,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:13,the value of plot_cost is         : 48.62887556952025 

 At row:41, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:41, column:14,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:14,the value of plot_cost is         : 48.37916470363302 

 At row:41, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:41, column:15,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:15,the value of plot_cost is         : 48.130261898148305 

 At row:41, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:41, column:16,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:16,the value of plot_cost is         : 47.88216715306612 

 At row:41, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:41, column:17,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:17,the value of plot_cost is         : 47.63488046838644 

 At row:41, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:41, column:18,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:18,the value of plot_cost is         : 47.38840184410927 

 At row:41, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:41, column:19,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:19,the value of plot_cost is         : 47.14273128023462 

 At row:41, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:41, column:20,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:20,the value of plot_cost is         : 46.89786877676249 

 At row:41, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:41, column:21,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:21,the value of plot_cost is         : 46.653814333692864 

 At row:41, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:41, column:22,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:22,the value of plot_cost is         : 46.41056795102577 

 At row:41, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:41, column:23,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:23,the value of plot_cost is         : 46.16812962876117 

 At row:41, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:41, column:24,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:24,the value of plot_cost is         : 45.926499366899094 

 At row:41, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:41, column:25,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:25,the value of plot_cost is         : 45.68567716543954 

 At row:41, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:41, column:26,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:26,the value of plot_cost is         : 45.445663024382505 

 At row:41, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:41, column:27,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:27,the value of plot_cost is         : 45.206456943727964 

 At row:41, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:41, column:28,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:28,the value of plot_cost is         : 44.96805892347596 

 At row:41, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:41, column:29,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:29,the value of plot_cost is         : 44.73046896362645 

 At row:41, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:41, column:30,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:30,the value of plot_cost is         : 44.493687064179475 

 At row:41, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:41, column:31,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:31,the value of plot_cost is         : 44.257713225135 

 At row:41, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:41, column:32,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:32,the value of plot_cost is         : 44.02254744649305 

 At row:41, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:41, column:33,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:33,the value of plot_cost is         : 43.78818972825361 

 At row:41, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:41, column:34,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:34,the value of plot_cost is         : 43.55464007041669 

 At row:41, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:41, column:35,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:35,the value of plot_cost is         : 43.32189847298228 

 At row:41, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:41, column:36,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:36,the value of plot_cost is         : 43.089964935950384 

 At row:41, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:41, column:37,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:37,the value of plot_cost is         : 42.85883945932101 

 At row:41, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:41, column:38,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:38,the value of plot_cost is         : 42.628522043094144 

 At row:41, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:41, column:39,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:39,the value of plot_cost is         : 42.39901268726979 

 At row:41, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:41, column:40,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:40,the value of plot_cost is         : 42.17031139184797 

 At row:41, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:41, column:41,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:41,the value of plot_cost is         : 41.94241815682865 

 At row:41, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:41, column:42,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:42,the value of plot_cost is         : 41.71533298221184 

 At row:41, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:41, column:43,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:43,the value of plot_cost is         : 41.48905586799756 

 At row:41, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:41, column:44,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:44,the value of plot_cost is         : 41.263586814185786 

 At row:41, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:41, column:45,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:45,the value of plot_cost is         : 41.03892582077653 

 At row:41, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:41, column:46,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:46,the value of plot_cost is         : 40.81507288776978 

 At row:41, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:41, column:47,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:47,the value of plot_cost is         : 40.59202801516556 

 At row:41, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:41, column:48,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:48,the value of plot_cost is         : 40.369791202963846 

 At row:41, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:41, column:49,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:49,the value of plot_cost is         : 40.148362451164644 

 At row:41, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:41, column:50,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:50,the value of plot_cost is         : 39.92774175976797 

 At row:41, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:41, column:51,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:51,the value of plot_cost is         : 39.7079291287738 

 At row:41, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:41, column:52,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:52,the value of plot_cost is         : 39.48892455818215 

 At row:41, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:41, column:53,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:53,the value of plot_cost is         : 39.27072804799301 

 At row:41, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:41, column:54,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:54,the value of plot_cost is         : 39.05333959820639 

 At row:41, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:41, column:55,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:55,the value of plot_cost is         : 38.836759208822286 

 At row:41, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:41, column:56,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:56,the value of plot_cost is         : 38.6209868798407 

 At row:41, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:41, column:57,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:57,the value of plot_cost is         : 38.40602261126162 

 At row:41, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:41, column:58,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:58,the value of plot_cost is         : 38.19186640308505 

 At row:41, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:41, column:59,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:59,the value of plot_cost is         : 37.978518255311 

 At row:41, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:41, column:60,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:60,the value of plot_cost is         : 37.76597816793948 

 At row:41, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:41, column:61,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:61,the value of plot_cost is         : 37.55424614097047 

 At row:41, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:41, column:62,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:62,the value of plot_cost is         : 37.343322174403966 

 At row:41, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:41, column:63,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:63,the value of plot_cost is         : 37.13320626823998 

 At row:41, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:41, column:64,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:64,the value of plot_cost is         : 36.9238984224785 

 At row:41, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:41, column:65,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:65,the value of plot_cost is         : 36.71539863711954 

 At row:41, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:41, column:66,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:66,the value of plot_cost is         : 36.50770691216311 

 At row:41, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:41, column:67,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:67,the value of plot_cost is         : 36.30082324760918 

 At row:41, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:41, column:68,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:68,the value of plot_cost is         : 36.09474764345777 

 At row:41, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:41, column:69,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:69,the value of plot_cost is         : 35.88948009970887 

 At row:41, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:41, column:70,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:70,the value of plot_cost is         : 35.68502061636249 

 At row:41, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:41, column:71,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:71,the value of plot_cost is         : 35.48136919341864 

 At row:41, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:41, column:72,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:72,the value of plot_cost is         : 35.27852583087728 

 At row:41, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:41, column:73,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:73,the value of plot_cost is         : 35.07649052873845 

 At row:41, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:41, column:74,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:74,the value of plot_cost is         : 34.87526328700213 

 At row:41, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:41, column:75,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:75,the value of plot_cost is         : 34.67484410566832 

 At row:41, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:41, column:76,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:76,the value of plot_cost is         : 34.47523298473704 

 At row:41, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:41, column:77,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:77,the value of plot_cost is         : 34.27642992420825 

 At row:41, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:41, column:78,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:78,the value of plot_cost is         : 34.078434924082 

 At row:41, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:41, column:79,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:79,the value of plot_cost is         : 33.881247984358254 

 At row:41, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:41, column:80,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:80,the value of plot_cost is         : 33.68486910503702 

 At row:41, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:41, column:81,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:81,the value of plot_cost is         : 33.48929828611831 

 At row:41, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:41, column:82,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:82,the value of plot_cost is         : 33.294535527602115 

 At row:41, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:41, column:83,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:83,the value of plot_cost is         : 33.10058082948843 

 At row:41, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:41, column:84,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:84,the value of plot_cost is         : 32.90743419177726 

 At row:41, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:41, column:85,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:85,the value of plot_cost is         : 32.7150956144686 

 At row:41, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:41, column:86,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:86,the value of plot_cost is         : 32.523565097562475 

 At row:41, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:41, column:87,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:87,the value of plot_cost is         : 32.33284264105884 

 At row:41, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:41, column:88,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:88,the value of plot_cost is         : 32.14292824495774 

 At row:41, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:41, column:89,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:89,the value of plot_cost is         : 31.953821909259137 

 At row:41, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:41, column:90,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:90,the value of plot_cost is         : 31.765523633963063 

 At row:41, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:41, column:91,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:91,the value of plot_cost is         : 31.578033419069502 

 At row:41, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:41, column:92,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:92,the value of plot_cost is         : 31.391351264578457 

 At row:41, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:41, column:93,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:93,the value of plot_cost is         : 31.205477170489917 

 At row:41, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:41, column:94,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:94,the value of plot_cost is         : 31.020411136803904 

 At row:41, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:41, column:95,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:95,the value of plot_cost is         : 30.836153163520397 

 At row:41, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:41, column:96,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:96,the value of plot_cost is         : 30.652703250639416 

 At row:41, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:41, column:97,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:97,the value of plot_cost is         : 30.470061398160937 

 At row:41, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:41, column:98,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:98,the value of plot_cost is         : 30.28822760608498 

 At row:41, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:41, column:99,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:99,the value of plot_cost is         : 30.107201874411533 

 At row:41, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:41, column:100,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:100,the value of plot_cost is         : 29.926984203140606 

 At row:41, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:41, column:101,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:101,the value of plot_cost is         : 29.7475745922722 

 At row:41, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:41, column:102,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:102,the value of plot_cost is         : 29.568973041806302 

 At row:41, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:41, column:103,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:103,the value of plot_cost is         : 29.39117955174292 

 At row:41, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:41, column:104,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:104,the value of plot_cost is         : 29.21419412208205 

 At row:41, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:41, column:105,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:105,the value of plot_cost is         : 29.0380167528237 

 At row:41, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:41, column:106,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:106,the value of plot_cost is         : 28.862647443967866 

 At row:41, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:41, column:107,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:107,the value of plot_cost is         : 28.688086195514536 

 At row:41, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:41, column:108,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:108,the value of plot_cost is         : 28.514333007463733 

 At row:41, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:41, column:109,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:109,the value of plot_cost is         : 28.341387879815443 

 At row:41, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:41, column:110,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:110,the value of plot_cost is         : 28.169250812569665 

 At row:41, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:41, column:111,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:111,the value of plot_cost is         : 27.99792180572641 

 At row:41, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:41, column:112,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:112,the value of plot_cost is         : 27.82740085928566 

 At row:41, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:41, column:113,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:113,the value of plot_cost is         : 27.657687973247423 

 At row:41, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:41, column:114,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:114,the value of plot_cost is         : 27.488783147611706 

 At row:41, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:41, column:115,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:115,the value of plot_cost is         : 27.320686382378504 

 At row:41, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:41, column:116,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:116,the value of plot_cost is         : 27.153397677547826 

 At row:41, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:41, column:117,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:117,the value of plot_cost is         : 26.986917033119653 

 At row:41, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:41, column:118,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:118,the value of plot_cost is         : 26.821244449093996 

 At row:41, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:41, column:119,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:119,the value of plot_cost is         : 26.656379925470855 

 At row:41, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:41, column:120,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:120,the value of plot_cost is         : 26.492323462250226 

 At row:41, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:41, column:121,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:121,the value of plot_cost is         : 26.32907505943212 

 At row:41, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:41, column:122,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:122,the value of plot_cost is         : 26.16663471701652 

 At row:41, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:41, column:123,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:123,the value of plot_cost is         : 26.00500243500344 

 At row:41, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:41, column:124,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:124,the value of plot_cost is         : 25.844178213392876 

 At row:41, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:41, column:125,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:125,the value of plot_cost is         : 25.684162052184824 

 At row:41, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:41, column:126,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:126,the value of plot_cost is         : 25.524953951379292 

 At row:41, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:41, column:127,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:127,the value of plot_cost is         : 25.36655391097627 

 At row:41, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:41, column:128,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:128,the value of plot_cost is         : 25.208961930975764 

 At row:41, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:41, column:129,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:129,the value of plot_cost is         : 25.052178011377777 

 At row:41, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:41, column:130,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:130,the value of plot_cost is         : 24.8962021521823 

 At row:41, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:41, column:131,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:131,the value of plot_cost is         : 24.74103435338934 

 At row:41, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:41, column:132,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:132,the value of plot_cost is         : 24.5866746149989 

 At row:41, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:41, column:133,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:133,the value of plot_cost is         : 24.433122937010964 

 At row:41, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:41, column:134,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:134,the value of plot_cost is         : 24.280379319425553 

 At row:41, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:41, column:135,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:135,the value of plot_cost is         : 24.128443762242654 

 At row:41, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:41, column:136,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:136,the value of plot_cost is         : 23.97731626546227 

 At row:41, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:41, column:137,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:137,the value of plot_cost is         : 23.826996829084397 

 At row:41, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:41, column:138,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:138,the value of plot_cost is         : 23.677485453109043 

 At row:41, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:41, column:139,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:139,the value of plot_cost is         : 23.528782137536204 

 At row:41, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:41, column:140,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:140,the value of plot_cost is         : 23.380886882365882 

 At row:41, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:41, column:141,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:141,the value of plot_cost is         : 23.233799687598076 

 At row:41, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:41, column:142,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:142,the value of plot_cost is         : 23.087520553232782 

 At row:41, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:41, column:143,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:143,the value of plot_cost is         : 22.94204947927 

 At row:41, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:41, column:144,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:144,the value of plot_cost is         : 22.797386465709735 

 At row:41, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:41, column:145,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:145,the value of plot_cost is         : 22.65353151255199 

 At row:41, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:41, column:146,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:146,the value of plot_cost is         : 22.51048461979676 

 At row:41, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:41, column:147,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:147,the value of plot_cost is         : 22.36824578744404 

 At row:41, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:41, column:148,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:148,the value of plot_cost is         : 22.226815015493834 

 At row:41, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:41, column:149,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:149,the value of plot_cost is         : 22.086192303946145 

 At row:41, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:41, column:150,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:150,the value of plot_cost is         : 21.946377652800972 

 At row:41, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:41, column:151,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:151,the value of plot_cost is         : 21.807371062058316 

 At row:41, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:41, column:152,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:152,the value of plot_cost is         : 21.669172531718175 

 At row:41, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:41, column:153,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:153,the value of plot_cost is         : 21.531782061780547 

 At row:41, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:41, column:154,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:154,the value of plot_cost is         : 21.39519965224543 

 At row:41, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:41, column:155,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:155,the value of plot_cost is         : 21.259425303112835 

 At row:41, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:41, column:156,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:156,the value of plot_cost is         : 21.12445901438275 

 At row:41, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:41, column:157,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:157,the value of plot_cost is         : 20.99030078605518 

 At row:41, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:41, column:158,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:158,the value of plot_cost is         : 20.85695061813013 

 At row:41, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:41, column:159,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:159,the value of plot_cost is         : 20.724408510607592 

 At row:41, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:41, column:160,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:160,the value of plot_cost is         : 20.59267446348757 

 At row:41, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:41, column:161,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:161,the value of plot_cost is         : 20.461748476770065 

 At row:41, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:41, column:162,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:162,the value of plot_cost is         : 20.331630550455074 

 At row:41, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:41, column:163,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:163,the value of plot_cost is         : 20.2023206845426 

 At row:41, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:41, column:164,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:164,the value of plot_cost is         : 20.073818879032633 

 At row:41, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:41, column:165,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:165,the value of plot_cost is         : 19.94612513392519 

 At row:41, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:41, column:166,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:166,the value of plot_cost is         : 19.81923944922025 

 At row:41, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:41, column:167,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:167,the value of plot_cost is         : 19.69316182491784 

 At row:41, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:41, column:168,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:168,the value of plot_cost is         : 19.56789226101794 

 At row:41, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:41, column:169,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:169,the value of plot_cost is         : 19.44343075752055 

 At row:41, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:41, column:170,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:170,the value of plot_cost is         : 19.31977731442568 

 At row:41, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:41, column:171,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:171,the value of plot_cost is         : 19.19693193173332 

 At row:41, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:41, column:172,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:172,the value of plot_cost is         : 19.074894609443483 

 At row:41, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:41, column:173,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:173,the value of plot_cost is         : 18.953665347556157 

 At row:41, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:41, column:174,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:174,the value of plot_cost is         : 18.833244146071344 

 At row:41, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:41, column:175,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:175,the value of plot_cost is         : 18.71363100498905 

 At row:41, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:41, column:176,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:176,the value of plot_cost is         : 18.594825924309266 

 At row:41, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:41, column:177,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:177,the value of plot_cost is         : 18.476828904032004 

 At row:41, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:41, column:178,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:178,the value of plot_cost is         : 18.359639944157248 

 At row:41, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:41, column:179,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:179,the value of plot_cost is         : 18.243259044685015 

 At row:41, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:41, column:180,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:180,the value of plot_cost is         : 18.127686205615294 

 At row:41, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:41, column:181,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:181,the value of plot_cost is         : 18.01292142694809 

 At row:41, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:41, column:182,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:182,the value of plot_cost is         : 17.8989647086834 

 At row:41, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:41, column:183,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:183,the value of plot_cost is         : 17.785816050821225 

 At row:41, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:41, column:184,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:184,the value of plot_cost is         : 17.673475453361565 

 At row:41, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:41, column:185,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:185,the value of plot_cost is         : 17.561942916304417 

 At row:41, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:41, column:186,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:186,the value of plot_cost is         : 17.45121843964979 

 At row:41, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:41, column:187,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:187,the value of plot_cost is         : 17.341302023397677 

 At row:41, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:41, column:188,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:188,the value of plot_cost is         : 17.232193667548074 

 At row:41, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:41, column:189,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:189,the value of plot_cost is         : 17.12389337210099 

 At row:41, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:41, column:190,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:190,the value of plot_cost is         : 17.016401137056423 

 At row:41, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:41, column:191,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:191,the value of plot_cost is         : 16.909716962414368 

 At row:41, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:41, column:192,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:192,the value of plot_cost is         : 16.80384084817483 

 At row:41, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:41, column:193,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:193,the value of plot_cost is         : 16.698772794337803 

 At row:41, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:41, column:194,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:194,the value of plot_cost is         : 16.594512800903292 

 At row:41, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:41, column:195,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:195,the value of plot_cost is         : 16.4910608678713 

 At row:41, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:41, column:196,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:196,the value of plot_cost is         : 16.388416995241823 

 At row:41, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:41, column:197,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:197,the value of plot_cost is         : 16.286581183014857 

 At row:41, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:41, column:198,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:198,the value of plot_cost is         : 16.18555343119041 

 At row:41, column:199,the value of plot_t0 is           : 3.0
 At row:41, column:199,the value of plot_t1 is           : -0.1758793969849246
 At row:41, column:199,the value of plot_cost is         : 16.085333739768473 

 At row:42, column:0,the value of plot_t0 is           : -1.0
 At row:42, column:0,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:0,the value of plot_cost is         : 50.83327127381343 

 At row:42, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:42, column:1,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:1,the value of plot_cost is         : 50.57573376574184 

 At row:42, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:42, column:2,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:2,the value of plot_cost is         : 50.31900431807277 

 At row:42, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:42, column:3,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:3,the value of plot_cost is         : 50.06308293080622 

 At row:42, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:42, column:4,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:4,the value of plot_cost is         : 49.80796960394218 

 At row:42, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:42, column:5,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:5,the value of plot_cost is         : 49.553664337480654 

 At row:42, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:42, column:6,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:6,the value of plot_cost is         : 49.300167131421645 

 At row:42, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:42, column:7,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:7,the value of plot_cost is         : 49.04747798576514 

 At row:42, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:42, column:8,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:8,the value of plot_cost is         : 48.79559690051117 

 At row:42, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:42, column:9,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:9,the value of plot_cost is         : 48.544523875659706 

 At row:42, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:42, column:10,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:10,the value of plot_cost is         : 48.29425891121075 

 At row:42, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:42, column:11,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:11,the value of plot_cost is         : 48.04480200716432 

 At row:42, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:42, column:12,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:12,the value of plot_cost is         : 47.796153163520394 

 At row:42, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:42, column:13,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:13,the value of plot_cost is         : 47.548312380278986 

 At row:42, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:42, column:14,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:14,the value of plot_cost is         : 47.301279657440105 

 At row:42, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:42, column:15,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:15,the value of plot_cost is         : 47.05505499500374 

 At row:42, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:42, column:16,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:16,the value of plot_cost is         : 46.80963839296987 

 At row:42, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:42, column:17,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:17,the value of plot_cost is         : 46.56502985133853 

 At row:42, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:42, column:18,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:18,the value of plot_cost is         : 46.3212293701097 

 At row:42, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:42, column:19,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:19,the value of plot_cost is         : 46.07823694928338 

 At row:42, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:42, column:20,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:20,the value of plot_cost is         : 45.83605258885958 

 At row:42, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:42, column:21,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:21,the value of plot_cost is         : 45.5946762888383 

 At row:42, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:42, column:22,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:22,the value of plot_cost is         : 45.35410804921953 

 At row:42, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:42, column:23,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:23,the value of plot_cost is         : 45.11434787000328 

 At row:42, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:42, column:24,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:24,the value of plot_cost is         : 44.87539575118954 

 At row:42, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:42, column:25,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:25,the value of plot_cost is         : 44.637251692778314 

 At row:42, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:42, column:26,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:26,the value of plot_cost is         : 44.39991569476961 

 At row:42, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:42, column:27,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:27,the value of plot_cost is         : 44.16338775716343 

 At row:42, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:42, column:28,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:28,the value of plot_cost is         : 43.927667879959735 

 At row:42, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:42, column:29,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:29,the value of plot_cost is         : 43.692756063158576 

 At row:42, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:42, column:30,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:30,the value of plot_cost is         : 43.45865230675992 

 At row:42, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:42, column:31,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:31,the value of plot_cost is         : 43.22535661076379 

 At row:42, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:42, column:32,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:32,the value of plot_cost is         : 42.992868975170175 

 At row:42, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:42, column:33,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:33,the value of plot_cost is         : 42.761189399979074 

 At row:42, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:42, column:34,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:34,the value of plot_cost is         : 42.530317885190485 

 At row:42, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:42, column:35,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:35,the value of plot_cost is         : 42.30025443080441 

 At row:42, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:42, column:36,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:36,the value of plot_cost is         : 42.07099903682086 

 At row:42, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:42, column:37,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:37,the value of plot_cost is         : 41.84255170323981 

 At row:42, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:42, column:38,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:38,the value of plot_cost is         : 41.61491243006129 

 At row:42, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:42, column:39,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:39,the value of plot_cost is         : 41.388081217285276 

 At row:42, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:42, column:40,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:40,the value of plot_cost is         : 41.162058064911776 

 At row:42, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:42, column:41,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:41,the value of plot_cost is         : 40.936842972940795 

 At row:42, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:42, column:42,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:42,the value of plot_cost is         : 40.71243594137233 

 At row:42, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:42, column:43,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:43,the value of plot_cost is         : 40.48883697020637 

 At row:42, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:42, column:44,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:44,the value of plot_cost is         : 40.26604605944294 

 At row:42, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:42, column:45,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:45,the value of plot_cost is         : 40.04406320908202 

 At row:42, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:42, column:46,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:46,the value of plot_cost is         : 39.822888419123615 

 At row:42, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:42, column:47,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:47,the value of plot_cost is         : 39.60252168956772 

 At row:42, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:42, column:48,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:48,the value of plot_cost is         : 39.382963020414344 

 At row:42, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:42, column:49,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:49,the value of plot_cost is         : 39.164212411663485 

 At row:42, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:42, column:50,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:50,the value of plot_cost is         : 38.94626986331514 

 At row:42, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:42, column:51,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:51,the value of plot_cost is         : 38.72913537536931 

 At row:42, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:42, column:52,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:52,the value of plot_cost is         : 38.51280894782599 

 At row:42, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:42, column:53,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:53,the value of plot_cost is         : 38.297290580685186 

 At row:42, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:42, column:54,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:54,the value of plot_cost is         : 38.08258027394691 

 At row:42, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:42, column:55,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:55,the value of plot_cost is         : 37.868678027611125 

 At row:42, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:42, column:56,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:56,the value of plot_cost is         : 37.655583841677874 

 At row:42, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:42, column:57,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:57,the value of plot_cost is         : 37.443297716147136 

 At row:42, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:42, column:58,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:58,the value of plot_cost is         : 37.23181965101891 

 At row:42, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:42, column:59,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:59,the value of plot_cost is         : 37.021149646293196 

 At row:42, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:42, column:60,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:60,the value of plot_cost is         : 36.81128770197001 

 At row:42, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:42, column:61,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:61,the value of plot_cost is         : 36.60223381804932 

 At row:42, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:42, column:62,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:62,the value of plot_cost is         : 36.39398799453116 

 At row:42, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:42, column:63,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:63,the value of plot_cost is         : 36.1865502314155 

 At row:42, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:42, column:64,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:64,the value of plot_cost is         : 35.97992052870237 

 At row:42, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:42, column:65,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:65,the value of plot_cost is         : 35.774098886391755 

 At row:42, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:42, column:66,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:66,the value of plot_cost is         : 35.56908530448365 

 At row:42, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:42, column:67,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:67,the value of plot_cost is         : 35.364879782978065 

 At row:42, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:42, column:68,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:68,the value of plot_cost is         : 35.16148232187499 

 At row:42, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:42, column:69,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:69,the value of plot_cost is         : 34.958892921174424 

 At row:42, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:42, column:70,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:70,the value of plot_cost is         : 34.757111580876376 

 At row:42, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:42, column:71,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:71,the value of plot_cost is         : 34.55613830098085 

 At row:42, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:42, column:72,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:72,the value of plot_cost is         : 34.35597308148784 

 At row:42, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:42, column:73,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:73,the value of plot_cost is         : 34.15661592239734 

 At row:42, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:42, column:74,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:74,the value of plot_cost is         : 33.95806682370935 

 At row:42, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:42, column:75,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:75,the value of plot_cost is         : 33.76032578542388 

 At row:42, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:42, column:76,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:76,the value of plot_cost is         : 33.56339280754093 

 At row:42, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:42, column:77,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:77,the value of plot_cost is         : 33.367267890060496 

 At row:42, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:42, column:78,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:78,the value of plot_cost is         : 33.17195103298257 

 At row:42, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:42, column:79,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:79,the value of plot_cost is         : 32.97744223630716 

 At row:42, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:42, column:80,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:80,the value of plot_cost is         : 32.78374150003426 

 At row:42, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:42, column:81,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:81,the value of plot_cost is         : 32.590848824163885 

 At row:42, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:42, column:82,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:82,the value of plot_cost is         : 32.39876420869603 

 At row:42, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:42, column:83,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:83,the value of plot_cost is         : 32.20748765363067 

 At row:42, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:42, column:84,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:84,the value of plot_cost is         : 32.01701915896785 

 At row:42, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:42, column:85,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:85,the value of plot_cost is         : 31.827358724707526 

 At row:42, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:42, column:86,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:86,the value of plot_cost is         : 31.638506350849728 

 At row:42, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:42, column:87,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:87,the value of plot_cost is         : 31.450462037394438 

 At row:42, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:42, column:88,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:88,the value of plot_cost is         : 31.26322578434166 

 At row:42, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:42, column:89,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:89,the value of plot_cost is         : 31.076797591691406 

 At row:42, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:42, column:90,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:90,the value of plot_cost is         : 30.891177459443657 

 At row:42, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:42, column:91,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:91,the value of plot_cost is         : 30.706365387598435 

 At row:42, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:42, column:92,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:92,the value of plot_cost is         : 30.52236137615572 

 At row:42, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:42, column:93,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:93,the value of plot_cost is         : 30.339165425115528 

 At row:42, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:42, column:94,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:94,the value of plot_cost is         : 30.156777534477847 

 At row:42, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:42, column:95,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:95,the value of plot_cost is         : 29.975197704242678 

 At row:42, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:42, column:96,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:96,the value of plot_cost is         : 29.79442593441002 

 At row:42, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:42, column:97,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:97,the value of plot_cost is         : 29.61446222497989 

 At row:42, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:42, column:98,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:98,the value of plot_cost is         : 29.435306575952268 

 At row:42, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:42, column:99,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:99,the value of plot_cost is         : 29.256958987327156 

 At row:42, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:42, column:100,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:100,the value of plot_cost is         : 29.07941945910456 

 At row:42, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:42, column:101,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:101,the value of plot_cost is         : 28.902687991284495 

 At row:42, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:42, column:102,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:102,the value of plot_cost is         : 28.726764583866927 

 At row:42, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:42, column:103,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:103,the value of plot_cost is         : 28.55164923685188 

 At row:42, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:42, column:104,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:104,the value of plot_cost is         : 28.377341950239348 

 At row:42, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:42, column:105,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:105,the value of plot_cost is         : 28.203842724029336 

 At row:42, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:42, column:106,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:106,the value of plot_cost is         : 28.03115155822183 

 At row:42, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:42, column:107,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:107,the value of plot_cost is         : 27.859268452816842 

 At row:42, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:42, column:108,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:108,the value of plot_cost is         : 27.688193407814374 

 At row:42, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:42, column:109,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:109,the value of plot_cost is         : 27.51792642321441 

 At row:42, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:42, column:110,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:110,the value of plot_cost is         : 27.348467499016976 

 At row:42, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:42, column:111,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:111,the value of plot_cost is         : 27.179816635222053 

 At row:42, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:42, column:112,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:112,the value of plot_cost is         : 27.01197383182964 

 At row:42, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:42, column:113,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:113,the value of plot_cost is         : 26.844939088839745 

 At row:42, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:42, column:114,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:114,the value of plot_cost is         : 26.678712406252362 

 At row:42, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:42, column:115,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:115,the value of plot_cost is         : 26.513293784067496 

 At row:42, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:42, column:116,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:116,the value of plot_cost is         : 26.348683222285146 

 At row:42, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:42, column:117,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:117,the value of plot_cost is         : 26.184880720905316 

 At row:42, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:42, column:118,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:118,the value of plot_cost is         : 26.021886279927998 

 At row:42, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:42, column:119,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:119,the value of plot_cost is         : 25.85969989935318 

 At row:42, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:42, column:120,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:120,the value of plot_cost is         : 25.698321579180895 

 At row:42, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:42, column:121,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:121,the value of plot_cost is         : 25.537751319411125 

 At row:42, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:42, column:122,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:122,the value of plot_cost is         : 25.37798912004386 

 At row:42, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:42, column:123,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:123,the value of plot_cost is         : 25.219034981079123 

 At row:42, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:42, column:124,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:124,the value of plot_cost is         : 25.060888902516886 

 At row:42, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:42, column:125,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:125,the value of plot_cost is         : 24.903550884357173 

 At row:42, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:42, column:126,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:126,the value of plot_cost is         : 24.747020926599976 

 At row:42, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:42, column:127,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:127,the value of plot_cost is         : 24.591299029245288 

 At row:42, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:42, column:128,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:128,the value of plot_cost is         : 24.43638519229312 

 At row:42, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:42, column:129,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:129,the value of plot_cost is         : 24.282279415743464 

 At row:42, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:42, column:130,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:130,the value of plot_cost is         : 24.128981699596327 

 At row:42, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:42, column:131,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:131,the value of plot_cost is         : 23.976492043851703 

 At row:42, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:42, column:132,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:132,the value of plot_cost is         : 23.8248104485096 

 At row:42, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:42, column:133,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:133,the value of plot_cost is         : 23.673936913570003 

 At row:42, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:42, column:134,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:134,the value of plot_cost is         : 23.523871439032924 

 At row:42, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:42, column:135,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:135,the value of plot_cost is         : 23.374614024898356 

 At row:42, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:42, column:136,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:136,the value of plot_cost is         : 23.226164671166316 

 At row:42, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:42, column:137,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:137,the value of plot_cost is         : 23.078523377836778 

 At row:42, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:42, column:138,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:138,the value of plot_cost is         : 22.93169014490976 

 At row:42, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:42, column:139,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:139,the value of plot_cost is         : 22.78566497238525 

 At row:42, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:42, column:140,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:140,the value of plot_cost is         : 22.64044786026327 

 At row:42, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:42, column:141,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:141,the value of plot_cost is         : 22.49603880854379 

 At row:42, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:42, column:142,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:142,the value of plot_cost is         : 22.35243781722684 

 At row:42, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:42, column:143,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:143,the value of plot_cost is         : 22.209644886312397 

 At row:42, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:42, column:144,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:144,the value of plot_cost is         : 22.067660015800467 

 At row:42, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:42, column:145,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:145,the value of plot_cost is         : 21.926483205691046 

 At row:42, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:42, column:146,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:146,the value of plot_cost is         : 21.786114455984155 

 At row:42, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:42, column:147,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:147,the value of plot_cost is         : 21.646553766679773 

 At row:42, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:42, column:148,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:148,the value of plot_cost is         : 21.507801137777907 

 At row:42, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:42, column:149,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:149,the value of plot_cost is         : 21.36985656927855 

 At row:42, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:42, column:150,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:150,the value of plot_cost is         : 21.232720061181713 

 At row:42, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:42, column:151,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:151,the value of plot_cost is         : 21.09639161348739 

 At row:42, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:42, column:152,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:152,the value of plot_cost is         : 20.96087122619559 

 At row:42, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:42, column:153,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:153,the value of plot_cost is         : 20.826158899306293 

 At row:42, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:42, column:154,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:154,the value of plot_cost is         : 20.692254632819516 

 At row:42, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:42, column:155,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:155,the value of plot_cost is         : 20.55915842673525 

 At row:42, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:42, column:156,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:156,the value of plot_cost is         : 20.426870281053507 

 At row:42, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:42, column:157,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:157,the value of plot_cost is         : 20.295390195774278 

 At row:42, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:42, column:158,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:158,the value of plot_cost is         : 20.16471817089756 

 At row:42, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:42, column:159,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:159,the value of plot_cost is         : 20.034854206423354 

 At row:42, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:42, column:160,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:160,the value of plot_cost is         : 19.90579830235167 

 At row:42, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:42, column:161,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:161,the value of plot_cost is         : 19.777550458682498 

 At row:42, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:42, column:162,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:162,the value of plot_cost is         : 19.650110675415846 

 At row:42, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:42, column:163,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:163,the value of plot_cost is         : 19.523478952551702 

 At row:42, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:42, column:164,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:164,the value of plot_cost is         : 19.39765529009007 

 At row:42, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:42, column:165,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:165,the value of plot_cost is         : 19.272639688030964 

 At row:42, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:42, column:166,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:166,the value of plot_cost is         : 19.148432146374365 

 At row:42, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:42, column:167,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:167,the value of plot_cost is         : 19.02503266512029 

 At row:42, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:42, column:168,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:168,the value of plot_cost is         : 18.902441244268722 

 At row:42, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:42, column:169,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:169,the value of plot_cost is         : 18.780657883819668 

 At row:42, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:42, column:170,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:170,the value of plot_cost is         : 18.659682583773133 

 At row:42, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:42, column:171,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:171,the value of plot_cost is         : 18.539515344129114 

 At row:42, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:42, column:172,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:172,the value of plot_cost is         : 18.42015616488761 

 At row:42, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:42, column:173,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:173,the value of plot_cost is         : 18.30160504604862 

 At row:42, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:42, column:174,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:174,the value of plot_cost is         : 18.183861987612143 

 At row:42, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:42, column:175,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:175,the value of plot_cost is         : 18.06692698957818 

 At row:42, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:42, column:176,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:176,the value of plot_cost is         : 17.950800051946736 

 At row:42, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:42, column:177,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:177,the value of plot_cost is         : 17.83548117471781 

 At row:42, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:42, column:178,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:178,the value of plot_cost is         : 17.720970357891392 

 At row:42, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:42, column:179,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:179,the value of plot_cost is         : 17.607267601467495 

 At row:42, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:42, column:180,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:180,the value of plot_cost is         : 17.49437290544611 

 At row:42, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:42, column:181,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:181,the value of plot_cost is         : 17.38228626982724 

 At row:42, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:42, column:182,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:182,the value of plot_cost is         : 17.271007694610887 

 At row:42, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:42, column:183,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:183,the value of plot_cost is         : 17.160537179797046 

 At row:42, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:42, column:184,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:184,the value of plot_cost is         : 17.050874725385718 

 At row:42, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:42, column:185,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:185,the value of plot_cost is         : 16.94202033137691 

 At row:42, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:42, column:186,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:186,the value of plot_cost is         : 16.833973997770617 

 At row:42, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:42, column:187,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:187,the value of plot_cost is         : 16.726735724566836 

 At row:42, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:42, column:188,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:188,the value of plot_cost is         : 16.620305511765576 

 At row:42, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:42, column:189,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:189,the value of plot_cost is         : 16.514683359366824 

 At row:42, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:42, column:190,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:190,the value of plot_cost is         : 16.409869267370592 

 At row:42, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:42, column:191,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:191,the value of plot_cost is         : 16.305863235776872 

 At row:42, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:42, column:192,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:192,the value of plot_cost is         : 16.20266526458567 

 At row:42, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:42, column:193,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:193,the value of plot_cost is         : 16.10027535379698 

 At row:42, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:42, column:194,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:194,the value of plot_cost is         : 15.998693503410808 

 At row:42, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:42, column:195,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:195,the value of plot_cost is         : 15.897919713427148 

 At row:42, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:42, column:196,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:196,the value of plot_cost is         : 15.797953983846005 

 At row:42, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:42, column:197,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:197,the value of plot_cost is         : 15.698796314667378 

 At row:42, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:42, column:198,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:198,the value of plot_cost is         : 15.600446705891267 

 At row:42, column:199,the value of plot_t0 is           : 3.0
 At row:42, column:199,the value of plot_t1 is           : -0.15577889447236182
 At row:42, column:199,the value of plot_cost is         : 15.502905157517663 

 At row:43, column:0,the value of plot_t0 is           : -1.0
 At row:43, column:0,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:0,the value of plot_cost is         : 49.730474879782975 

 At row:43, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:43, column:1,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:1,the value of plot_cost is         : 49.475615514759724 

 At row:43, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:43, column:2,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:2,the value of plot_cost is         : 49.221564210139 

 At row:43, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:43, column:3,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:3,the value of plot_cost is         : 48.96832096592076 

 At row:43, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:43, column:4,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:4,the value of plot_cost is         : 48.71588578210506 

 At row:43, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:43, column:5,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:5,the value of plot_cost is         : 48.464258658691875 

 At row:43, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:43, column:6,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:6,the value of plot_cost is         : 48.21343959568121 

 At row:43, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:43, column:7,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:7,the value of plot_cost is         : 47.96342859307303 

 At row:43, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:43, column:8,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:8,the value of plot_cost is         : 47.7142256508674 

 At row:43, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:43, column:9,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:9,the value of plot_cost is         : 47.46583076906427 

 At row:43, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:43, column:10,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:10,the value of plot_cost is         : 47.21824394766365 

 At row:43, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:43, column:11,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:11,the value of plot_cost is         : 46.971465186665554 

 At row:43, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:43, column:12,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:12,the value of plot_cost is         : 46.72549448606998 

 At row:43, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:43, column:13,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:13,the value of plot_cost is         : 46.480331845876904 

 At row:43, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:43, column:14,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:14,the value of plot_cost is         : 46.235977266086344 

 At row:43, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:43, column:15,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:15,the value of plot_cost is         : 45.99243074669831 

 At row:43, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:43, column:16,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:16,the value of plot_cost is         : 45.7496922877128 

 At row:43, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:43, column:17,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:17,the value of plot_cost is         : 45.50776188912978 

 At row:43, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:43, column:18,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:18,the value of plot_cost is         : 45.266639550949286 

 At row:43, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:43, column:19,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:19,the value of plot_cost is         : 45.0263252731713 

 At row:43, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:43, column:20,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:20,the value of plot_cost is         : 44.786819055795846 

 At row:43, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:43, column:21,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:21,the value of plot_cost is         : 44.5481208988229 

 At row:43, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:43, column:22,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:22,the value of plot_cost is         : 44.31023080225248 

 At row:43, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:43, column:23,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:23,the value of plot_cost is         : 44.073148766084536 

 At row:43, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:43, column:24,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:24,the value of plot_cost is         : 43.83687479031914 

 At row:43, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:43, column:25,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:25,the value of plot_cost is         : 43.601408874956256 

 At row:43, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:43, column:26,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:26,the value of plot_cost is         : 43.36675101999589 

 At row:43, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:43, column:27,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:27,the value of plot_cost is         : 43.132901225438026 

 At row:43, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:43, column:28,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:28,the value of plot_cost is         : 42.89985949128268 

 At row:43, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:43, column:29,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:29,the value of plot_cost is         : 42.66762581752985 

 At row:43, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:43, column:30,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:30,the value of plot_cost is         : 42.43620020417955 

 At row:43, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:43, column:31,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:31,the value of plot_cost is         : 42.20558265123175 

 At row:43, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:43, column:32,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:32,the value of plot_cost is         : 41.97577315868647 

 At row:43, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:43, column:33,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:33,the value of plot_cost is         : 41.74677172654369 

 At row:43, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:43, column:34,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:34,the value of plot_cost is         : 41.518578354803445 

 At row:43, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:43, column:35,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:35,the value of plot_cost is         : 41.29119304346571 

 At row:43, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:43, column:36,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:36,the value of plot_cost is         : 41.064615792530496 

 At row:43, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:43, column:37,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:37,the value of plot_cost is         : 40.83884660199779 

 At row:43, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:43, column:38,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:38,the value of plot_cost is         : 40.6138854718676 

 At row:43, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:43, column:39,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:39,the value of plot_cost is         : 40.38973240213991 

 At row:43, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:43, column:40,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:40,the value of plot_cost is         : 40.16638739281475 

 At row:43, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:43, column:41,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:41,the value of plot_cost is         : 39.94385044389211 

 At row:43, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:43, column:42,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:42,the value of plot_cost is         : 39.722121555371984 

 At row:43, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:43, column:43,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:43,the value of plot_cost is         : 39.50120072725436 

 At row:43, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:43, column:44,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:44,the value of plot_cost is         : 39.28108795953926 

 At row:43, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:43, column:45,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:45,the value of plot_cost is         : 39.06178325222667 

 At row:43, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:43, column:46,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:46,the value of plot_cost is         : 38.8432866053166 

 At row:43, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:43, column:47,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:47,the value of plot_cost is         : 38.62559801880905 

 At row:43, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:43, column:48,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:48,the value of plot_cost is         : 38.40871749270401 

 At row:43, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:43, column:49,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:49,the value of plot_cost is         : 38.192645027001475 

 At row:43, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:43, column:50,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:50,the value of plot_cost is         : 37.97738062170147 

 At row:43, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:43, column:51,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:51,the value of plot_cost is         : 37.76292427680398 

 At row:43, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:43, column:52,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:52,the value of plot_cost is         : 37.549275992309 

 At row:43, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:43, column:53,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:53,the value of plot_cost is         : 37.336435768216525 

 At row:43, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:43, column:54,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:54,the value of plot_cost is         : 37.12440360452658 

 At row:43, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:43, column:55,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:55,the value of plot_cost is         : 36.91317950123914 

 At row:43, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:43, column:56,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:56,the value of plot_cost is         : 36.702763458354234 

 At row:43, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:43, column:57,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:57,the value of plot_cost is         : 36.493155475871816 

 At row:43, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:43, column:58,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:58,the value of plot_cost is         : 36.284355553791926 

 At row:43, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:43, column:59,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:59,the value of plot_cost is         : 36.07636369211455 

 At row:43, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:43, column:60,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:60,the value of plot_cost is         : 35.869179890839696 

 At row:43, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:43, column:61,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:61,the value of plot_cost is         : 35.66280414996735 

 At row:43, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:43, column:62,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:62,the value of plot_cost is         : 35.45723646949752 

 At row:43, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:43, column:63,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:63,the value of plot_cost is         : 35.25247684943021 

 At row:43, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:43, column:64,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:64,the value of plot_cost is         : 35.04852528976541 

 At row:43, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:43, column:65,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:65,the value of plot_cost is         : 34.845381790503126 

 At row:43, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:43, column:66,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:66,the value of plot_cost is         : 34.643046351643356 

 At row:43, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:43, column:67,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:67,the value of plot_cost is         : 34.4415189731861 

 At row:43, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:43, column:68,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:68,the value of plot_cost is         : 34.24079965513136 

 At row:43, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:43, column:69,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:69,the value of plot_cost is         : 34.04088839747914 

 At row:43, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:43, column:70,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:70,the value of plot_cost is         : 33.84178520022943 

 At row:43, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:43, column:71,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:71,the value of plot_cost is         : 33.64349006338224 

 At row:43, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:43, column:72,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:72,the value of plot_cost is         : 33.44600298693756 

 At row:43, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:43, column:73,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:73,the value of plot_cost is         : 33.24932397089539 

 At row:43, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:43, column:74,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:74,the value of plot_cost is         : 33.05345301525574 

 At row:43, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:43, column:75,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:75,the value of plot_cost is         : 32.85839012001861 

 At row:43, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:43, column:76,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:76,the value of plot_cost is         : 32.664135285183995 

 At row:43, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:43, column:77,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:77,the value of plot_cost is         : 32.47068851075189 

 At row:43, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:43, column:78,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:78,the value of plot_cost is         : 32.2780497967223 

 At row:43, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:43, column:79,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:79,the value of plot_cost is         : 32.08621914309523 

 At row:43, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:43, column:80,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:80,the value of plot_cost is         : 31.895196549870676 

 At row:43, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:43, column:81,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:81,the value of plot_cost is         : 31.704982017048632 

 At row:43, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:43, column:82,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:82,the value of plot_cost is         : 31.5155755446291 

 At row:43, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:43, column:83,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:83,the value of plot_cost is         : 31.32697713261209 

 At row:43, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:43, column:84,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:84,the value of plot_cost is         : 31.139186780997594 

 At row:43, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:43, column:85,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:85,the value of plot_cost is         : 30.95220448978561 

 At row:43, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:43, column:86,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:86,the value of plot_cost is         : 30.766030258976148 

 At row:43, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:43, column:87,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:87,the value of plot_cost is         : 30.580664088569186 

 At row:43, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:43, column:88,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:88,the value of plot_cost is         : 30.39610597856475 

 At row:43, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:43, column:89,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:89,the value of plot_cost is         : 30.21235592896283 

 At row:43, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:43, column:90,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:90,the value of plot_cost is         : 30.029413939763423 

 At row:43, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:43, column:91,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:91,the value of plot_cost is         : 29.84728001096654 

 At row:43, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:43, column:92,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:92,the value of plot_cost is         : 29.66595414257216 

 At row:43, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:43, column:93,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:93,the value of plot_cost is         : 29.485436334580292 

 At row:43, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:43, column:94,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:94,the value of plot_cost is         : 29.305726586990946 

 At row:43, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:43, column:95,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:95,the value of plot_cost is         : 29.126824899804113 

 At row:43, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:43, column:96,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:96,the value of plot_cost is         : 28.948731273019803 

 At row:43, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:43, column:97,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:97,the value of plot_cost is         : 28.771445706637998 

 At row:43, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:43, column:98,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:98,the value of plot_cost is         : 28.594968200658705 

 At row:43, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:43, column:99,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:99,the value of plot_cost is         : 28.419298755081943 

 At row:43, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:43, column:100,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:100,the value of plot_cost is         : 28.244437369907683 

 At row:43, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:43, column:101,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:101,the value of plot_cost is         : 28.07038404513595 

 At row:43, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:43, column:102,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:102,the value of plot_cost is         : 27.897138780766717 

 At row:43, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:43, column:103,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:103,the value of plot_cost is         : 27.724701576800005 

 At row:43, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:43, column:104,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:104,the value of plot_cost is         : 27.553072433235812 

 At row:43, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:43, column:105,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:105,the value of plot_cost is         : 27.382251350074128 

 At row:43, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:43, column:106,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:106,the value of plot_cost is         : 27.212238327314967 

 At row:43, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:43, column:107,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:107,the value of plot_cost is         : 27.04303336495832 

 At row:43, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:43, column:108,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:108,the value of plot_cost is         : 26.87463646300418 

 At row:43, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:43, column:109,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:109,the value of plot_cost is         : 26.70704762145256 

 At row:43, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:43, column:110,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:110,the value of plot_cost is         : 26.540266840303453 

 At row:43, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:43, column:111,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:111,the value of plot_cost is         : 26.374294119556865 

 At row:43, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:43, column:112,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:112,the value of plot_cost is         : 26.209129459212793 

 At row:43, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:43, column:113,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:113,the value of plot_cost is         : 26.044772859271223 

 At row:43, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:43, column:114,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:114,the value of plot_cost is         : 25.881224319732183 

 At row:43, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:43, column:115,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:115,the value of plot_cost is         : 25.718483840595653 

 At row:43, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:43, column:116,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:116,the value of plot_cost is         : 25.55655142186164 

 At row:43, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:43, column:117,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:117,the value of plot_cost is         : 25.395427063530143 

 At row:43, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:43, column:118,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:118,the value of plot_cost is         : 25.235110765601153 

 At row:43, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:43, column:119,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:119,the value of plot_cost is         : 25.075602528074683 

 At row:43, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:43, column:120,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:120,the value of plot_cost is         : 24.916902350950732 

 At row:43, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:43, column:121,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:121,the value of plot_cost is         : 24.759010234229297 

 At row:43, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:43, column:122,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:122,the value of plot_cost is         : 24.60192617791037 

 At row:43, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:43, column:123,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:123,the value of plot_cost is         : 24.44565018199396 

 At row:43, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:43, column:124,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:124,the value of plot_cost is         : 24.290182246480065 

 At row:43, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:43, column:125,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:125,the value of plot_cost is         : 24.135522371368683 

 At row:43, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:43, column:126,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:126,the value of plot_cost is         : 23.981670556659825 

 At row:43, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:43, column:127,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:127,the value of plot_cost is         : 23.828626802353476 

 At row:43, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:43, column:128,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:128,the value of plot_cost is         : 23.67639110844964 

 At row:43, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:43, column:129,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:129,the value of plot_cost is         : 23.524963474948322 

 At row:43, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:43, column:130,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:130,the value of plot_cost is         : 23.374343901849517 

 At row:43, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:43, column:131,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:131,the value of plot_cost is         : 23.22453238915323 

 At row:43, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:43, column:132,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:132,the value of plot_cost is         : 23.07552893685946 

 At row:43, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:43, column:133,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:133,the value of plot_cost is         : 22.927333544968196 

 At row:43, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:43, column:134,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:134,the value of plot_cost is         : 22.77994621347945 

 At row:43, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:43, column:135,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:135,the value of plot_cost is         : 22.633366942393227 

 At row:43, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:43, column:136,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:136,the value of plot_cost is         : 22.48759573170952 

 At row:43, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:43, column:137,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:137,the value of plot_cost is         : 22.342632581428322 

 At row:43, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:43, column:138,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:138,the value of plot_cost is         : 22.19847749154963 

 At row:43, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:43, column:139,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:139,the value of plot_cost is         : 22.055130462073468 

 At row:43, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:43, column:140,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:140,the value of plot_cost is         : 21.912591492999816 

 At row:43, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:43, column:141,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:141,the value of plot_cost is         : 21.770860584328677 

 At row:43, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:43, column:142,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:142,the value of plot_cost is         : 21.629937736060054 

 At row:43, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:43, column:143,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:143,the value of plot_cost is         : 21.489822948193947 

 At row:43, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:43, column:144,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:144,the value of plot_cost is         : 21.350516220730356 

 At row:43, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:43, column:145,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:145,the value of plot_cost is         : 21.21201755366928 

 At row:43, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:43, column:146,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:146,the value of plot_cost is         : 21.07432694701072 

 At row:43, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:43, column:147,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:147,the value of plot_cost is         : 20.93744440075467 

 At row:43, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:43, column:148,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:148,the value of plot_cost is         : 20.801369914901137 

 At row:43, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:43, column:149,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:149,the value of plot_cost is         : 20.66610348945012 

 At row:43, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:43, column:150,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:150,the value of plot_cost is         : 20.53164512440162 

 At row:43, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:43, column:151,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:151,the value of plot_cost is         : 20.397994819755628 

 At row:43, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:43, column:152,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:152,the value of plot_cost is         : 20.26515257551216 

 At row:43, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:43, column:153,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:153,the value of plot_cost is         : 20.133118391671204 

 At row:43, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:43, column:154,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:154,the value of plot_cost is         : 20.001892268232762 

 At row:43, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:43, column:155,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:155,the value of plot_cost is         : 19.871474205196836 

 At row:43, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:43, column:156,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:156,the value of plot_cost is         : 19.741864202563427 

 At row:43, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:43, column:157,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:157,the value of plot_cost is         : 19.613062260332534 

 At row:43, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:43, column:158,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:158,the value of plot_cost is         : 19.48506837850415 

 At row:43, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:43, column:159,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:159,the value of plot_cost is         : 19.357882557078284 

 At row:43, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:43, column:160,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:160,the value of plot_cost is         : 19.231504796054935 

 At row:43, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:43, column:161,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:161,the value of plot_cost is         : 19.105935095434095 

 At row:43, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:43, column:162,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:162,the value of plot_cost is         : 18.981173455215778 

 At row:43, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:43, column:163,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:163,the value of plot_cost is         : 18.857219875399966 

 At row:43, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:43, column:164,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:164,the value of plot_cost is         : 18.734074355986678 

 At row:43, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:43, column:165,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:165,the value of plot_cost is         : 18.61173689697591 

 At row:43, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:43, column:166,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:166,the value of plot_cost is         : 18.490207498367642 

 At row:43, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:43, column:167,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:167,the value of plot_cost is         : 18.3694861601619 

 At row:43, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:43, column:168,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:168,the value of plot_cost is         : 18.249572882358667 

 At row:43, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:43, column:169,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:169,the value of plot_cost is         : 18.13046766495795 

 At row:43, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:43, column:170,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:170,the value of plot_cost is         : 18.012170507959755 

 At row:43, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:43, column:171,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:171,the value of plot_cost is         : 17.894681411364072 

 At row:43, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:43, column:172,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:172,the value of plot_cost is         : 17.7780003751709 

 At row:43, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:43, column:173,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:173,the value of plot_cost is         : 17.662127399380246 

 At row:43, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:43, column:174,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:174,the value of plot_cost is         : 17.547062483992107 

 At row:43, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:43, column:175,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:175,the value of plot_cost is         : 17.43280562900648 

 At row:43, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:43, column:176,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:176,the value of plot_cost is         : 17.31935683442337 

 At row:43, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:43, column:177,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:177,the value of plot_cost is         : 17.20671610024278 

 At row:43, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:43, column:178,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:178,the value of plot_cost is         : 17.094883426464698 

 At row:43, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:43, column:179,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:179,the value of plot_cost is         : 16.98385881308913 

 At row:43, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:43, column:180,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:180,the value of plot_cost is         : 16.873642260116085 

 At row:43, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:43, column:181,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:181,the value of plot_cost is         : 16.764233767545548 

 At row:43, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:43, column:182,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:182,the value of plot_cost is         : 16.655633335377534 

 At row:43, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:43, column:183,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:183,the value of plot_cost is         : 16.54784096361203 

 At row:43, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:43, column:184,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:184,the value of plot_cost is         : 16.44085665224904 

 At row:43, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:43, column:185,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:185,the value of plot_cost is         : 16.33468040128857 

 At row:43, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:43, column:186,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:186,the value of plot_cost is         : 16.22931221073061 

 At row:43, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:43, column:187,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:187,the value of plot_cost is         : 16.124752080575163 

 At row:43, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:43, column:188,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:188,the value of plot_cost is         : 16.021000010822238 

 At row:43, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:43, column:189,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:189,the value of plot_cost is         : 15.918056001471825 

 At row:43, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:43, column:190,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:190,the value of plot_cost is         : 15.815920052523929 

 At row:43, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:43, column:191,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:191,the value of plot_cost is         : 15.714592163978542 

 At row:43, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:43, column:192,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:192,the value of plot_cost is         : 15.614072335835674 

 At row:43, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:43, column:193,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:193,the value of plot_cost is         : 15.514360568095318 

 At row:43, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:43, column:194,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:194,the value of plot_cost is         : 15.415456860757484 

 At row:43, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:43, column:195,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:195,the value of plot_cost is         : 15.31736121382216 

 At row:43, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:43, column:196,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:196,the value of plot_cost is         : 15.220073627289354 

 At row:43, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:43, column:197,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:197,the value of plot_cost is         : 15.123594101159059 

 At row:43, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:43, column:198,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:198,the value of plot_cost is         : 15.027922635431285 

 At row:43, column:199,the value of plot_t0 is           : 3.0
 At row:43, column:199,the value of plot_t1 is           : -0.13567839195979903
 At row:43, column:199,the value of plot_cost is         : 14.933059230106021 

 At row:44, column:0,the value of plot_t0 is           : -1.0
 At row:44, column:0,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:0,the value of plot_cost is         : 48.640261140591676 

 At row:44, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:44, column:1,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:1,the value of plot_cost is         : 48.38807991861677 

 At row:44, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:44, column:2,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:2,the value of plot_cost is         : 48.13670675704437 

 At row:44, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:44, column:3,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:3,the value of plot_cost is         : 47.88614165587448 

 At row:44, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:44, column:4,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:4,the value of plot_cost is         : 47.63638461510711 

 At row:44, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:44, column:5,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:5,the value of plot_cost is         : 47.38743563474226 

 At row:44, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:44, column:6,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:6,the value of plot_cost is         : 47.13929471477992 

 At row:44, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:44, column:7,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:7,the value of plot_cost is         : 46.8919618552201 

 At row:44, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:44, column:8,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:8,the value of plot_cost is         : 46.64543705606279 

 At row:44, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:44, column:9,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:9,the value of plot_cost is         : 46.399720317308 

 At row:44, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:44, column:10,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:10,the value of plot_cost is         : 46.15481163895572 

 At row:44, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:44, column:11,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:11,the value of plot_cost is         : 45.91071102100595 

 At row:44, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:44, column:12,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:12,the value of plot_cost is         : 45.667418463458716 

 At row:44, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:44, column:13,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:13,the value of plot_cost is         : 45.42493396631398 

 At row:44, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:44, column:14,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:14,the value of plot_cost is         : 45.183257529571755 

 At row:44, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:44, column:15,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:15,the value of plot_cost is         : 44.94238915323206 

 At row:44, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:44, column:16,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:16,the value of plot_cost is         : 44.702328837294864 

 At row:44, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:44, column:17,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:17,the value of plot_cost is         : 44.4630765817602 

 At row:44, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:44, column:18,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:18,the value of plot_cost is         : 44.22463238662804 

 At row:44, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:44, column:19,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:19,the value of plot_cost is         : 43.986996251898404 

 At row:44, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:44, column:20,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:20,the value of plot_cost is         : 43.75016817757127 

 At row:44, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:44, column:21,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:21,the value of plot_cost is         : 43.51414816364666 

 At row:44, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:44, column:22,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:22,the value of plot_cost is         : 43.278936210124556 

 At row:44, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:44, column:23,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:23,the value of plot_cost is         : 43.04453231700498 

 At row:44, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:44, column:24,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:24,the value of plot_cost is         : 42.81093648428791 

 At row:44, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:44, column:25,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:25,the value of plot_cost is         : 42.57814871197335 

 At row:44, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:44, column:26,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:26,the value of plot_cost is         : 42.34616900006132 

 At row:44, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:44, column:27,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:27,the value of plot_cost is         : 42.1149973485518 

 At row:44, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:44, column:28,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:28,the value of plot_cost is         : 41.88463375744479 

 At row:44, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:44, column:29,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:29,the value of plot_cost is         : 41.655078226740294 

 At row:44, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:44, column:30,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:30,the value of plot_cost is         : 41.42633075643832 

 At row:44, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:44, column:31,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:31,the value of plot_cost is         : 41.19839134653886 

 At row:44, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:44, column:32,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:32,the value of plot_cost is         : 40.97125999704192 

 At row:44, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:44, column:33,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:33,the value of plot_cost is         : 40.744936707947495 

 At row:44, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:44, column:34,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:34,the value of plot_cost is         : 40.51942147925556 

 At row:44, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:44, column:35,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:35,the value of plot_cost is         : 40.294714310966164 

 At row:44, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:44, column:36,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:36,the value of plot_cost is         : 40.070815203079285 

 At row:44, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:44, column:37,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:37,the value of plot_cost is         : 39.84772415559491 

 At row:44, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:44, column:38,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:38,the value of plot_cost is         : 39.625441168513056 

 At row:44, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:44, column:39,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:39,the value of plot_cost is         : 39.403966241833714 

 At row:44, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:44, column:40,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:40,the value of plot_cost is         : 39.183299375556885 

 At row:44, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:44, column:41,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:41,the value of plot_cost is         : 38.963440569682575 

 At row:44, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:44, column:42,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:42,the value of plot_cost is         : 38.744389824210785 

 At row:44, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:44, column:43,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:43,the value of plot_cost is         : 38.5261471391415 

 At row:44, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:44, column:44,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:44,the value of plot_cost is         : 38.308712514474735 

 At row:44, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:44, column:45,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:45,the value of plot_cost is         : 38.09208595021048 

 At row:44, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:44, column:46,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:46,the value of plot_cost is         : 37.87626744634875 

 At row:44, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:44, column:47,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:47,the value of plot_cost is         : 37.661257002889535 

 At row:44, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:44, column:48,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:48,the value of plot_cost is         : 37.447054619832834 

 At row:44, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:44, column:49,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:49,the value of plot_cost is         : 37.23366029717864 

 At row:44, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:44, column:50,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:50,the value of plot_cost is         : 37.021074034926954 

 At row:44, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:44, column:51,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:51,the value of plot_cost is         : 36.809295833077805 

 At row:44, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:44, column:52,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:52,the value of plot_cost is         : 36.59832569163116 

 At row:44, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:44, column:53,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:53,the value of plot_cost is         : 36.38816361058703 

 At row:44, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:44, column:54,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:54,the value of plot_cost is         : 36.17880958994541 

 At row:44, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:44, column:55,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:55,the value of plot_cost is         : 35.97026362970632 

 At row:44, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:44, column:56,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:56,the value of plot_cost is         : 35.762525729869736 

 At row:44, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:44, column:57,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:57,the value of plot_cost is         : 35.55559589043566 

 At row:44, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:44, column:58,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:58,the value of plot_cost is         : 35.34947411140411 

 At row:44, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:44, column:59,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:59,the value of plot_cost is         : 35.14416039277506 

 At row:44, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:44, column:60,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:60,the value of plot_cost is         : 34.93965473454854 

 At row:44, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:44, column:61,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:61,the value of plot_cost is         : 34.73595713672454 

 At row:44, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:44, column:62,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:62,the value of plot_cost is         : 34.533067599303045 

 At row:44, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:44, column:63,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:63,the value of plot_cost is         : 34.33098612228407 

 At row:44, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:44, column:64,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:64,the value of plot_cost is         : 34.12971270566759 

 At row:44, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:44, column:65,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:65,the value of plot_cost is         : 33.92924734945365 

 At row:44, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:44, column:66,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:66,the value of plot_cost is         : 33.72959005364222 

 At row:44, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:44, column:67,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:67,the value of plot_cost is         : 33.530740818233305 

 At row:44, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:44, column:68,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:68,the value of plot_cost is         : 33.3326996432269 

 At row:44, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:44, column:69,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:69,the value of plot_cost is         : 33.135466528623006 

 At row:44, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:44, column:70,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:70,the value of plot_cost is         : 32.939041474421636 

 At row:44, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:44, column:71,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:71,the value of plot_cost is         : 32.74342448062278 

 At row:44, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:44, column:72,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:72,the value of plot_cost is         : 32.54861554722643 

 At row:44, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:44, column:73,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:73,the value of plot_cost is         : 32.354614674232614 

 At row:44, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:44, column:74,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:74,the value of plot_cost is         : 32.16142186164129 

 At row:44, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:44, column:75,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:75,the value of plot_cost is         : 31.969037109452493 

 At row:44, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:44, column:76,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:76,the value of plot_cost is         : 31.777460417666212 

 At row:44, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:44, column:77,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:77,the value of plot_cost is         : 31.586691786282447 

 At row:44, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:44, column:78,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:78,the value of plot_cost is         : 31.3967312153012 

 At row:44, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:44, column:79,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:79,the value of plot_cost is         : 31.207578704722454 

 At row:44, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:44, column:80,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:80,the value of plot_cost is         : 31.019234254546234 

 At row:44, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:44, column:81,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:81,the value of plot_cost is         : 30.831697864772536 

 At row:44, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:44, column:82,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:82,the value of plot_cost is         : 30.644969535401344 

 At row:44, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:44, column:83,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:83,the value of plot_cost is         : 30.459049266432658 

 At row:44, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:44, column:84,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:84,the value of plot_cost is         : 30.273937057866494 

 At row:44, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:44, column:85,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:85,the value of plot_cost is         : 30.089632909702857 

 At row:44, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:44, column:86,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:86,the value of plot_cost is         : 29.906136821941722 

 At row:44, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:44, column:87,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:87,the value of plot_cost is         : 29.723448794583106 

 At row:44, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:44, column:88,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:88,the value of plot_cost is         : 29.541568827627007 

 At row:44, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:44, column:89,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:89,the value of plot_cost is         : 29.360496921073413 

 At row:44, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:44, column:90,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:90,the value of plot_cost is         : 29.180233074922345 

 At row:44, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:44, column:91,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:91,the value of plot_cost is         : 29.000777289173794 

 At row:44, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:44, column:92,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:92,the value of plot_cost is         : 28.822129563827747 

 At row:44, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:44, column:93,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:93,the value of plot_cost is         : 28.64428989888422 

 At row:44, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:44, column:94,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:94,the value of plot_cost is         : 28.467258294343203 

 At row:44, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:44, column:95,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:95,the value of plot_cost is         : 28.29103475020472 

 At row:44, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:44, column:96,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:96,the value of plot_cost is         : 28.11561926646873 

 At row:44, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:44, column:97,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:97,the value of plot_cost is         : 27.941011843135275 

 At row:44, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:44, column:98,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:98,the value of plot_cost is         : 27.767212480204318 

 At row:44, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:44, column:99,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:99,the value of plot_cost is         : 27.59422117767588 

 At row:44, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:44, column:100,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:100,the value of plot_cost is         : 27.422037935549966 

 At row:44, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:44, column:101,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:101,the value of plot_cost is         : 27.25066275382656 

 At row:44, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:44, column:102,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:102,the value of plot_cost is         : 27.080095632505667 

 At row:44, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:44, column:103,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:103,the value of plot_cost is         : 26.910336571587287 

 At row:44, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:44, column:104,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:104,the value of plot_cost is         : 26.74138557107143 

 At row:44, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:44, column:105,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:105,the value of plot_cost is         : 26.573242630958088 

 At row:44, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:44, column:106,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:106,the value of plot_cost is         : 26.40590775124726 

 At row:44, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:44, column:107,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:107,the value of plot_cost is         : 26.239380931938946 

 At row:44, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:44, column:108,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:108,the value of plot_cost is         : 26.073662173033146 

 At row:44, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:44, column:109,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:109,the value of plot_cost is         : 25.908751474529858 

 At row:44, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:44, column:110,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:110,the value of plot_cost is         : 25.744648836429086 

 At row:44, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:44, column:111,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:111,the value of plot_cost is         : 25.581354258730833 

 At row:44, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:44, column:112,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:112,the value of plot_cost is         : 25.4188677414351 

 At row:44, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:44, column:113,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:113,the value of plot_cost is         : 25.257189284541866 

 At row:44, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:44, column:114,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:114,the value of plot_cost is         : 25.09631888805116 

 At row:44, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:44, column:115,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:115,the value of plot_cost is         : 24.93625655196297 

 At row:44, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:44, column:116,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:116,the value of plot_cost is         : 24.77700227627729 

 At row:44, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:44, column:117,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:117,the value of plot_cost is         : 24.618556060994127 

 At row:44, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:44, column:118,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:118,the value of plot_cost is         : 24.46091790611348 

 At row:44, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:44, column:119,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:119,the value of plot_cost is         : 24.30408781163534 

 At row:44, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:44, column:120,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:120,the value of plot_cost is         : 24.148065777559726 

 At row:44, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:44, column:121,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:121,the value of plot_cost is         : 23.992851803886623 

 At row:44, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:44, column:122,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:122,the value of plot_cost is         : 23.838445890616033 

 At row:44, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:44, column:123,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:123,the value of plot_cost is         : 23.684848037747955 

 At row:44, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:44, column:124,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:124,the value of plot_cost is         : 23.532058245282403 

 At row:44, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:44, column:125,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:125,the value of plot_cost is         : 23.380076513219354 

 At row:44, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:44, column:126,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:126,the value of plot_cost is         : 23.228902841558828 

 At row:44, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:44, column:127,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:127,the value of plot_cost is         : 23.078537230300817 

 At row:44, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:44, column:128,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:128,the value of plot_cost is         : 22.92897967944532 

 At row:44, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:44, column:129,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:129,the value of plot_cost is         : 22.780230188992338 

 At row:44, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:44, column:130,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:130,the value of plot_cost is         : 22.63228875894187 

 At row:44, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:44, column:131,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:131,the value of plot_cost is         : 22.48515538929392 

 At row:44, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:44, column:132,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:132,the value of plot_cost is         : 22.33883008004848 

 At row:44, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:44, column:133,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:133,the value of plot_cost is         : 22.193312831205557 

 At row:44, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:44, column:134,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:134,the value of plot_cost is         : 22.048603642765148 

 At row:44, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:44, column:135,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:135,the value of plot_cost is         : 21.90470251472726 

 At row:44, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:44, column:136,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:136,the value of plot_cost is         : 21.76160944709188 

 At row:44, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:44, column:137,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:137,the value of plot_cost is         : 21.619324439859017 

 At row:44, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:44, column:138,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:138,the value of plot_cost is         : 21.47784749302867 

 At row:44, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:44, column:139,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:139,the value of plot_cost is         : 21.337178606600833 

 At row:44, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:44, column:140,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:140,the value of plot_cost is         : 21.19731778057552 

 At row:44, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:44, column:141,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:141,the value of plot_cost is         : 21.058265014952724 

 At row:44, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:44, column:142,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:142,the value of plot_cost is         : 20.920020309732436 

 At row:44, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:44, column:143,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:143,the value of plot_cost is         : 20.78258366491466 

 At row:44, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:44, column:144,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:144,the value of plot_cost is         : 20.6459550804994 

 At row:44, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:44, column:145,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:145,the value of plot_cost is         : 20.510134556486666 

 At row:44, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:44, column:146,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:146,the value of plot_cost is         : 20.375122092876442 

 At row:44, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:44, column:147,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:147,the value of plot_cost is         : 20.24091768966873 

 At row:44, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:44, column:148,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:148,the value of plot_cost is         : 20.107521346863535 

 At row:44, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:44, column:149,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:149,the value of plot_cost is         : 19.974933064460846 

 At row:44, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:44, column:150,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:150,the value of plot_cost is         : 19.843152842460686 

 At row:44, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:44, column:151,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:151,the value of plot_cost is         : 19.71218068086303 

 At row:44, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:44, column:152,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:152,the value of plot_cost is         : 19.582016579667897 

 At row:44, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:44, column:153,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:153,the value of plot_cost is         : 19.45266053887528 

 At row:44, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:44, column:154,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:154,the value of plot_cost is         : 19.324112558485165 

 At row:44, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:44, column:155,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:155,the value of plot_cost is         : 19.19637263849758 

 At row:44, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:44, column:156,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:156,the value of plot_cost is         : 19.069440778912504 

 At row:44, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:44, column:157,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:157,the value of plot_cost is         : 18.943316979729946 

 At row:44, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:44, column:158,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:158,the value of plot_cost is         : 18.818001240949897 

 At row:44, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:44, column:159,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:159,the value of plot_cost is         : 18.693493562572367 

 At row:44, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:44, column:160,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:160,the value of plot_cost is         : 18.569793944597354 

 At row:44, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:44, column:161,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:161,the value of plot_cost is         : 18.446902387024853 

 At row:44, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:44, column:162,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:162,the value of plot_cost is         : 18.32481888985487 

 At row:44, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:44, column:163,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:163,the value of plot_cost is         : 18.2035434530874 

 At row:44, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:44, column:164,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:164,the value of plot_cost is         : 18.083076076722445 

 At row:44, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:44, column:165,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:165,the value of plot_cost is         : 17.963416760760005 

 At row:44, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:44, column:166,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:166,the value of plot_cost is         : 17.844565505200084 

 At row:44, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:44, column:167,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:167,the value of plot_cost is         : 17.726522310042675 

 At row:44, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:44, column:168,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:168,the value of plot_cost is         : 17.609287175287776 

 At row:44, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:44, column:169,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:169,the value of plot_cost is         : 17.492860100935395 

 At row:44, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:44, column:170,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:170,the value of plot_cost is         : 17.377241086985535 

 At row:44, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:44, column:171,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:171,the value of plot_cost is         : 17.262430133438187 

 At row:44, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:44, column:172,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:172,the value of plot_cost is         : 17.148427240293355 

 At row:44, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:44, column:173,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:173,the value of plot_cost is         : 17.03523240755103 

 At row:44, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:44, column:174,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:174,the value of plot_cost is         : 16.922845635211228 

 At row:44, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:44, column:175,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:175,the value of plot_cost is         : 16.81126692327394 

 At row:44, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:44, column:176,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:176,the value of plot_cost is         : 16.700496271739166 

 At row:44, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:44, column:177,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:177,the value of plot_cost is         : 16.59053368060691 

 At row:44, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:44, column:178,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:178,the value of plot_cost is         : 16.481379149877164 

 At row:44, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:44, column:179,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:179,the value of plot_cost is         : 16.373032679549933 

 At row:44, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:44, column:180,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:180,the value of plot_cost is         : 16.26549426962522 

 At row:44, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:44, column:181,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:181,the value of plot_cost is         : 16.158763920103027 

 At row:44, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:44, column:182,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:182,the value of plot_cost is         : 16.05284163098334 

 At row:44, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:44, column:183,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:183,the value of plot_cost is         : 15.947727402266175 

 At row:44, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:44, column:184,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:184,the value of plot_cost is         : 15.843421233951519 

 At row:44, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:44, column:185,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:185,the value of plot_cost is         : 15.73992312603938 

 At row:44, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:44, column:186,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:186,the value of plot_cost is         : 15.63723307852976 

 At row:44, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:44, column:187,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:187,the value of plot_cost is         : 15.535351091422656 

 At row:44, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:44, column:188,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:188,the value of plot_cost is         : 15.43427716471806 

 At row:44, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:44, column:189,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:189,the value of plot_cost is         : 15.33401129841598 

 At row:44, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:44, column:190,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:190,the value of plot_cost is         : 15.23455349251642 

 At row:44, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:44, column:191,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:191,the value of plot_cost is         : 15.135903747019373 

 At row:44, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:44, column:192,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:192,the value of plot_cost is         : 15.038062061924842 

 At row:44, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:44, column:193,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:193,the value of plot_cost is         : 14.941028437232823 

 At row:44, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:44, column:194,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:194,the value of plot_cost is         : 14.844802872943319 

 At row:44, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:44, column:195,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:195,the value of plot_cost is         : 14.749385369056334 

 At row:44, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:44, column:196,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:196,the value of plot_cost is         : 14.654775925571863 

 At row:44, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:44, column:197,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:197,the value of plot_cost is         : 14.560974542489905 

 At row:44, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:44, column:198,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:198,the value of plot_cost is         : 14.467981219810463 

 At row:44, column:199,the value of plot_t0 is           : 3.0
 At row:44, column:199,the value of plot_t1 is           : -0.11557788944723613
 At row:44, column:199,the value of plot_cost is         : 14.375795957533535 

 At row:45, column:0,the value of plot_t0 is           : -1.0
 At row:45, column:0,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:0,the value of plot_cost is         : 47.562630056239556 

 At row:45, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:45, column:1,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:1,the value of plot_cost is         : 47.313126977312976 

 At row:45, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:45, column:2,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:2,the value of plot_cost is         : 47.06443195878891 

 At row:45, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:45, column:3,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:3,the value of plot_cost is         : 46.81654500066737 

 At row:45, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:45, column:4,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:4,the value of plot_cost is         : 46.569466102948326 

 At row:45, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:45, column:5,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:5,the value of plot_cost is         : 46.32319526563182 

 At row:45, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:45, column:6,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:6,the value of plot_cost is         : 46.07773248871781 

 At row:45, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:45, column:7,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:7,the value of plot_cost is         : 45.83307777220632 

 At row:45, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:45, column:8,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:8,the value of plot_cost is         : 45.58923111609735 

 At row:45, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:45, column:9,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:9,the value of plot_cost is         : 45.3461925203909 

 At row:45, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:45, column:10,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:10,the value of plot_cost is         : 45.10396198508695 

 At row:45, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:45, column:11,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:11,the value of plot_cost is         : 44.862539510185535 

 At row:45, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:45, column:12,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:12,the value of plot_cost is         : 44.62192509568661 

 At row:45, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:45, column:13,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:13,the value of plot_cost is         : 44.38211874159021 

 At row:45, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:45, column:14,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:14,the value of plot_cost is         : 44.14312044789633 

 At row:45, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:45, column:15,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:15,the value of plot_cost is         : 43.90493021460497 

 At row:45, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:45, column:16,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:16,the value of plot_cost is         : 43.66754804171611 

 At row:45, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:45, column:17,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:17,the value of plot_cost is         : 43.43097392922978 

 At row:45, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:45, column:18,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:18,the value of plot_cost is         : 43.195207877145954 

 At row:45, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:45, column:19,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:19,the value of plot_cost is         : 42.96024988546464 

 At row:45, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:45, column:20,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:20,the value of plot_cost is         : 42.726099954185855 

 At row:45, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:45, column:21,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:21,the value of plot_cost is         : 42.49275808330959 

 At row:45, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:45, column:22,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:22,the value of plot_cost is         : 42.26022427283581 

 At row:45, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:45, column:23,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:23,the value of plot_cost is         : 42.02849852276457 

 At row:45, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:45, column:24,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:24,the value of plot_cost is         : 41.797580833095836 

 At row:45, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:45, column:25,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:25,the value of plot_cost is         : 41.567471203829626 

 At row:45, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:45, column:26,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:26,the value of plot_cost is         : 41.33816963496593 

 At row:45, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:45, column:27,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:27,the value of plot_cost is         : 41.10967612650474 

 At row:45, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:45, column:28,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:28,the value of plot_cost is         : 40.88199067844607 

 At row:45, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:45, column:29,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:29,the value of plot_cost is         : 40.655113290789906 

 At row:45, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:45, column:30,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:30,the value of plot_cost is         : 40.429043963536266 

 At row:45, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:45, column:31,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:31,the value of plot_cost is         : 40.20378269668515 

 At row:45, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:45, column:32,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:32,the value of plot_cost is         : 39.97932949023653 

 At row:45, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:45, column:33,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:33,the value of plot_cost is         : 39.75568434419043 

 At row:45, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:45, column:34,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:34,the value of plot_cost is         : 39.53284725854686 

 At row:45, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:45, column:35,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:35,the value of plot_cost is         : 39.310818233305795 

 At row:45, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:45, column:36,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:36,the value of plot_cost is         : 39.08959726846724 

 At row:45, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:45, column:37,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:37,the value of plot_cost is         : 38.869184364031206 

 At row:45, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:45, column:38,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:38,the value of plot_cost is         : 38.64957951999768 

 At row:45, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:45, column:39,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:39,the value of plot_cost is         : 38.43078273636668 

 At row:45, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:45, column:40,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:40,the value of plot_cost is         : 38.21279401313819 

 At row:45, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:45, column:41,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:41,the value of plot_cost is         : 37.995613350312226 

 At row:45, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:45, column:42,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:42,the value of plot_cost is         : 37.77924074788876 

 At row:45, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:45, column:43,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:43,the value of plot_cost is         : 37.563676205867814 

 At row:45, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:45, column:44,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:44,the value of plot_cost is         : 37.34891972424938 

 At row:45, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:45, column:45,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:45,the value of plot_cost is         : 37.134971303033474 

 At row:45, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:45, column:46,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:46,the value of plot_cost is         : 36.92183094222006 

 At row:45, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:45, column:47,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:47,the value of plot_cost is         : 36.70949864180918 

 At row:45, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:45, column:48,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:48,the value of plot_cost is         : 36.497974401800825 

 At row:45, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:45, column:49,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:49,the value of plot_cost is         : 36.287258222194964 

 At row:45, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:45, column:50,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:50,the value of plot_cost is         : 36.07735010299162 

 At row:45, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:45, column:51,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:51,the value of plot_cost is         : 35.8682500441908 

 At row:45, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:45, column:52,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:52,the value of plot_cost is         : 35.659958045792486 

 At row:45, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:45, column:53,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:53,the value of plot_cost is         : 35.4524741077967 

 At row:45, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:45, column:54,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:54,the value of plot_cost is         : 35.24579823020341 

 At row:45, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:45, column:55,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:55,the value of plot_cost is         : 35.039930413012655 

 At row:45, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:45, column:56,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:56,the value of plot_cost is         : 34.8348706562244 

 At row:45, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:45, column:57,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:57,the value of plot_cost is         : 34.63061895983867 

 At row:45, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:45, column:58,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:58,the value of plot_cost is         : 34.42717532385546 

 At row:45, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:45, column:59,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:59,the value of plot_cost is         : 34.22453974827475 

 At row:45, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:45, column:60,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:60,the value of plot_cost is         : 34.02271223309656 

 At row:45, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:45, column:61,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:61,the value of plot_cost is         : 33.82169277832089 

 At row:45, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:45, column:62,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:62,the value of plot_cost is         : 33.62148138394773 

 At row:45, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:45, column:63,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:63,the value of plot_cost is         : 33.42207804997709 

 At row:45, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:45, column:64,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:64,the value of plot_cost is         : 33.22348277640896 

 At row:45, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:45, column:65,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:65,the value of plot_cost is         : 33.025695563243346 

 At row:45, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:45, column:66,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:66,the value of plot_cost is         : 32.82871641048025 

 At row:45, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:45, column:67,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:67,the value of plot_cost is         : 32.63254531811967 

 At row:45, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:45, column:68,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:68,the value of plot_cost is         : 32.4371822861616 

 At row:45, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:45, column:69,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:69,the value of plot_cost is         : 32.24262731460605 

 At row:45, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:45, column:70,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:70,the value of plot_cost is         : 32.04888040345301 

 At row:45, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:45, column:71,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:71,the value of plot_cost is         : 31.855941552702493 

 At row:45, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:45, column:72,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:72,the value of plot_cost is         : 31.663810762354483 

 At row:45, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:45, column:73,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:73,the value of plot_cost is         : 31.47248803240899 

 At row:45, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:45, column:74,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:74,the value of plot_cost is         : 31.281973362866015 

 At row:45, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:45, column:75,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:75,the value of plot_cost is         : 31.092266753725553 

 At row:45, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:45, column:76,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:76,the value of plot_cost is         : 30.903368204987604 

 At row:45, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:45, column:77,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:77,the value of plot_cost is         : 30.715277716652174 

 At row:45, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:45, column:78,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:78,the value of plot_cost is         : 30.527995288719254 

 At row:45, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:45, column:79,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:79,the value of plot_cost is         : 30.341520921188856 

 At row:45, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:45, column:80,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:80,the value of plot_cost is         : 30.155854614060967 

 At row:45, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:45, column:81,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:81,the value of plot_cost is         : 29.9709963673356 

 At row:45, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:45, column:82,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:82,the value of plot_cost is         : 29.78694618101274 

 At row:45, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:45, column:83,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:83,the value of plot_cost is         : 29.603704055092397 

 At row:45, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:45, column:84,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:84,the value of plot_cost is         : 29.421269989574576 

 At row:45, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:45, column:85,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:85,the value of plot_cost is         : 29.239643984459267 

 At row:45, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:45, column:86,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:86,the value of plot_cost is         : 29.058826039746467 

 At row:45, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:45, column:87,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:87,the value of plot_cost is         : 28.878816155436187 

 At row:45, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:45, column:88,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:88,the value of plot_cost is         : 28.69961433152842 

 At row:45, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:45, column:89,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:89,the value of plot_cost is         : 28.52122056802317 

 At row:45, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:45, column:90,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:90,the value of plot_cost is         : 28.343634864920435 

 At row:45, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:45, column:91,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:91,the value of plot_cost is         : 28.16685722222022 

 At row:45, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:45, column:92,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:92,the value of plot_cost is         : 27.99088763992251 

 At row:45, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:45, column:93,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:93,the value of plot_cost is         : 27.815726118027317 

 At row:45, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:45, column:94,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:94,the value of plot_cost is         : 27.641372656534646 

 At row:45, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:45, column:95,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:95,the value of plot_cost is         : 27.467827255444483 

 At row:45, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:45, column:96,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:96,the value of plot_cost is         : 27.295089914756836 

 At row:45, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:45, column:97,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:97,the value of plot_cost is         : 27.12316063447171 

 At row:45, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:45, column:98,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:98,the value of plot_cost is         : 26.952039414589095 

 At row:45, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:45, column:99,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:99,the value of plot_cost is         : 26.781726255108996 

 At row:45, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:45, column:100,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:100,the value of plot_cost is         : 26.612221156031413 

 At row:45, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:45, column:101,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:101,the value of plot_cost is         : 26.443524117356343 

 At row:45, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:45, column:102,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:102,the value of plot_cost is         : 26.275635139083782 

 At row:45, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:45, column:103,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:103,the value of plot_cost is         : 26.108554221213744 

 At row:45, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:45, column:104,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:104,the value of plot_cost is         : 25.942281363746222 

 At row:45, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:45, column:105,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:105,the value of plot_cost is         : 25.776816566681212 

 At row:45, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:45, column:106,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:106,the value of plot_cost is         : 25.612159830018715 

 At row:45, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:45, column:107,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:107,the value of plot_cost is         : 25.448311153758738 

 At row:45, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:45, column:108,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:108,the value of plot_cost is         : 25.285270537901273 

 At row:45, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:45, column:109,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:109,the value of plot_cost is         : 25.123037982446327 

 At row:45, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:45, column:110,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:110,the value of plot_cost is         : 24.961613487393898 

 At row:45, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:45, column:111,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:111,the value of plot_cost is         : 24.80099705274398 

 At row:45, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:45, column:112,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:112,the value of plot_cost is         : 24.64118867849657 

 At row:45, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:45, column:113,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:113,the value of plot_cost is         : 24.48218836465168 

 At row:45, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:45, column:114,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:114,the value of plot_cost is         : 24.323996111209304 

 At row:45, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:45, column:115,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:115,the value of plot_cost is         : 24.16661191816945 

 At row:45, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:45, column:116,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:116,the value of plot_cost is         : 24.010035785532107 

 At row:45, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:45, column:117,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:117,the value of plot_cost is         : 23.85426771329728 

 At row:45, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:45, column:118,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:118,the value of plot_cost is         : 23.699307701464967 

 At row:45, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:45, column:119,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:119,the value of plot_cost is         : 23.545155750035168 

 At row:45, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:45, column:120,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:120,the value of plot_cost is         : 23.391811859007888 

 At row:45, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:45, column:121,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:121,the value of plot_cost is         : 23.23927602838312 

 At row:45, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:45, column:122,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:122,the value of plot_cost is         : 23.087548258160865 

 At row:45, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:45, column:123,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:123,the value of plot_cost is         : 22.936628548341126 

 At row:45, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:45, column:124,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:124,the value of plot_cost is         : 22.786516898923903 

 At row:45, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:45, column:125,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:125,the value of plot_cost is         : 22.637213309909196 

 At row:45, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:45, column:126,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:126,the value of plot_cost is         : 22.488717781297005 

 At row:45, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:45, column:127,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:127,the value of plot_cost is         : 22.341030313087327 

 At row:45, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:45, column:128,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:128,the value of plot_cost is         : 22.194150905280164 

 At row:45, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:45, column:129,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:129,the value of plot_cost is         : 22.04807955787552 

 At row:45, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:45, column:130,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:130,the value of plot_cost is         : 21.90281627087339 

 At row:45, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:45, column:131,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:131,the value of plot_cost is         : 21.758361044273773 

 At row:45, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:45, column:132,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:132,the value of plot_cost is         : 21.614713878076667 

 At row:45, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:45, column:133,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:133,the value of plot_cost is         : 21.47187477228208 

 At row:45, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:45, column:134,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:134,the value of plot_cost is         : 21.329843726890008 

 At row:45, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:45, column:135,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:135,the value of plot_cost is         : 21.188620741900454 

 At row:45, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:45, column:136,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:136,the value of plot_cost is         : 21.048205817313413 

 At row:45, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:45, column:137,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:137,the value of plot_cost is         : 20.908598953128887 

 At row:45, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:45, column:138,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:138,the value of plot_cost is         : 20.769800149346874 

 At row:45, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:45, column:139,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:139,the value of plot_cost is         : 20.631809405967378 

 At row:45, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:45, column:140,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:140,the value of plot_cost is         : 20.4946267229904 

 At row:45, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:45, column:141,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:141,the value of plot_cost is         : 20.35825210041594 

 At row:45, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:45, column:142,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:142,the value of plot_cost is         : 20.22268553824398 

 At row:45, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:45, column:143,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:143,the value of plot_cost is         : 20.087927036474543 

 At row:45, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:45, column:144,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:144,the value of plot_cost is         : 19.953976595107623 

 At row:45, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:45, column:145,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:145,the value of plot_cost is         : 19.82083421414322 

 At row:45, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:45, column:146,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:146,the value of plot_cost is         : 19.688499893581326 

 At row:45, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:45, column:147,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:147,the value of plot_cost is         : 19.556973633421947 

 At row:45, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:45, column:148,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:148,the value of plot_cost is         : 19.426255433665094 

 At row:45, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:45, column:149,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:149,the value of plot_cost is         : 19.296345294310743 

 At row:45, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:45, column:150,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:150,the value of plot_cost is         : 19.16724321535892 

 At row:45, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:45, column:151,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:151,the value of plot_cost is         : 19.0389491968096 

 At row:45, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:45, column:152,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:152,the value of plot_cost is         : 18.9114632386628 

 At row:45, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:45, column:153,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:153,the value of plot_cost is         : 18.784785340918518 

 At row:45, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:45, column:154,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:154,the value of plot_cost is         : 18.658915503576747 

 At row:45, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:45, column:155,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:155,the value of plot_cost is         : 18.533853726637492 

 At row:45, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:45, column:156,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:156,the value of plot_cost is         : 18.40960001010075 

 At row:45, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:45, column:157,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:157,the value of plot_cost is         : 18.286154353966527 

 At row:45, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:45, column:158,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:158,the value of plot_cost is         : 18.163516758234817 

 At row:45, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:45, column:159,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:159,the value of plot_cost is         : 18.041687222905622 

 At row:45, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:45, column:160,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:160,the value of plot_cost is         : 17.920665747978944 

 At row:45, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:45, column:161,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:161,the value of plot_cost is         : 17.800452333454775 

 At row:45, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:45, column:162,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:162,the value of plot_cost is         : 17.681046979333132 

 At row:45, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:45, column:163,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:163,the value of plot_cost is         : 17.562449685613995 

 At row:45, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:45, column:164,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:164,the value of plot_cost is         : 17.444660452297377 

 At row:45, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:45, column:165,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:165,the value of plot_cost is         : 17.327679279383272 

 At row:45, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:45, column:166,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:166,the value of plot_cost is         : 17.211506166871683 

 At row:45, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:45, column:167,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:167,the value of plot_cost is         : 17.096141114762613 

 At row:45, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:45, column:168,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:168,the value of plot_cost is         : 16.981584123056052 

 At row:45, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:45, column:169,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:169,the value of plot_cost is         : 16.86783519175201 

 At row:45, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:45, column:170,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:170,the value of plot_cost is         : 16.754894320850482 

 At row:45, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:45, column:171,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:171,the value of plot_cost is         : 16.642761510351463 

 At row:45, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:45, column:172,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:172,the value of plot_cost is         : 16.53143676025497 

 At row:45, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:45, column:173,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:173,the value of plot_cost is         : 16.420920070560985 

 At row:45, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:45, column:174,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:174,the value of plot_cost is         : 16.311211441269517 

 At row:45, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:45, column:175,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:175,the value of plot_cost is         : 16.202310872380565 

 At row:45, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:45, column:176,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:176,the value of plot_cost is         : 16.094218363894125 

 At row:45, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:45, column:177,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:177,the value of plot_cost is         : 15.986933915810205 

 At row:45, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:45, column:178,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:178,the value of plot_cost is         : 15.880457528128796 

 At row:45, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:45, column:179,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:179,the value of plot_cost is         : 15.774789200849904 

 At row:45, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:45, column:180,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:180,the value of plot_cost is         : 15.669928933973527 

 At row:45, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:45, column:181,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:181,the value of plot_cost is         : 15.565876727499662 

 At row:45, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:45, column:182,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:182,the value of plot_cost is         : 15.462632581428316 

 At row:45, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:45, column:183,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:183,the value of plot_cost is         : 15.360196495759485 

 At row:45, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:45, column:184,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:184,the value of plot_cost is         : 15.258568470493167 

 At row:45, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:45, column:185,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:185,the value of plot_cost is         : 15.157748505629366 

 At row:45, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:45, column:186,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:186,the value of plot_cost is         : 15.057736601168074 

 At row:45, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:45, column:187,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:187,the value of plot_cost is         : 14.958532757109305 

 At row:45, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:45, column:188,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:188,the value of plot_cost is         : 14.860136973453049 

 At row:45, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:45, column:189,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:189,the value of plot_cost is         : 14.762549250199307 

 At row:45, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:45, column:190,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:190,the value of plot_cost is         : 14.66576958734808 

 At row:45, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:45, column:191,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:191,the value of plot_cost is         : 14.569797984899369 

 At row:45, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:45, column:192,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:192,the value of plot_cost is         : 14.474634442853173 

 At row:45, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:45, column:193,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:193,the value of plot_cost is         : 14.380278961209493 

 At row:45, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:45, column:194,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:194,the value of plot_cost is         : 14.286731539968326 

 At row:45, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:45, column:195,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:195,the value of plot_cost is         : 14.193992179129673 

 At row:45, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:45, column:196,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:196,the value of plot_cost is         : 14.102060878693536 

 At row:45, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:45, column:197,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:197,the value of plot_cost is         : 14.010937638659916 

 At row:45, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:45, column:198,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:198,the value of plot_cost is         : 13.920622459028811 

 At row:45, column:199,the value of plot_t0 is           : 3.0
 At row:45, column:199,the value of plot_t1 is           : -0.09547738693467334
 At row:45, column:199,the value of plot_cost is         : 13.83111533980022 

 At row:46, column:0,the value of plot_t0 is           : -1.0
 At row:46, column:0,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:0,the value of plot_cost is         : 46.49758162672659 

 At row:46, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:46, column:1,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:1,the value of plot_cost is         : 46.25075669084835 

 At row:46, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:46, column:2,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:2,the value of plot_cost is         : 46.00473981537262 

 At row:46, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:46, column:3,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:3,the value of plot_cost is         : 45.75953100029941 

 At row:46, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:46, column:4,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:4,the value of plot_cost is         : 45.51513024562871 

 At row:46, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:46, column:5,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:5,the value of plot_cost is         : 45.27153755136053 

 At row:46, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:46, column:6,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:6,the value of plot_cost is         : 45.02875291749486 

 At row:46, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:46, column:7,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:7,the value of plot_cost is         : 44.786776344031715 

 At row:46, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:46, column:8,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:8,the value of plot_cost is         : 44.54560783097108 

 At row:46, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:46, column:9,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:9,the value of plot_cost is         : 44.30524737831295 

 At row:46, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:46, column:10,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:10,the value of plot_cost is         : 44.06569498605735 

 At row:46, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:46, column:11,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:11,the value of plot_cost is         : 43.82695065420426 

 At row:46, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:46, column:12,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:12,the value of plot_cost is         : 43.589014382753675 

 At row:46, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:46, column:13,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:13,the value of plot_cost is         : 43.351886171705615 

 At row:46, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:46, column:14,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:14,the value of plot_cost is         : 43.11556602106007 

 At row:46, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:46, column:15,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:15,the value of plot_cost is         : 42.88005393081704 

 At row:46, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:46, column:16,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:16,the value of plot_cost is         : 42.64534990097653 

 At row:46, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:46, column:17,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:17,the value of plot_cost is         : 42.41145393153852 

 At row:46, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:46, column:18,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:18,the value of plot_cost is         : 42.178366022503035 

 At row:46, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:46, column:19,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:19,the value of plot_cost is         : 41.946086173870064 

 At row:46, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:46, column:20,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:20,the value of plot_cost is         : 41.71461438563961 

 At row:46, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:46, column:21,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:21,the value of plot_cost is         : 41.48395065781167 

 At row:46, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:46, column:22,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:22,the value of plot_cost is         : 41.25409499038624 

 At row:46, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:46, column:23,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:23,the value of plot_cost is         : 41.02504738336333 

 At row:46, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:46, column:24,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:24,the value of plot_cost is         : 40.796807836742936 

 At row:46, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:46, column:25,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:25,the value of plot_cost is         : 40.569376350525054 

 At row:46, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:46, column:26,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:26,the value of plot_cost is         : 40.342752924709686 

 At row:46, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:46, column:27,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:27,the value of plot_cost is         : 40.116937559296844 

 At row:46, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:46, column:28,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:28,the value of plot_cost is         : 39.8919302542865 

 At row:46, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:46, column:29,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:29,the value of plot_cost is         : 39.66773100967868 

 At row:46, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:46, column:30,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:30,the value of plot_cost is         : 39.44433982547338 

 At row:46, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:46, column:31,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:31,the value of plot_cost is         : 39.22175670167059 

 At row:46, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:46, column:32,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:32,the value of plot_cost is         : 38.99998163827031 

 At row:46, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:46, column:33,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:33,the value of plot_cost is         : 38.77901463527255 

 At row:46, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:46, column:34,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:34,the value of plot_cost is         : 38.55885569267731 

 At row:46, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:46, column:35,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:35,the value of plot_cost is         : 38.339504810484584 

 At row:46, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:46, column:36,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:36,the value of plot_cost is         : 38.12096198869437 

 At row:46, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:46, column:37,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:37,the value of plot_cost is         : 37.903227227306665 

 At row:46, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:46, column:38,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:38,the value of plot_cost is         : 37.68630052632148 

 At row:46, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:46, column:39,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:39,the value of plot_cost is         : 37.47018188573881 

 At row:46, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:46, column:40,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:40,the value of plot_cost is         : 37.25487130555866 

 At row:46, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:46, column:41,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:41,the value of plot_cost is         : 37.04036878578103 

 At row:46, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:46, column:42,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:42,the value of plot_cost is         : 36.8266743264059 

 At row:46, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:46, column:43,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:43,the value of plot_cost is         : 36.613787927433286 

 At row:46, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:46, column:44,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:44,the value of plot_cost is         : 36.40170958886319 

 At row:46, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:46, column:45,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:45,the value of plot_cost is         : 36.19043931069561 

 At row:46, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:46, column:46,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:46,the value of plot_cost is         : 35.979977092930554 

 At row:46, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:46, column:47,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:47,the value of plot_cost is         : 35.770322935568004 

 At row:46, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:46, column:48,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:48,the value of plot_cost is         : 35.56147683860797 

 At row:46, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:46, column:49,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:49,the value of plot_cost is         : 35.35343880205044 

 At row:46, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:46, column:50,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:50,the value of plot_cost is         : 35.14620882589545 

 At row:46, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:46, column:51,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:51,the value of plot_cost is         : 34.93978691014296 

 At row:46, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:46, column:52,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:52,the value of plot_cost is         : 34.73417305479298 

 At row:46, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:46, column:53,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:53,the value of plot_cost is         : 34.52936725984553 

 At row:46, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:46, column:54,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:54,the value of plot_cost is         : 34.32536952530058 

 At row:46, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:46, column:55,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:55,the value of plot_cost is         : 34.12217985115816 

 At row:46, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:46, column:56,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:56,the value of plot_cost is         : 33.91979823741824 

 At row:46, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:46, column:57,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:57,the value of plot_cost is         : 33.718224684080845 

 At row:46, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:46, column:58,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:58,the value of plot_cost is         : 33.51745919114597 

 At row:46, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:46, column:59,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:59,the value of plot_cost is         : 33.31750175861359 

 At row:46, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:46, column:60,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:60,the value of plot_cost is         : 33.11835238648374 

 At row:46, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:46, column:61,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:61,the value of plot_cost is         : 32.92001107475641 

 At row:46, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:46, column:62,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:62,the value of plot_cost is         : 32.72247782343158 

 At row:46, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:46, column:63,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:63,the value of plot_cost is         : 32.525752632509274 

 At row:46, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:46, column:64,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:64,the value of plot_cost is         : 32.32983550198948 

 At row:46, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:46, column:65,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:65,the value of plot_cost is         : 32.13472643187221 

 At row:46, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:46, column:66,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:66,the value of plot_cost is         : 31.940425422157446 

 At row:46, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:46, column:67,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:67,the value of plot_cost is         : 31.746932472845195 

 At row:46, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:46, column:68,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:68,the value of plot_cost is         : 31.554247583935467 

 At row:46, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:46, column:69,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:69,the value of plot_cost is         : 31.362370755428245 

 At row:46, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:46, column:70,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:70,the value of plot_cost is         : 31.171301987323552 

 At row:46, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:46, column:71,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:71,the value of plot_cost is         : 30.981041279621365 

 At row:46, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:46, column:72,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:72,the value of plot_cost is         : 30.79158863232169 

 At row:46, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:46, column:73,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:73,the value of plot_cost is         : 30.602944045424536 

 At row:46, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:46, column:74,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:74,the value of plot_cost is         : 30.415107518929894 

 At row:46, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:46, column:75,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:75,the value of plot_cost is         : 30.22807905283777 

 At row:46, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:46, column:76,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:76,the value of plot_cost is         : 30.04185864714816 

 At row:46, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:46, column:77,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:77,the value of plot_cost is         : 29.85644630186106 

 At row:46, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:46, column:78,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:78,the value of plot_cost is         : 29.671842016976484 

 At row:46, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:46, column:79,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:79,the value of plot_cost is         : 29.48804579249441 

 At row:46, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:46, column:80,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:80,the value of plot_cost is         : 29.305057628414865 

 At row:46, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:46, column:81,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:81,the value of plot_cost is         : 29.12287752473783 

 At row:46, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:46, column:82,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:82,the value of plot_cost is         : 28.94150548146331 

 At row:46, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:46, column:83,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:83,the value of plot_cost is         : 28.760941498591308 

 At row:46, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:46, column:84,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:84,the value of plot_cost is         : 28.58118557612181 

 At row:46, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:46, column:85,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:85,the value of plot_cost is         : 28.402237714054834 

 At row:46, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:46, column:86,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:86,the value of plot_cost is         : 28.224097912390377 

 At row:46, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:46, column:87,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:87,the value of plot_cost is         : 28.046766171128432 

 At row:46, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:46, column:88,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:88,the value of plot_cost is         : 27.870242490269003 

 At row:46, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:46, column:89,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:89,the value of plot_cost is         : 27.694526869812083 

 At row:46, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:46, column:90,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:90,the value of plot_cost is         : 27.519619309757687 

 At row:46, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:46, column:91,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:91,the value of plot_cost is         : 27.345519810105806 

 At row:46, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:46, column:92,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:92,the value of plot_cost is         : 27.172228370856434 

 At row:46, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:46, column:93,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:93,the value of plot_cost is         : 26.99974499200958 

 At row:46, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:46, column:94,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:94,the value of plot_cost is         : 26.82806967356524 

 At row:46, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:46, column:95,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:95,the value of plot_cost is         : 26.657202415523415 

 At row:46, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:46, column:96,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:96,the value of plot_cost is         : 26.487143217884107 

 At row:46, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:46, column:97,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:97,the value of plot_cost is         : 26.317892080647315 

 At row:46, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:46, column:98,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:98,the value of plot_cost is         : 26.149449003813025 

 At row:46, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:46, column:99,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:99,the value of plot_cost is         : 25.981813987381265 

 At row:46, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:46, column:100,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:100,the value of plot_cost is         : 25.81498703135202 

 At row:46, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:46, column:101,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:101,the value of plot_cost is         : 25.648968135725283 

 At row:46, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:46, column:102,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:102,the value of plot_cost is         : 25.48375730050107 

 At row:46, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:46, column:103,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:103,the value of plot_cost is         : 25.319354525679366 

 At row:46, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:46, column:104,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:104,the value of plot_cost is         : 25.155759811260175 

 At row:46, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:46, column:105,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:105,the value of plot_cost is         : 24.9929731572435 

 At row:46, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:46, column:106,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:106,the value of plot_cost is         : 24.830994563629343 

 At row:46, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:46, column:107,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:107,the value of plot_cost is         : 24.6698240304177 

 At row:46, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:46, column:108,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:108,the value of plot_cost is         : 24.509461557608567 

 At row:46, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:46, column:109,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:109,the value of plot_cost is         : 24.349907145201954 

 At row:46, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:46, column:110,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:110,the value of plot_cost is         : 24.191160793197856 

 At row:46, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:46, column:111,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:111,the value of plot_cost is         : 24.033222501596278 

 At row:46, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:46, column:112,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:112,the value of plot_cost is         : 23.876092270397212 

 At row:46, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:46, column:113,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:113,the value of plot_cost is         : 23.71977009960066 

 At row:46, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:46, column:114,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:114,the value of plot_cost is         : 23.564255989206615 

 At row:46, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:46, column:115,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:115,the value of plot_cost is         : 23.409549939215097 

 At row:46, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:46, column:116,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:116,the value of plot_cost is         : 23.25565194962609 

 At row:46, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:46, column:117,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:117,the value of plot_cost is         : 23.1025620204396 

 At row:46, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:46, column:118,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:118,the value of plot_cost is         : 22.950280151655612 

 At row:46, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:46, column:119,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:119,the value of plot_cost is         : 22.798806343274155 

 At row:46, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:46, column:120,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:120,the value of plot_cost is         : 22.648140595295207 

 At row:46, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:46, column:121,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:121,the value of plot_cost is         : 22.498282907718778 

 At row:46, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:46, column:122,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:122,the value of plot_cost is         : 22.349233280544865 

 At row:46, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:46, column:123,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:123,the value of plot_cost is         : 22.20099171377346 

 At row:46, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:46, column:124,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:124,the value of plot_cost is         : 22.053558207404567 

 At row:46, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:46, column:125,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:125,the value of plot_cost is         : 21.9069327614382 

 At row:46, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:46, column:126,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:126,the value of plot_cost is         : 21.761115375874343 

 At row:46, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:46, column:127,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:127,the value of plot_cost is         : 21.616106050713004 

 At row:46, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:46, column:128,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:128,the value of plot_cost is         : 21.47190478595417 

 At row:46, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:46, column:129,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:129,the value of plot_cost is         : 21.328511581597862 

 At row:46, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:46, column:130,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:130,the value of plot_cost is         : 21.185926437644067 

 At row:46, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:46, column:131,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:131,the value of plot_cost is         : 21.044149354092788 

 At row:46, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:46, column:132,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:132,the value of plot_cost is         : 20.903180330944025 

 At row:46, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:46, column:133,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:133,the value of plot_cost is         : 20.76301936819777 

 At row:46, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:46, column:134,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:134,the value of plot_cost is         : 20.623666465854033 

 At row:46, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:46, column:135,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:135,the value of plot_cost is         : 20.485121623912814 

 At row:46, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:46, column:136,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:136,the value of plot_cost is         : 20.34738484237411 

 At row:46, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:46, column:137,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:137,the value of plot_cost is         : 20.21045612123792 

 At row:46, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:46, column:138,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:138,the value of plot_cost is         : 20.07433546050424 

 At row:46, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:46, column:139,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:139,the value of plot_cost is         : 19.93902286017308 

 At row:46, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:46, column:140,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:140,the value of plot_cost is         : 19.804518320244433 

 At row:46, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:46, column:141,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:141,the value of plot_cost is         : 19.670821840718308 

 At row:46, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:46, column:142,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:142,the value of plot_cost is         : 19.53793342159469 

 At row:46, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:46, column:143,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:143,the value of plot_cost is         : 19.40585306287359 

 At row:46, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:46, column:144,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:144,the value of plot_cost is         : 19.274580764555004 

 At row:46, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:46, column:145,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:145,the value of plot_cost is         : 19.144116526638932 

 At row:46, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:46, column:146,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:146,the value of plot_cost is         : 19.014460349125383 

 At row:46, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:46, column:147,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:147,the value of plot_cost is         : 18.885612232014342 

 At row:46, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:46, column:148,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:148,the value of plot_cost is         : 18.757572175305814 

 At row:46, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:46, column:149,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:149,the value of plot_cost is         : 18.630340178999806 

 At row:46, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:46, column:150,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:150,the value of plot_cost is         : 18.50391624309631 

 At row:46, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:46, column:151,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:151,the value of plot_cost is         : 18.378300367595333 

 At row:46, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:46, column:152,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:152,the value of plot_cost is         : 18.25349255249687 

 At row:46, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:46, column:153,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:153,the value of plot_cost is         : 18.129492797800918 

 At row:46, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:46, column:154,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:154,the value of plot_cost is         : 18.006301103507486 

 At row:46, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:46, column:155,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:155,the value of plot_cost is         : 17.883917469616566 

 At row:46, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:46, column:156,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:156,the value of plot_cost is         : 17.762341896128163 

 At row:46, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:46, column:157,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:157,the value of plot_cost is         : 17.641574383042272 

 At row:46, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:46, column:158,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:158,the value of plot_cost is         : 17.521614930358897 

 At row:46, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:46, column:159,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:159,the value of plot_cost is         : 17.402463538078038 

 At row:46, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:46, column:160,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:160,the value of plot_cost is         : 17.2841202061997 

 At row:46, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:46, column:161,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:161,the value of plot_cost is         : 17.16658493472387 

 At row:46, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:46, column:162,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:162,the value of plot_cost is         : 17.049857723650558 

 At row:46, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:46, column:163,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:163,the value of plot_cost is         : 16.933938572979756 

 At row:46, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:46, column:164,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:164,the value of plot_cost is         : 16.818827482711473 

 At row:46, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:46, column:165,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:165,the value of plot_cost is         : 16.704524452845703 

 At row:46, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:46, column:166,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:166,the value of plot_cost is         : 16.591029483382453 

 At row:46, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:46, column:167,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:167,the value of plot_cost is         : 16.47834257432172 

 At row:46, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:46, column:168,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:168,the value of plot_cost is         : 16.36646372566349 

 At row:46, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:46, column:169,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:169,the value of plot_cost is         : 16.25539293740778 

 At row:46, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:46, column:170,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:170,the value of plot_cost is         : 16.14513020955459 

 At row:46, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:46, column:171,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:171,the value of plot_cost is         : 16.035675542103913 

 At row:46, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:46, column:172,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:172,the value of plot_cost is         : 15.927028935055754 

 At row:46, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:46, column:173,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:173,the value of plot_cost is         : 15.819190388410101 

 At row:46, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:46, column:174,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:174,the value of plot_cost is         : 15.71215990216697 

 At row:46, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:46, column:175,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:175,the value of plot_cost is         : 15.605937476326352 

 At row:46, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:46, column:176,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:176,the value of plot_cost is         : 15.500523110888253 

 At row:46, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:46, column:177,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:177,the value of plot_cost is         : 15.395916805852668 

 At row:46, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:46, column:178,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:178,the value of plot_cost is         : 15.292118561219592 

 At row:46, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:46, column:179,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:179,the value of plot_cost is         : 15.189128376989036 

 At row:46, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:46, column:180,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:180,the value of plot_cost is         : 15.086946253160994 

 At row:46, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:46, column:181,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:181,the value of plot_cost is         : 14.985572189735468 

 At row:46, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:46, column:182,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:182,the value of plot_cost is         : 14.885006186712456 

 At row:46, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:46, column:183,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:183,the value of plot_cost is         : 14.785248244091957 

 At row:46, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:46, column:184,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:184,the value of plot_cost is         : 14.686298361873975 

 At row:46, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:46, column:185,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:185,the value of plot_cost is         : 14.58815654005851 

 At row:46, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:46, column:186,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:186,the value of plot_cost is         : 14.49082277864556 

 At row:46, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:46, column:187,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:187,the value of plot_cost is         : 14.394297077635123 

 At row:46, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:46, column:188,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:188,the value of plot_cost is         : 14.2985794370272 

 At row:46, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:46, column:189,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:189,the value of plot_cost is         : 14.203669856821795 

 At row:46, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:46, column:190,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:190,the value of plot_cost is         : 14.109568337018905 

 At row:46, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:46, column:191,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:191,the value of plot_cost is         : 14.01627487761853 

 At row:46, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:46, column:192,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:192,the value of plot_cost is         : 13.923789478620671 

 At row:46, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:46, column:193,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:193,the value of plot_cost is         : 13.832112140025323 

 At row:46, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:46, column:194,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:194,the value of plot_cost is         : 13.741242861832491 

 At row:46, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:46, column:195,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:195,the value of plot_cost is         : 13.651181644042175 

 At row:46, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:46, column:196,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:196,the value of plot_cost is         : 13.561928486654375 

 At row:46, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:46, column:197,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:197,the value of plot_cost is         : 13.47348338966909 

 At row:46, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:46, column:198,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:198,the value of plot_cost is         : 13.385846353086318 

 At row:46, column:199,the value of plot_t0 is           : 3.0
 At row:46, column:199,the value of plot_t1 is           : -0.07537688442211055
 At row:46, column:199,the value of plot_cost is         : 13.299017376906065 

 At row:47, column:0,the value of plot_t0 is           : -1.0
 At row:47, column:0,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:0,the value of plot_cost is         : 45.445115852052794 

 At row:47, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:47, column:1,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:1,the value of plot_cost is         : 45.200969059222885 

 At row:47, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:47, column:2,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:2,the value of plot_cost is         : 44.957630326795496 

 At row:47, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:47, column:3,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:3,the value of plot_cost is         : 44.71509965477062 

 At row:47, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:47, column:4,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:4,the value of plot_cost is         : 44.473377043148254 

 At row:47, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:47, column:5,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:5,the value of plot_cost is         : 44.232462491928416 

 At row:47, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:47, column:6,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:6,the value of plot_cost is         : 43.99235600111109 

 At row:47, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:47, column:7,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:7,the value of plot_cost is         : 43.753057570696264 

 At row:47, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:47, column:8,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:8,the value of plot_cost is         : 43.51456720068396 

 At row:47, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:47, column:9,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:9,the value of plot_cost is         : 43.27688489107418 

 At row:47, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:47, column:10,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:10,the value of plot_cost is         : 43.04001064186691 

 At row:47, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:47, column:11,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:11,the value of plot_cost is         : 42.803944453062144 

 At row:47, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:47, column:12,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:12,the value of plot_cost is         : 42.56868632465991 

 At row:47, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:47, column:13,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:13,the value of plot_cost is         : 42.33423625666018 

 At row:47, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:47, column:14,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:14,the value of plot_cost is         : 42.10059424906297 

 At row:47, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:47, column:15,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:15,the value of plot_cost is         : 41.86776030186828 

 At row:47, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:47, column:16,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:16,the value of plot_cost is         : 41.63573441507609 

 At row:47, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:47, column:17,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:17,the value of plot_cost is         : 41.40451658868643 

 At row:47, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:47, column:18,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:18,the value of plot_cost is         : 41.17410682269929 

 At row:47, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:47, column:19,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:19,the value of plot_cost is         : 40.94450511711464 

 At row:47, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:47, column:20,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:20,the value of plot_cost is         : 40.71571147193253 

 At row:47, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:47, column:21,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:21,the value of plot_cost is         : 40.48772588715292 

 At row:47, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:47, column:22,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:22,the value of plot_cost is         : 40.26054836277582 

 At row:47, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:47, column:23,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:23,the value of plot_cost is         : 40.03417889880126 

 At row:47, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:47, column:24,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:24,the value of plot_cost is         : 39.80861749522919 

 At row:47, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:47, column:25,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:25,the value of plot_cost is         : 39.58386415205965 

 At row:47, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:47, column:26,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:26,the value of plot_cost is         : 39.35991886929262 

 At row:47, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:47, column:27,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:27,the value of plot_cost is         : 39.13678164692811 

 At row:47, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:47, column:28,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:28,the value of plot_cost is         : 38.914452484966105 

 At row:47, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:47, column:29,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:29,the value of plot_cost is         : 38.69293138340663 

 At row:47, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:47, column:30,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:30,the value of plot_cost is         : 38.472218342249654 

 At row:47, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:47, column:31,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:31,the value of plot_cost is         : 38.2523133614952 

 At row:47, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:47, column:32,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:32,the value of plot_cost is         : 38.03321644114325 

 At row:47, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:47, column:33,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:33,the value of plot_cost is         : 37.814927581193835 

 At row:47, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:47, column:34,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:34,the value of plot_cost is         : 37.59744678164692 

 At row:47, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:47, column:35,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:35,the value of plot_cost is         : 37.38077404250254 

 At row:47, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:47, column:36,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:36,the value of plot_cost is         : 37.16490936376065 

 At row:47, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:47, column:37,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:37,the value of plot_cost is         : 36.94985274542128 

 At row:47, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:47, column:38,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:38,the value of plot_cost is         : 36.735604187484434 

 At row:47, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:47, column:39,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:39,the value of plot_cost is         : 36.522163689950105 

 At row:47, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:47, column:40,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:40,the value of plot_cost is         : 36.30953125281829 

 At row:47, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:47, column:41,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:41,the value of plot_cost is         : 36.097706876088985 

 At row:47, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:47, column:42,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:42,the value of plot_cost is         : 35.886690559762194 

 At row:47, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:47, column:43,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:43,the value of plot_cost is         : 35.67648230383792 

 At row:47, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:47, column:44,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:44,the value of plot_cost is         : 35.46708210831616 

 At row:47, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:47, column:45,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:45,the value of plot_cost is         : 35.25848997319692 

 At row:47, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:47, column:46,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:46,the value of plot_cost is         : 35.050705898480196 

 At row:47, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:47, column:47,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:47,the value of plot_cost is         : 34.84372988416598 

 At row:47, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:47, column:48,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:48,the value of plot_cost is         : 34.637561930254286 

 At row:47, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:47, column:49,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:49,the value of plot_cost is         : 34.4322020367451 

 At row:47, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:47, column:50,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:50,the value of plot_cost is         : 34.22765020363844 

 At row:47, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:47, column:51,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:51,the value of plot_cost is         : 34.02390643093428 

 At row:47, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:47, column:52,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:52,the value of plot_cost is         : 33.820970718632644 

 At row:47, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:47, column:53,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:53,the value of plot_cost is         : 33.61884306673352 

 At row:47, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:47, column:54,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:54,the value of plot_cost is         : 33.41752347523692 

 At row:47, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:47, column:55,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:55,the value of plot_cost is         : 33.217011944142826 

 At row:47, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:47, column:56,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:56,the value of plot_cost is         : 33.017308473451244 

 At row:47, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:47, column:57,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:57,the value of plot_cost is         : 32.818413063162176 

 At row:47, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:47, column:58,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:58,the value of plot_cost is         : 32.62032571327563 

 At row:47, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:47, column:59,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:59,the value of plot_cost is         : 32.423046423791604 

 At row:47, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:47, column:60,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:60,the value of plot_cost is         : 32.22657519471009 

 At row:47, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:47, column:61,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:61,the value of plot_cost is         : 32.03091202603108 

 At row:47, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:47, column:62,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:62,the value of plot_cost is         : 31.836056917754593 

 At row:47, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:47, column:63,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:63,the value of plot_cost is         : 31.642009869880628 

 At row:47, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:47, column:64,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:64,the value of plot_cost is         : 31.448770882409168 

 At row:47, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:47, column:65,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:65,the value of plot_cost is         : 31.256339955340234 

 At row:47, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:47, column:66,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:66,the value of plot_cost is         : 31.064717088673806 

 At row:47, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:47, column:67,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:67,the value of plot_cost is         : 30.87390228240989 

 At row:47, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:47, column:68,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:68,the value of plot_cost is         : 30.683895536548498 

 At row:47, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:47, column:69,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:69,the value of plot_cost is         : 30.494696851089614 

 At row:47, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:47, column:70,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:70,the value of plot_cost is         : 30.306306226033257 

 At row:47, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:47, column:71,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:71,the value of plot_cost is         : 30.118723661379402 

 At row:47, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:47, column:72,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:72,the value of plot_cost is         : 29.931949157128063 

 At row:47, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:47, column:73,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:73,the value of plot_cost is         : 29.745982713279243 

 At row:47, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:47, column:74,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:74,the value of plot_cost is         : 29.56082432983294 

 At row:47, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:47, column:75,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:75,the value of plot_cost is         : 29.376474006789152 

 At row:47, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:47, column:76,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:76,the value of plot_cost is         : 29.192931744147874 

 At row:47, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:47, column:77,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:77,the value of plot_cost is         : 29.01019754190911 

 At row:47, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:47, column:78,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:78,the value of plot_cost is         : 28.828271400072868 

 At row:47, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:47, column:79,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:79,the value of plot_cost is         : 28.64715331863914 

 At row:47, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:47, column:80,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:80,the value of plot_cost is         : 28.466843297607923 

 At row:47, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:47, column:81,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:81,the value of plot_cost is         : 28.287341336979228 

 At row:47, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:47, column:82,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:82,the value of plot_cost is         : 28.10864743675303 

 At row:47, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:47, column:83,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:83,the value of plot_cost is         : 27.930761596929365 

 At row:47, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:47, column:84,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:84,the value of plot_cost is         : 27.753683817508215 

 At row:47, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:47, column:85,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:85,the value of plot_cost is         : 27.577414098489573 

 At row:47, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:47, column:86,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:86,the value of plot_cost is         : 27.401952439873455 

 At row:47, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:47, column:87,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:87,the value of plot_cost is         : 27.227298841659838 

 At row:47, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:47, column:88,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:88,the value of plot_cost is         : 27.053453303848745 

 At row:47, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:47, column:89,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:89,the value of plot_cost is         : 26.880415826440167 

 At row:47, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:47, column:90,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:90,the value of plot_cost is         : 26.708186409434106 

 At row:47, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:47, column:91,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:91,the value of plot_cost is         : 26.53676505283056 

 At row:47, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:47, column:92,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:92,the value of plot_cost is         : 26.36615175662952 

 At row:47, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:47, column:93,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:93,the value of plot_cost is         : 26.196346520831 

 At row:47, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:47, column:94,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:94,the value of plot_cost is         : 26.027349345435 

 At row:47, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:47, column:95,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:95,the value of plot_cost is         : 25.859160230441507 

 At row:47, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:47, column:96,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:96,the value of plot_cost is         : 25.691779175850535 

 At row:47, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:47, column:97,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:97,the value of plot_cost is         : 25.525206181662075 

 At row:47, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:47, column:98,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:98,the value of plot_cost is         : 25.359441247876134 

 At row:47, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:47, column:99,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:99,the value of plot_cost is         : 25.19448437449271 

 At row:47, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:47, column:100,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:100,the value of plot_cost is         : 25.030335561511794 

 At row:47, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:47, column:101,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:101,the value of plot_cost is         : 24.8669948089334 

 At row:47, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:47, column:102,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:102,the value of plot_cost is         : 24.704462116757508 

 At row:47, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:47, column:103,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:103,the value of plot_cost is         : 24.542737484984144 

 At row:47, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:47, column:104,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:104,the value of plot_cost is         : 24.38182091361329 

 At row:47, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:47, column:105,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:105,the value of plot_cost is         : 24.221712402644958 

 At row:47, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:47, column:106,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:106,the value of plot_cost is         : 24.06241195207913 

 At row:47, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:47, column:107,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:107,the value of plot_cost is         : 23.90391956191582 

 At row:47, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:47, column:108,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:108,the value of plot_cost is         : 23.74623523215503 

 At row:47, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:47, column:109,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:109,the value of plot_cost is         : 23.58935896279675 

 At row:47, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:47, column:110,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:110,the value of plot_cost is         : 23.433290753840993 

 At row:47, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:47, column:111,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:111,the value of plot_cost is         : 23.278030605287746 

 At row:47, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:47, column:112,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:112,the value of plot_cost is         : 23.12357851713701 

 At row:47, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:47, column:113,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:113,the value of plot_cost is         : 22.96993448938879 

 At row:47, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:47, column:114,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:114,the value of plot_cost is         : 22.817098522043093 

 At row:47, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:47, column:115,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:115,the value of plot_cost is         : 22.665070615099907 

 At row:47, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:47, column:116,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:116,the value of plot_cost is         : 22.513850768559237 

 At row:47, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:47, column:117,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:117,the value of plot_cost is         : 22.363438982421076 

 At row:47, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:47, column:118,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:118,the value of plot_cost is         : 22.213835256685435 

 At row:47, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:47, column:119,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:119,the value of plot_cost is         : 22.065039591352306 

 At row:47, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:47, column:120,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:120,the value of plot_cost is         : 21.917051986421693 

 At row:47, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:47, column:121,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:121,the value of plot_cost is         : 21.769872441893604 

 At row:47, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:47, column:122,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:122,the value of plot_cost is         : 21.62350095776802 

 At row:47, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:47, column:123,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:123,the value of plot_cost is         : 21.477937534044955 

 At row:47, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:47, column:124,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:124,the value of plot_cost is         : 21.3331821707244 

 At row:47, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:47, column:125,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:125,the value of plot_cost is         : 21.189234867806366 

 At row:47, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:47, column:126,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:126,the value of plot_cost is         : 21.04609562529085 

 At row:47, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:47, column:127,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:127,the value of plot_cost is         : 20.903764443177838 

 At row:47, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:47, column:128,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:128,the value of plot_cost is         : 20.76224132146735 

 At row:47, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:47, column:129,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:129,the value of plot_cost is         : 20.62152626015937 

 At row:47, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:47, column:130,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:130,the value of plot_cost is         : 20.481619259253907 

 At row:47, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:47, column:131,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:131,the value of plot_cost is         : 20.342520318750967 

 At row:47, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:47, column:132,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:132,the value of plot_cost is         : 20.204229438650533 

 At row:47, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:47, column:133,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:133,the value of plot_cost is         : 20.06674661895262 

 At row:47, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:47, column:134,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:134,the value of plot_cost is         : 19.93007185965722 

 At row:47, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:47, column:135,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:135,the value of plot_cost is         : 19.79420516076434 

 At row:47, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:47, column:136,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:136,the value of plot_cost is         : 19.659146522273968 

 At row:47, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:47, column:137,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:137,the value of plot_cost is         : 19.52489594418611 

 At row:47, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:47, column:138,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:138,the value of plot_cost is         : 19.39145342650077 

 At row:47, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:47, column:139,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:139,the value of plot_cost is         : 19.258818969217945 

 At row:47, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:47, column:140,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:140,the value of plot_cost is         : 19.126992572337638 

 At row:47, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:47, column:141,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:141,the value of plot_cost is         : 18.995974235859844 

 At row:47, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:47, column:142,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:142,the value of plot_cost is         : 18.865763959784562 

 At row:47, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:47, column:143,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:143,the value of plot_cost is         : 18.7363617441118 

 At row:47, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:47, column:144,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:144,the value of plot_cost is         : 18.60776758884155 

 At row:47, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:47, column:145,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:145,the value of plot_cost is         : 18.479981493973813 

 At row:47, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:47, column:146,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:146,the value of plot_cost is         : 18.353003459508596 

 At row:47, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:47, column:147,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:147,the value of plot_cost is         : 18.226833485445894 

 At row:47, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:47, column:148,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:148,the value of plot_cost is         : 18.101471571785705 

 At row:47, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:47, column:149,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:149,the value of plot_cost is         : 17.976917718528032 

 At row:47, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:47, column:150,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:150,the value of plot_cost is         : 17.85317192567287 

 At row:47, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:47, column:151,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:151,the value of plot_cost is         : 17.730234193220223 

 At row:47, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:47, column:152,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:152,the value of plot_cost is         : 17.608104521170095 

 At row:47, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:47, column:153,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:153,the value of plot_cost is         : 17.486782909522486 

 At row:47, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:47, column:154,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:154,the value of plot_cost is         : 17.366269358277385 

 At row:47, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:47, column:155,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:155,the value of plot_cost is         : 17.2465638674348 

 At row:47, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:47, column:156,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:156,the value of plot_cost is         : 17.127666436994733 

 At row:47, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:47, column:157,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:157,the value of plot_cost is         : 17.00957706695718 

 At row:47, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:47, column:158,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:158,the value of plot_cost is         : 16.89229575732214 

 At row:47, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:47, column:159,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:159,the value of plot_cost is         : 16.77582250808962 

 At row:47, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:47, column:160,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:160,the value of plot_cost is         : 16.660157319259614 

 At row:47, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:47, column:161,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:161,the value of plot_cost is         : 16.545300190832116 

 At row:47, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:47, column:162,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:162,the value of plot_cost is         : 16.431251122807144 

 At row:47, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:47, column:163,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:163,the value of plot_cost is         : 16.31801011518468 

 At row:47, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:47, column:164,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:164,the value of plot_cost is         : 16.20557716796473 

 At row:47, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:47, column:165,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:165,the value of plot_cost is         : 16.0939522811473 

 At row:47, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:47, column:166,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:166,the value of plot_cost is         : 15.98313545473238 

 At row:47, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:47, column:167,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:167,the value of plot_cost is         : 15.87312668871998 

 At row:47, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:47, column:168,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:168,the value of plot_cost is         : 15.763925983110095 

 At row:47, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:47, column:169,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:169,the value of plot_cost is         : 15.655533337902721 

 At row:47, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:47, column:170,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:170,the value of plot_cost is         : 15.547948753097863 

 At row:47, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:47, column:171,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:171,the value of plot_cost is         : 15.441172228695521 

 At row:47, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:47, column:172,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:172,the value of plot_cost is         : 15.335203764695697 

 At row:47, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:47, column:173,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:173,the value of plot_cost is         : 15.230043361098385 

 At row:47, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:47, column:174,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:174,the value of plot_cost is         : 15.125691017903588 

 At row:47, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:47, column:175,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:175,the value of plot_cost is         : 15.022146735111306 

 At row:47, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:47, column:176,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:176,the value of plot_cost is         : 14.919410512721536 

 At row:47, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:47, column:177,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:177,the value of plot_cost is         : 14.817482350734286 

 At row:47, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:47, column:178,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:178,the value of plot_cost is         : 14.716362249149551 

 At row:47, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:47, column:179,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:179,the value of plot_cost is         : 14.616050207967334 

 At row:47, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:47, column:180,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:180,the value of plot_cost is         : 14.516546227187623 

 At row:47, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:47, column:181,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:181,the value of plot_cost is         : 14.417850306810431 

 At row:47, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:47, column:182,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:182,the value of plot_cost is         : 14.319962446835756 

 At row:47, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:47, column:183,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:183,the value of plot_cost is         : 14.222882647263596 

 At row:47, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:47, column:184,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:184,the value of plot_cost is         : 14.126610908093953 

 At row:47, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:47, column:185,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:185,the value of plot_cost is         : 14.03114722932682 

 At row:47, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:47, column:186,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:186,the value of plot_cost is         : 13.936491610962202 

 At row:47, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:47, column:187,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:187,the value of plot_cost is         : 13.842644053000104 

 At row:47, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:47, column:188,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:188,the value of plot_cost is         : 13.749604555440518 

 At row:47, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:47, column:189,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:189,the value of plot_cost is         : 13.65737311828345 

 At row:47, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:47, column:190,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:190,the value of plot_cost is         : 13.565949741528891 

 At row:47, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:47, column:191,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:191,the value of plot_cost is         : 13.475334425176849 

 At row:47, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:47, column:192,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:192,the value of plot_cost is         : 13.385527169227327 

 At row:47, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:47, column:193,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:193,the value of plot_cost is         : 13.296527973680318 

 At row:47, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:47, column:194,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:194,the value of plot_cost is         : 13.208336838535823 

 At row:47, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:47, column:195,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:195,the value of plot_cost is         : 13.120953763793842 

 At row:47, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:47, column:196,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:196,the value of plot_cost is         : 13.034378749454376 

 At row:47, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:47, column:197,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:197,the value of plot_cost is         : 12.948611795517426 

 At row:47, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:47, column:198,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:198,the value of plot_cost is         : 12.863652901982993 

 At row:47, column:199,the value of plot_t0 is           : 3.0
 At row:47, column:199,the value of plot_t1 is           : -0.055276381909547756
 At row:47, column:199,the value of plot_cost is         : 12.779502068851075 

 At row:48, column:0,the value of plot_t0 is           : -1.0
 At row:48, column:0,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:0,the value of plot_cost is         : 44.40523273221816 

 At row:48, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:48, column:1,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:1,the value of plot_cost is         : 44.163764082436586 

 At row:48, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:48, column:2,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:2,the value of plot_cost is         : 43.92310349305753 

 At row:48, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:48, column:3,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:3,the value of plot_cost is         : 43.68325096408099 

 At row:48, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:48, column:4,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:4,the value of plot_cost is         : 43.44420649550696 

 At row:48, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:48, column:5,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:5,the value of plot_cost is         : 43.20597008733546 

 At row:48, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:48, column:6,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:6,the value of plot_cost is         : 42.96854173956646 

 At row:48, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:48, column:7,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:7,the value of plot_cost is         : 42.73192145219998 

 At row:48, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:48, column:8,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:8,the value of plot_cost is         : 42.49610922523601 

 At row:48, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:48, column:9,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:9,the value of plot_cost is         : 42.261105058674566 

 At row:48, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:48, column:10,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:10,the value of plot_cost is         : 42.026908952515626 

 At row:48, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:48, column:11,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:11,the value of plot_cost is         : 41.793520906759206 

 At row:48, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:48, column:12,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:12,the value of plot_cost is         : 41.560940921405304 

 At row:48, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:48, column:13,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:13,the value of plot_cost is         : 41.329168996453916 

 At row:48, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:48, column:14,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:14,the value of plot_cost is         : 41.09820513190504 

 At row:48, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:48, column:15,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:15,the value of plot_cost is         : 40.868049327758676 

 At row:48, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:48, column:16,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:16,the value of plot_cost is         : 40.63870158401483 

 At row:48, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:48, column:17,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:17,the value of plot_cost is         : 40.4101619006735 

 At row:48, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:48, column:18,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:18,the value of plot_cost is         : 40.18243027773469 

 At row:48, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:48, column:19,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:19,the value of plot_cost is         : 39.955506715198396 

 At row:48, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:48, column:20,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:20,the value of plot_cost is         : 39.729391213064595 

 At row:48, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:48, column:21,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:21,the value of plot_cost is         : 39.504083771333335 

 At row:48, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:48, column:22,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:22,the value of plot_cost is         : 39.27958439000458 

 At row:48, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:48, column:23,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:23,the value of plot_cost is         : 39.05589306907834 

 At row:48, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:48, column:24,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:24,the value of plot_cost is         : 38.83300980855462 

 At row:48, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:48, column:25,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:25,the value of plot_cost is         : 38.6109346084334 

 At row:48, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:48, column:26,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:26,the value of plot_cost is         : 38.38966746871471 

 At row:48, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:48, column:27,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:27,the value of plot_cost is         : 38.169208389398534 

 At row:48, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:48, column:28,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:28,the value of plot_cost is         : 37.949557370484875 

 At row:48, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:48, column:29,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:29,the value of plot_cost is         : 37.73071441197373 

 At row:48, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:48, column:30,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:30,the value of plot_cost is         : 37.51267951386509 

 At row:48, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:48, column:31,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:31,the value of plot_cost is         : 37.295452676158966 

 At row:48, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:48, column:32,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:32,the value of plot_cost is         : 37.079033898855364 

 At row:48, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:48, column:33,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:33,the value of plot_cost is         : 36.86342318195428 

 At row:48, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:48, column:34,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:34,the value of plot_cost is         : 36.648620525455705 

 At row:48, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:48, column:35,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:35,the value of plot_cost is         : 36.43462592935964 

 At row:48, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:48, column:36,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:36,the value of plot_cost is         : 36.2214393936661 

 At row:48, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:48, column:37,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:37,the value of plot_cost is         : 36.00906091837508 

 At row:48, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:48, column:38,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:38,the value of plot_cost is         : 35.797490503486564 

 At row:48, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:48, column:39,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:39,the value of plot_cost is         : 35.58672814900056 

 At row:48, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:48, column:40,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:40,the value of plot_cost is         : 35.37677385491708 

 At row:48, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:48, column:41,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:41,the value of plot_cost is         : 35.16762762123611 

 At row:48, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:48, column:42,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:42,the value of plot_cost is         : 34.95928944795766 

 At row:48, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:48, column:43,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:43,the value of plot_cost is         : 34.75175933508173 

 At row:48, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:48, column:44,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:44,the value of plot_cost is         : 34.5450372826083 

 At row:48, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:48, column:45,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:45,the value of plot_cost is         : 34.339123290537394 

 At row:48, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:48, column:46,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:46,the value of plot_cost is         : 34.134017358868995 

 At row:48, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:48, column:47,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:47,the value of plot_cost is         : 33.92971948760313 

 At row:48, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:48, column:48,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:48,the value of plot_cost is         : 33.72622967673976 

 At row:48, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:48, column:49,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:49,the value of plot_cost is         : 33.523547926278916 

 At row:48, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:48, column:50,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:50,the value of plot_cost is         : 33.32167423622058 

 At row:48, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:48, column:51,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:51,the value of plot_cost is         : 33.120608606564765 

 At row:48, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:48, column:52,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:52,the value of plot_cost is         : 32.92035103731146 

 At row:48, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:48, column:53,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:53,the value of plot_cost is         : 32.72090152846068 

 At row:48, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:48, column:54,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:54,the value of plot_cost is         : 32.52226008001241 

 At row:48, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:48, column:55,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:55,the value of plot_cost is         : 32.32442669196664 

 At row:48, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:48, column:56,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:56,the value of plot_cost is         : 32.12740136432341 

 At row:48, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:48, column:57,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:57,the value of plot_cost is         : 31.931184097082685 

 At row:48, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:48, column:58,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:58,the value of plot_cost is         : 31.735774890244475 

 At row:48, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:48, column:59,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:59,the value of plot_cost is         : 31.541173743808777 

 At row:48, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:48, column:60,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:60,the value of plot_cost is         : 31.34738065777559 

 At row:48, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:48, column:61,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:61,the value of plot_cost is         : 31.154395632144926 

 At row:48, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:48, column:62,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:62,the value of plot_cost is         : 30.962218666916783 

 At row:48, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:48, column:63,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:63,the value of plot_cost is         : 30.770849762091146 

 At row:48, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:48, column:64,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:64,the value of plot_cost is         : 30.58028891766802 

 At row:48, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:48, column:65,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:65,the value of plot_cost is         : 30.390536133647416 

 At row:48, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:48, column:66,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:66,the value of plot_cost is         : 30.201591410029327 

 At row:48, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:48, column:67,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:67,the value of plot_cost is         : 30.013454746813753 

 At row:48, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:48, column:68,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:68,the value of plot_cost is         : 29.826126144000696 

 At row:48, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:48, column:69,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:69,the value of plot_cost is         : 29.63960560159015 

 At row:48, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:48, column:70,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:70,the value of plot_cost is         : 29.45389311958212 

 At row:48, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:48, column:71,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:71,the value of plot_cost is         : 29.2689886979766 

 At row:48, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:48, column:72,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:72,the value of plot_cost is         : 29.0848923367736 

 At row:48, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:48, column:73,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:73,the value of plot_cost is         : 28.901604035973115 

 At row:48, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:48, column:74,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:74,the value of plot_cost is         : 28.719123795575147 

 At row:48, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:48, column:75,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:75,the value of plot_cost is         : 28.537451615579688 

 At row:48, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:48, column:76,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:76,the value of plot_cost is         : 28.35658749598675 

 At row:48, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:48, column:77,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:77,the value of plot_cost is         : 28.176531436796328 

 At row:48, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:48, column:78,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:78,the value of plot_cost is         : 27.997283438008424 

 At row:48, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:48, column:79,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:79,the value of plot_cost is         : 27.81884349962302 

 At row:48, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:48, column:80,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:80,the value of plot_cost is         : 27.641211621640146 

 At row:48, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:48, column:81,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:81,the value of plot_cost is         : 27.464387804059783 

 At row:48, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:48, column:82,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:82,the value of plot_cost is         : 27.288372046881932 

 At row:48, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:48, column:83,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:83,the value of plot_cost is         : 27.113164350106597 

 At row:48, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:48, column:84,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:84,the value of plot_cost is         : 26.93876471373378 

 At row:48, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:48, column:85,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:85,the value of plot_cost is         : 26.765173137763476 

 At row:48, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:48, column:86,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:86,the value of plot_cost is         : 26.592389622195686 

 At row:48, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:48, column:87,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:87,the value of plot_cost is         : 26.420414167030412 

 At row:48, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:48, column:88,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:88,the value of plot_cost is         : 26.249246772267654 

 At row:48, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:48, column:89,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:89,the value of plot_cost is         : 26.078887437907415 

 At row:48, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:48, column:90,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:90,the value of plot_cost is         : 25.909336163949682 

 At row:48, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:48, column:91,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:91,the value of plot_cost is         : 25.740592950394472 

 At row:48, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:48, column:92,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:92,the value of plot_cost is         : 25.57265779724177 

 At row:48, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:48, column:93,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:93,the value of plot_cost is         : 25.40553070449159 

 At row:48, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:48, column:94,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:94,the value of plot_cost is         : 25.239211672143917 

 At row:48, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:48, column:95,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:95,the value of plot_cost is         : 25.073700700198764 

 At row:48, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:48, column:96,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:96,the value of plot_cost is         : 24.908997788656126 

 At row:48, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:48, column:97,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:97,the value of plot_cost is         : 24.74510293751601 

 At row:48, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:48, column:98,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:98,the value of plot_cost is         : 24.582016146778397 

 At row:48, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:48, column:99,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:99,the value of plot_cost is         : 24.419737416443308 

 At row:48, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:48, column:100,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:100,the value of plot_cost is         : 24.258266746510728 

 At row:48, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:48, column:101,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:101,the value of plot_cost is         : 24.097604136980667 

 At row:48, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:48, column:102,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:102,the value of plot_cost is         : 23.937749587853123 

 At row:48, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:48, column:103,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:103,the value of plot_cost is         : 23.778703099128087 

 At row:48, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:48, column:104,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:104,the value of plot_cost is         : 23.620464670805564 

 At row:48, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:48, column:105,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:105,the value of plot_cost is         : 23.463034302885568 

 At row:48, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:48, column:106,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:106,the value of plot_cost is         : 23.30641199536808 

 At row:48, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:48, column:107,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:107,the value of plot_cost is         : 23.15059774825311 

 At row:48, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:48, column:108,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:108,the value of plot_cost is         : 22.995591561540653 

 At row:48, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:48, column:109,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:109,the value of plot_cost is         : 22.84139343523071 

 At row:48, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:48, column:110,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:110,the value of plot_cost is         : 22.688003369323283 

 At row:48, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:48, column:111,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:111,the value of plot_cost is         : 22.535421363818372 

 At row:48, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:48, column:112,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:112,the value of plot_cost is         : 22.38364741871598 

 At row:48, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:48, column:113,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:113,the value of plot_cost is         : 22.2326815340161 

 At row:48, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:48, column:114,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:114,the value of plot_cost is         : 22.082523709718725 

 At row:48, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:48, column:115,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:115,the value of plot_cost is         : 21.933173945823878 

 At row:48, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:48, column:116,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:116,the value of plot_cost is         : 21.78463224233154 

 At row:48, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:48, column:117,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:117,the value of plot_cost is         : 21.63689859924172 

 At row:48, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:48, column:118,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:118,the value of plot_cost is         : 21.48997301655442 

 At row:48, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:48, column:119,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:119,the value of plot_cost is         : 21.343855494269622 

 At row:48, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:48, column:120,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:120,the value of plot_cost is         : 21.198546032387345 

 At row:48, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:48, column:121,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:121,the value of plot_cost is         : 21.054044630907587 

 At row:48, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:48, column:122,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:122,the value of plot_cost is         : 20.910351289830345 

 At row:48, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:48, column:123,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:123,the value of plot_cost is         : 20.767466009155616 

 At row:48, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:48, column:124,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:124,the value of plot_cost is         : 20.625388788883395 

 At row:48, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:48, column:125,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:125,the value of plot_cost is         : 20.484119629013694 

 At row:48, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:48, column:126,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:126,the value of plot_cost is         : 20.343658529546513 

 At row:48, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:48, column:127,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:127,the value of plot_cost is         : 20.204005490481837 

 At row:48, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:48, column:128,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:128,the value of plot_cost is         : 20.065160511819688 

 At row:48, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:48, column:129,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:129,the value of plot_cost is         : 19.927123593560044 

 At row:48, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:48, column:130,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:130,the value of plot_cost is         : 19.78989473570292 

 At row:48, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:48, column:131,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:131,the value of plot_cost is         : 19.65347393824831 

 At row:48, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:48, column:132,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:132,the value of plot_cost is         : 19.517861201196215 

 At row:48, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:48, column:133,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:133,the value of plot_cost is         : 19.383056524546635 

 At row:48, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:48, column:134,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:134,the value of plot_cost is         : 19.24905990829957 

 At row:48, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:48, column:135,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:135,the value of plot_cost is         : 19.11587135245502 

 At row:48, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:48, column:136,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:136,the value of plot_cost is         : 18.983490857012992 

 At row:48, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:48, column:137,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:137,the value of plot_cost is         : 18.85191842197347 

 At row:48, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:48, column:138,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:138,the value of plot_cost is         : 18.721154047336466 

 At row:48, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:48, column:139,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:139,the value of plot_cost is         : 18.59119773310198 

 At row:48, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:48, column:140,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:140,the value of plot_cost is         : 18.462049479270004 

 At row:48, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:48, column:141,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:141,the value of plot_cost is         : 18.33370928584055 

 At row:48, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:48, column:142,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:142,the value of plot_cost is         : 18.206177152813602 

 At row:48, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:48, column:143,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:143,the value of plot_cost is         : 18.07945308018917 

 At row:48, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:48, column:144,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:144,the value of plot_cost is         : 17.953537067967257 

 At row:48, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:48, column:145,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:145,the value of plot_cost is         : 17.828429116147856 

 At row:48, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:48, column:146,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:146,the value of plot_cost is         : 17.704129224730977 

 At row:48, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:48, column:147,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:147,the value of plot_cost is         : 17.58063739371661 

 At row:48, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:48, column:148,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:148,the value of plot_cost is         : 17.457953623104757 

 At row:48, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:48, column:149,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:149,the value of plot_cost is         : 17.336077912895416 

 At row:48, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:48, column:150,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:150,the value of plot_cost is         : 17.21501026308859 

 At row:48, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:48, column:151,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:151,the value of plot_cost is         : 17.094750673684285 

 At row:48, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:48, column:152,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:152,the value of plot_cost is         : 16.975299144682495 

 At row:48, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:48, column:153,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:153,the value of plot_cost is         : 16.856655676083218 

 At row:48, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:48, column:154,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:154,the value of plot_cost is         : 16.738820267886453 

 At row:48, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:48, column:155,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:155,the value of plot_cost is         : 16.621792920092204 

 At row:48, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:48, column:156,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:156,the value of plot_cost is         : 16.50557363270047 

 At row:48, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:48, column:157,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:157,the value of plot_cost is         : 16.390162405711255 

 At row:48, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:48, column:158,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:158,the value of plot_cost is         : 16.27555923912455 

 At row:48, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:48, column:159,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:159,the value of plot_cost is         : 16.161764132940366 

 At row:48, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:48, column:160,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:160,the value of plot_cost is         : 16.048777087158687 

 At row:48, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:48, column:161,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:161,the value of plot_cost is         : 15.936598101779534 

 At row:48, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:48, column:162,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:162,the value of plot_cost is         : 15.825227176802894 

 At row:48, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:48, column:163,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:163,the value of plot_cost is         : 15.714664312228766 

 At row:48, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:48, column:164,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:164,the value of plot_cost is         : 15.604909508057155 

 At row:48, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:48, column:165,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:165,the value of plot_cost is         : 15.495962764288057 

 At row:48, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:48, column:166,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:166,the value of plot_cost is         : 15.387824080921478 

 At row:48, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:48, column:167,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:167,the value of plot_cost is         : 15.28049345795741 

 At row:48, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:48, column:168,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:168,the value of plot_cost is         : 15.17397089539586 

 At row:48, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:48, column:169,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:169,the value of plot_cost is         : 15.068256393236823 

 At row:48, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:48, column:170,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:170,the value of plot_cost is         : 14.9633499514803 

 At row:48, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:48, column:171,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:171,the value of plot_cost is         : 14.859251570126295 

 At row:48, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:48, column:172,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:172,the value of plot_cost is         : 14.755961249174804 

 At row:48, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:48, column:173,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:173,the value of plot_cost is         : 14.653478988625828 

 At row:48, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:48, column:174,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:174,the value of plot_cost is         : 14.551804788479366 

 At row:48, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:48, column:175,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:175,the value of plot_cost is         : 14.45093864873542 

 At row:48, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:48, column:176,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:176,the value of plot_cost is         : 14.350880569393988 

 At row:48, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:48, column:177,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:177,the value of plot_cost is         : 14.251630550455076 

 At row:48, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:48, column:178,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:178,the value of plot_cost is         : 14.153188591918678 

 At row:48, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:48, column:179,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:179,the value of plot_cost is         : 14.055554693784789 

 At row:48, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:48, column:180,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:180,the value of plot_cost is         : 13.958728856053417 

 At row:48, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:48, column:181,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:181,the value of plot_cost is         : 13.862711078724562 

 At row:48, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:48, column:182,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:182,the value of plot_cost is         : 13.767501361798224 

 At row:48, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:48, column:183,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:183,the value of plot_cost is         : 13.6730997052744 

 At row:48, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:48, column:184,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:184,the value of plot_cost is         : 13.579506109153087 

 At row:48, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:48, column:185,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:185,the value of plot_cost is         : 13.48672057343429 

 At row:48, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:48, column:186,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:186,the value of plot_cost is         : 13.39474309811801 

 At row:48, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:48, column:187,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:187,the value of plot_cost is         : 13.30357368320425 

 At row:48, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:48, column:188,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:188,the value of plot_cost is         : 13.213212328692999 

 At row:48, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:48, column:189,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:189,the value of plot_cost is         : 13.12365903458426 

 At row:48, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:48, column:190,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:190,the value of plot_cost is         : 13.03491380087804 

 At row:48, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:48, column:191,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:191,the value of plot_cost is         : 12.946976627574339 

 At row:48, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:48, column:192,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:192,the value of plot_cost is         : 12.85984751467315 

 At row:48, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:48, column:193,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:193,the value of plot_cost is         : 12.773526462174477 

 At row:48, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:48, column:194,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:194,the value of plot_cost is         : 12.688013470078314 

 At row:48, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:48, column:195,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:195,the value of plot_cost is         : 12.603308538384672 

 At row:48, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:48, column:196,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:196,the value of plot_cost is         : 12.519411667093543 

 At row:48, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:48, column:197,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:197,the value of plot_cost is         : 12.436322856204928 

 At row:48, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:48, column:198,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:198,the value of plot_cost is         : 12.354042105718833 

 At row:48, column:199,the value of plot_t0 is           : 3.0
 At row:48, column:199,the value of plot_t1 is           : -0.035175879396984966
 At row:48, column:199,the value of plot_cost is         : 12.272569415635246 

 At row:49, column:0,the value of plot_t0 is           : -1.0
 At row:49, column:0,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:0,the value of plot_cost is         : 43.37793226722268 

 At row:49, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:49, column:1,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:1,the value of plot_cost is         : 43.13914176048945 

 At row:49, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:49, column:2,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:2,the value of plot_cost is         : 42.90115931415874 

 At row:49, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:49, column:3,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:3,the value of plot_cost is         : 42.66398492823051 

 At row:49, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:49, column:4,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:4,the value of plot_cost is         : 42.42761860270483 

 At row:49, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:49, column:5,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:5,the value of plot_cost is         : 42.192060337581665 

 At row:49, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:49, column:6,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:6,the value of plot_cost is         : 41.957310132861 

 At row:49, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:49, column:7,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:7,the value of plot_cost is         : 41.723367988542854 

 At row:49, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:49, column:8,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:8,the value of plot_cost is         : 41.49023390462722 

 At row:49, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:49, column:9,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:9,the value of plot_cost is         : 41.25790788111411 

 At row:49, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:49, column:10,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:10,the value of plot_cost is         : 41.02638991800351 

 At row:49, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:49, column:11,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:11,the value of plot_cost is         : 40.795680015295424 

 At row:49, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:49, column:12,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:12,the value of plot_cost is         : 40.56577817298985 

 At row:49, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:49, column:13,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:13,the value of plot_cost is         : 40.336684391086806 

 At row:49, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:49, column:14,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:14,the value of plot_cost is         : 40.10839866958626 

 At row:49, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:49, column:15,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:15,the value of plot_cost is         : 39.88092100848823 

 At row:49, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:49, column:16,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:16,the value of plot_cost is         : 39.654251407792735 

 At row:49, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:49, column:17,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:17,the value of plot_cost is         : 39.42838986749973 

 At row:49, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:49, column:18,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:18,the value of plot_cost is         : 39.203336387609255 

 At row:49, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:49, column:19,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:19,the value of plot_cost is         : 38.97909096812129 

 At row:49, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:49, column:20,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:20,the value of plot_cost is         : 38.755653609035846 

 At row:49, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:49, column:21,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:21,the value of plot_cost is         : 38.53302431035291 

 At row:49, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:49, column:22,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:22,the value of plot_cost is         : 38.311203072072495 

 At row:49, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:49, column:23,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:23,the value of plot_cost is         : 38.09018989419459 

 At row:49, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:49, column:24,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:24,the value of plot_cost is         : 37.8699847767192 

 At row:49, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:49, column:25,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:25,the value of plot_cost is         : 37.650587719646325 

 At row:49, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:49, column:26,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:26,the value of plot_cost is         : 37.43199872297596 

 At row:49, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:49, column:27,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:27,the value of plot_cost is         : 37.21421778670812 

 At row:49, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:49, column:28,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:28,the value of plot_cost is         : 36.997244910842795 

 At row:49, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:49, column:29,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:29,the value of plot_cost is         : 36.781080095379984 

 At row:49, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:49, column:30,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:30,the value of plot_cost is         : 36.565723340319686 

 At row:49, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:49, column:31,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:31,the value of plot_cost is         : 36.3511746456619 

 At row:49, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:49, column:32,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:32,the value of plot_cost is         : 36.13743401140663 

 At row:49, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:49, column:33,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:33,the value of plot_cost is         : 35.92450143755388 

 At row:49, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:49, column:34,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:34,the value of plot_cost is         : 35.712376924103644 

 At row:49, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:49, column:35,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:35,the value of plot_cost is         : 35.501060471055915 

 At row:49, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:49, column:36,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:36,the value of plot_cost is         : 35.29055207841071 

 At row:49, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:49, column:37,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:37,the value of plot_cost is         : 35.080851746168015 

 At row:49, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:49, column:38,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:38,the value of plot_cost is         : 34.871959474327845 

 At row:49, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:49, column:39,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:39,the value of plot_cost is         : 34.66387526289019 

 At row:49, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:49, column:40,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:40,the value of plot_cost is         : 34.456599111855034 

 At row:49, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:49, column:41,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:41,the value of plot_cost is         : 34.2501310212224 

 At row:49, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:49, column:42,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:42,the value of plot_cost is         : 34.04447099099229 

 At row:49, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:49, column:43,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:43,the value of plot_cost is         : 33.83961902116468 

 At row:49, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:49, column:44,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:44,the value of plot_cost is         : 33.6355751117396 

 At row:49, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:49, column:45,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:45,the value of plot_cost is         : 33.43233926271702 

 At row:49, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:49, column:46,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:46,the value of plot_cost is         : 33.22991147409697 

 At row:49, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:49, column:47,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:47,the value of plot_cost is         : 33.02829174587942 

 At row:49, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:49, column:48,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:48,the value of plot_cost is         : 32.827480078064404 

 At row:49, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:49, column:49,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:49,the value of plot_cost is         : 32.627476470651885 

 At row:49, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:49, column:50,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:50,the value of plot_cost is         : 32.4282809236419 

 At row:49, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:49, column:51,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:51,the value of plot_cost is         : 32.22989343703441 

 At row:49, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:49, column:52,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:52,the value of plot_cost is         : 32.032314010829445 

 At row:49, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:49, column:53,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:53,the value of plot_cost is         : 31.835542645026997 

 At row:49, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:49, column:54,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:54,the value of plot_cost is         : 31.639579339627062 

 At row:49, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:49, column:55,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:55,the value of plot_cost is         : 31.44442409462964 

 At row:49, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:49, column:56,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:56,the value of plot_cost is         : 31.250076910034732 

 At row:49, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:49, column:57,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:57,the value of plot_cost is         : 31.05653778584234 

 At row:49, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:49, column:58,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:58,the value of plot_cost is         : 30.86380672205247 

 At row:49, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:49, column:59,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:59,the value of plot_cost is         : 30.67188371866511 

 At row:49, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:49, column:60,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:60,the value of plot_cost is         : 30.48076877568026 

 At row:49, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:49, column:61,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:61,the value of plot_cost is         : 30.290461893097934 

 At row:49, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:49, column:62,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:62,the value of plot_cost is         : 30.10096307091812 

 At row:49, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:49, column:63,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:63,the value of plot_cost is         : 29.91227230914082 

 At row:49, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:49, column:64,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:64,the value of plot_cost is         : 29.724389607766035 

 At row:49, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:49, column:65,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:65,the value of plot_cost is         : 29.537314966793762 

 At row:49, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:49, column:66,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:66,the value of plot_cost is         : 29.351048386224008 

 At row:49, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:49, column:67,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:67,the value of plot_cost is         : 29.16558986605677 

 At row:49, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:49, column:68,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:68,the value of plot_cost is         : 28.98093940629205 

 At row:49, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:49, column:69,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:69,the value of plot_cost is         : 28.797097006929835 

 At row:49, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:49, column:70,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:70,the value of plot_cost is         : 28.614062667970135 

 At row:49, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:49, column:71,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:71,the value of plot_cost is         : 28.43183638941296 

 At row:49, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:49, column:72,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:72,the value of plot_cost is         : 28.250418171258296 

 At row:49, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:49, column:73,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:73,the value of plot_cost is         : 28.069808013506147 

 At row:49, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:49, column:74,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:74,the value of plot_cost is         : 27.890005916156515 

 At row:49, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:49, column:75,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:75,the value of plot_cost is         : 27.711011879209394 

 At row:49, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:49, column:76,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:76,the value of plot_cost is         : 27.53282590266479 

 At row:49, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:49, column:77,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:77,the value of plot_cost is         : 27.355447986522705 

 At row:49, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:49, column:78,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:78,the value of plot_cost is         : 27.178878130783126 

 At row:49, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:49, column:79,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:79,the value of plot_cost is         : 27.003116335446073 

 At row:49, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:49, column:80,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:80,the value of plot_cost is         : 26.828162600511526 

 At row:49, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:49, column:81,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:81,the value of plot_cost is         : 26.654016925979494 

 At row:49, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:49, column:82,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:82,the value of plot_cost is         : 26.480679311849983 

 At row:49, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:49, column:83,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:83,the value of plot_cost is         : 26.308149758122987 

 At row:49, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:49, column:84,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:84,the value of plot_cost is         : 26.136428264798504 

 At row:49, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:49, column:85,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:85,the value of plot_cost is         : 25.965514831876533 

 At row:49, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:49, column:86,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:86,the value of plot_cost is         : 25.79540945935708 

 At row:49, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:49, column:87,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:87,the value of plot_cost is         : 25.626112147240143 

 At row:49, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:49, column:88,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:88,the value of plot_cost is         : 25.45762289552572 

 At row:49, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:49, column:89,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:89,the value of plot_cost is         : 25.289941704213817 

 At row:49, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:49, column:90,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:90,the value of plot_cost is         : 25.12306857330442 

 At row:49, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:49, column:91,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:91,the value of plot_cost is         : 24.957003502797544 

 At row:49, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:49, column:92,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:92,the value of plot_cost is         : 24.791746492693182 

 At row:49, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:49, column:93,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:93,the value of plot_cost is         : 24.627297542991336 

 At row:49, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:49, column:94,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:94,the value of plot_cost is         : 24.463656653692006 

 At row:49, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:49, column:95,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:95,the value of plot_cost is         : 24.300823824795184 

 At row:49, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:49, column:96,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:96,the value of plot_cost is         : 24.138799056300883 

 At row:49, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:49, column:97,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:97,the value of plot_cost is         : 23.977582348209097 

 At row:49, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:49, column:98,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:98,the value of plot_cost is         : 23.817173700519824 

 At row:49, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:49, column:99,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:99,the value of plot_cost is         : 23.65757311323307 

 At row:49, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:49, column:100,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:100,the value of plot_cost is         : 23.49878058634883 

 At row:49, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:49, column:101,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:101,the value of plot_cost is         : 23.340796119867097 

 At row:49, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:49, column:102,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:102,the value of plot_cost is         : 23.18361971378789 

 At row:49, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:49, column:103,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:103,the value of plot_cost is         : 23.027251368111187 

 At row:49, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:49, column:104,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:104,the value of plot_cost is         : 22.871691082837007 

 At row:49, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:49, column:105,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:105,the value of plot_cost is         : 22.716938857965346 

 At row:49, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:49, column:106,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:106,the value of plot_cost is         : 22.56299469349619 

 At row:49, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:49, column:107,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:107,the value of plot_cost is         : 22.409858589429554 

 At row:49, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:49, column:108,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:108,the value of plot_cost is         : 22.257530545765437 

 At row:49, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:49, column:109,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:109,the value of plot_cost is         : 22.10601056250383 

 At row:49, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:49, column:110,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:110,the value of plot_cost is         : 21.955298639644734 

 At row:49, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:49, column:111,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:111,the value of plot_cost is         : 21.805394777188162 

 At row:49, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:49, column:112,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:112,the value of plot_cost is         : 21.656298975134103 

 At row:49, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:49, column:113,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:113,the value of plot_cost is         : 21.50801123348256 

 At row:49, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:49, column:114,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:114,the value of plot_cost is         : 21.360531552233525 

 At row:49, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:49, column:115,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:115,the value of plot_cost is         : 21.213859931387006 

 At row:49, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:49, column:116,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:116,the value of plot_cost is         : 21.067996370943007 

 At row:49, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:49, column:117,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:117,the value of plot_cost is         : 20.922940870901524 

 At row:49, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:49, column:118,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:118,the value of plot_cost is         : 20.778693431262557 

 At row:49, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:49, column:119,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:119,the value of plot_cost is         : 20.6352540520261 

 At row:49, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:49, column:120,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:120,the value of plot_cost is         : 20.492622733192157 

 At row:49, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:49, column:121,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:121,the value of plot_cost is         : 20.350799474760734 

 At row:49, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:49, column:122,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:122,the value of plot_cost is         : 20.209784276731824 

 At row:49, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:49, column:123,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:123,the value of plot_cost is         : 20.069577139105434 

 At row:49, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:49, column:124,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:124,the value of plot_cost is         : 19.930178061881552 

 At row:49, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:49, column:125,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:125,the value of plot_cost is         : 19.791587045060183 

 At row:49, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:49, column:126,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:126,the value of plot_cost is         : 19.653804088641333 

 At row:49, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:49, column:127,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:127,the value of plot_cost is         : 19.516829192625 

 At row:49, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:49, column:128,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:128,the value of plot_cost is         : 19.380662357011182 

 At row:49, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:49, column:129,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:129,the value of plot_cost is         : 19.245303581799877 

 At row:49, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:49, column:130,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:130,the value of plot_cost is         : 19.11075286699109 

 At row:49, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:49, column:131,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:131,the value of plot_cost is         : 18.977010212584815 

 At row:49, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:49, column:132,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:132,the value of plot_cost is         : 18.84407561858106 

 At row:49, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:49, column:133,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:133,the value of plot_cost is         : 18.71194908497981 

 At row:49, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:49, column:134,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:134,the value of plot_cost is         : 18.580630611781086 

 At row:49, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:49, column:135,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:135,the value of plot_cost is         : 18.450120198984866 

 At row:49, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:49, column:136,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:136,the value of plot_cost is         : 18.320417846591173 

 At row:49, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:49, column:137,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:137,the value of plot_cost is         : 18.19152355459999 

 At row:49, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:49, column:138,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:138,the value of plot_cost is         : 18.063437323011318 

 At row:49, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:49, column:139,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:139,the value of plot_cost is         : 17.93615915182517 

 At row:49, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:49, column:140,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:140,the value of plot_cost is         : 17.809689041041526 

 At row:49, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:49, column:141,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:141,the value of plot_cost is         : 17.684026990660403 

 At row:49, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:49, column:142,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:142,the value of plot_cost is         : 17.5591730006818 

 At row:49, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:49, column:143,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:143,the value of plot_cost is         : 17.435127071105708 

 At row:49, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:49, column:144,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:144,the value of plot_cost is         : 17.31188920193213 

 At row:49, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:49, column:145,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:145,the value of plot_cost is         : 17.189459393161062 

 At row:49, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:49, column:146,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:146,the value of plot_cost is         : 17.067837644792515 

 At row:49, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:49, column:147,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:147,the value of plot_cost is         : 16.947023956826484 

 At row:49, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:49, column:148,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:148,the value of plot_cost is         : 16.827018329262966 

 At row:49, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:49, column:149,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:149,the value of plot_cost is         : 16.707820762101964 

 At row:49, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:49, column:150,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:150,the value of plot_cost is         : 16.589431255343474 

 At row:49, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:49, column:151,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:151,the value of plot_cost is         : 16.471849808987503 

 At row:49, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:49, column:152,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:152,the value of plot_cost is         : 16.355076423034046 

 At row:49, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:49, column:153,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:153,the value of plot_cost is         : 16.239111097483104 

 At row:49, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:49, column:154,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:154,the value of plot_cost is         : 16.123953832334678 

 At row:49, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:49, column:155,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:155,the value of plot_cost is         : 16.009604627588768 

 At row:49, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:49, column:156,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:156,the value of plot_cost is         : 15.896063483245367 

 At row:49, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:49, column:157,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:157,the value of plot_cost is         : 15.783330399304486 

 At row:49, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:49, column:158,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:158,the value of plot_cost is         : 15.671405375766122 

 At row:49, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:49, column:159,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:159,the value of plot_cost is         : 15.560288412630273 

 At row:49, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:49, column:160,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:160,the value of plot_cost is         : 15.449979509896929 

 At row:49, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:49, column:161,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:161,the value of plot_cost is         : 15.340478667566108 

 At row:49, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:49, column:162,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:162,the value of plot_cost is         : 15.231785885637805 

 At row:49, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:49, column:163,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:163,the value of plot_cost is         : 15.123901164112015 

 At row:49, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:49, column:164,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:164,the value of plot_cost is         : 15.01682450298874 

 At row:49, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:49, column:165,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:165,the value of plot_cost is         : 14.910555902267976 

 At row:49, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:49, column:166,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:166,the value of plot_cost is         : 14.80509536194973 

 At row:49, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:49, column:167,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:167,the value of plot_cost is         : 14.700442882034 

 At row:49, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:49, column:168,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:168,the value of plot_cost is         : 14.596598462520785 

 At row:49, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:49, column:169,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:169,the value of plot_cost is         : 14.493562103410087 

 At row:49, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:49, column:170,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:170,the value of plot_cost is         : 14.391333804701896 

 At row:49, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:49, column:171,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:171,the value of plot_cost is         : 14.289913566396226 

 At row:49, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:49, column:172,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:172,the value of plot_cost is         : 14.189301388493073 

 At row:49, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:49, column:173,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:173,the value of plot_cost is         : 14.089497270992434 

 At row:49, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:49, column:174,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:174,the value of plot_cost is         : 13.990501213894309 

 At row:49, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:49, column:175,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:175,the value of plot_cost is         : 13.892313217198696 

 At row:49, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:49, column:176,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:176,the value of plot_cost is         : 13.794933280905601 

 At row:49, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:49, column:177,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:177,the value of plot_cost is         : 13.69836140501502 

 At row:49, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:49, column:178,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:178,the value of plot_cost is         : 13.602597589526958 

 At row:49, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:49, column:179,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:179,the value of plot_cost is         : 13.507641834441408 

 At row:49, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:49, column:180,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:180,the value of plot_cost is         : 13.413494139758372 

 At row:49, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:49, column:181,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:181,the value of plot_cost is         : 13.32015450547785 

 At row:49, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:49, column:182,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:182,the value of plot_cost is         : 13.227622931599848 

 At row:49, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:49, column:183,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:183,the value of plot_cost is         : 13.13589941812436 

 At row:49, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:49, column:184,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:184,the value of plot_cost is         : 13.044983965051387 

 At row:49, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:49, column:185,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:185,the value of plot_cost is         : 12.954876572380925 

 At row:49, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:49, column:186,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:186,the value of plot_cost is         : 12.86557724011298 

 At row:49, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:49, column:187,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:187,the value of plot_cost is         : 12.777085968247553 

 At row:49, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:49, column:188,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:188,the value of plot_cost is         : 12.68940275678464 

 At row:49, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:49, column:189,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:189,the value of plot_cost is         : 12.602527605724239 

 At row:49, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:49, column:190,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:190,the value of plot_cost is         : 12.516460515066353 

 At row:49, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:49, column:191,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:191,the value of plot_cost is         : 12.431201484810986 

 At row:49, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:49, column:192,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:192,the value of plot_cost is         : 12.346750514958133 

 At row:49, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:49, column:193,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:193,the value of plot_cost is         : 12.263107605507795 

 At row:49, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:49, column:194,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:194,the value of plot_cost is         : 12.18027275645997 

 At row:49, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:49, column:195,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:195,the value of plot_cost is         : 12.098245967814663 

 At row:49, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:49, column:196,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:196,the value of plot_cost is         : 12.017027239571867 

 At row:49, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:49, column:197,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:197,the value of plot_cost is         : 11.93661657173159 

 At row:49, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:49, column:198,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:198,the value of plot_cost is         : 11.85701396429383 

 At row:49, column:199,the value of plot_t0 is           : 3.0
 At row:49, column:199,the value of plot_t1 is           : -0.015075376884422065
 At row:49, column:199,the value of plot_cost is         : 11.778219417258583 

 At row:50, column:0,the value of plot_t0 is           : -1.0
 At row:50, column:0,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:0,the value of plot_cost is         : 42.36321445706638 

 At row:50, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:50, column:1,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:1,the value of plot_cost is         : 42.127102093381474 

 At row:50, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:50, column:2,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:2,the value of plot_cost is         : 41.8917977900991 

 At row:50, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:50, column:3,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:3,the value of plot_cost is         : 41.65730154721923 

 At row:50, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:50, column:4,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:4,the value of plot_cost is         : 41.423613364741875 

 At row:50, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:50, column:5,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:5,the value of plot_cost is         : 41.19073324266703 

 At row:50, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:50, column:6,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:6,the value of plot_cost is         : 40.95866118099471 

 At row:50, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:50, column:7,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:7,the value of plot_cost is         : 40.7273971797249 

 At row:50, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:50, column:8,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:8,the value of plot_cost is         : 40.4969412388576 

 At row:50, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:50, column:9,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:9,the value of plot_cost is         : 40.26729335839283 

 At row:50, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:50, column:10,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:10,the value of plot_cost is         : 40.03845353833056 

 At row:50, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:50, column:11,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:11,the value of plot_cost is         : 39.810421778670815 

 At row:50, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:50, column:12,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:12,the value of plot_cost is         : 39.583198079413584 

 At row:50, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:50, column:13,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:13,the value of plot_cost is         : 39.35678244055886 

 At row:50, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:50, column:14,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:14,the value of plot_cost is         : 39.13117486210666 

 At row:50, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:50, column:15,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:15,the value of plot_cost is         : 38.90637534405696 

 At row:50, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:50, column:16,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:16,the value of plot_cost is         : 38.6823838864098 

 At row:50, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:50, column:17,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:17,the value of plot_cost is         : 38.45920048916514 

 At row:50, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:50, column:18,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:18,the value of plot_cost is         : 38.23682515232299 

 At row:50, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:50, column:19,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:19,the value of plot_cost is         : 38.01525787588337 

 At row:50, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:50, column:20,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:20,the value of plot_cost is         : 37.794498659846255 

 At row:50, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:50, column:21,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:21,the value of plot_cost is         : 37.57454750421165 

 At row:50, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:50, column:22,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:22,the value of plot_cost is         : 37.355404408979574 

 At row:50, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:50, column:23,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:23,the value of plot_cost is         : 37.13706937415 

 At row:50, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:50, column:24,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:24,the value of plot_cost is         : 36.91954239972295 

 At row:50, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:50, column:25,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:25,the value of plot_cost is         : 36.70282348569841 

 At row:50, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:50, column:26,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:26,the value of plot_cost is         : 36.48691263207639 

 At row:50, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:50, column:27,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:27,the value of plot_cost is         : 36.27180983885689 

 At row:50, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:50, column:28,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:28,the value of plot_cost is         : 36.057515106039894 

 At row:50, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:50, column:29,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:29,the value of plot_cost is         : 35.84402843362542 

 At row:50, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:50, column:30,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:30,the value of plot_cost is         : 35.63134982161345 

 At row:50, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:50, column:31,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:31,the value of plot_cost is         : 35.419479270004004 

 At row:50, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:50, column:32,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:32,the value of plot_cost is         : 35.20841677879707 

 At row:50, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:50, column:33,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:33,the value of plot_cost is         : 34.99816234799266 

 At row:50, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:50, column:34,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:34,the value of plot_cost is         : 34.788715977590755 

 At row:50, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:50, column:35,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:35,the value of plot_cost is         : 34.58007766759136 

 At row:50, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:50, column:36,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:36,the value of plot_cost is         : 34.372247417994494 

 At row:50, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:50, column:37,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:37,the value of plot_cost is         : 34.165225228800146 

 At row:50, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:50, column:38,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:38,the value of plot_cost is         : 33.9590111000083 

 At row:50, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:50, column:39,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:39,the value of plot_cost is         : 33.753605031618974 

 At row:50, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:50, column:40,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:40,the value of plot_cost is         : 33.54900702363216 

 At row:50, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:50, column:41,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:41,the value of plot_cost is         : 33.34521707604786 

 At row:50, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:50, column:42,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:42,the value of plot_cost is         : 33.14223518886609 

 At row:50, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:50, column:43,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:43,the value of plot_cost is         : 32.940061362086816 

 At row:50, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:50, column:44,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:44,the value of plot_cost is         : 32.73869559571007 

 At row:50, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:50, column:45,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:45,the value of plot_cost is         : 32.53813788973583 

 At row:50, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:50, column:46,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:46,the value of plot_cost is         : 32.33838824416411 

 At row:50, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:50, column:47,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:47,the value of plot_cost is         : 32.139446658994906 

 At row:50, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:50, column:48,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:48,the value of plot_cost is         : 31.941313134228213 

 At row:50, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:50, column:49,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:49,the value of plot_cost is         : 31.743987669864037 

 At row:50, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:50, column:50,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:50,the value of plot_cost is         : 31.54747026590238 

 At row:50, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:50, column:51,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:51,the value of plot_cost is         : 31.35176092234323 

 At row:50, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:50, column:52,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:52,the value of plot_cost is         : 31.156859639186603 

 At row:50, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:50, column:53,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:53,the value of plot_cost is         : 30.96276641643248 

 At row:50, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:50, column:54,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:54,the value of plot_cost is         : 30.76948125408089 

 At row:50, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:50, column:55,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:55,the value of plot_cost is         : 30.5770041521318 

 At row:50, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:50, column:56,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:56,the value of plot_cost is         : 30.38533511058523 

 At row:50, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:50, column:57,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:57,the value of plot_cost is         : 30.194474129441183 

 At row:50, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:50, column:58,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:58,the value of plot_cost is         : 30.004421208699636 

 At row:50, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:50, column:59,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:59,the value of plot_cost is         : 29.815176348360612 

 At row:50, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:50, column:60,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:60,the value of plot_cost is         : 29.626739548424105 

 At row:50, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:50, column:61,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:61,the value of plot_cost is         : 29.43911080889011 

 At row:50, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:50, column:62,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:62,the value of plot_cost is         : 29.252290129758627 

 At row:50, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:50, column:63,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:63,the value of plot_cost is         : 29.066277511029664 

 At row:50, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:50, column:64,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:64,the value of plot_cost is         : 28.881072952703214 

 At row:50, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:50, column:65,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:65,the value of plot_cost is         : 28.69667645477928 

 At row:50, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:50, column:66,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:66,the value of plot_cost is         : 28.51308801725786 

 At row:50, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:50, column:67,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:67,the value of plot_cost is         : 28.330307640138958 

 At row:50, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:50, column:68,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:68,the value of plot_cost is         : 28.14833532342257 

 At row:50, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:50, column:69,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:69,the value of plot_cost is         : 27.9671710671087 

 At row:50, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:50, column:70,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:70,the value of plot_cost is         : 27.786814871197333 

 At row:50, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:50, column:71,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:71,the value of plot_cost is         : 27.607266735688494 

 At row:50, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:50, column:72,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:72,the value of plot_cost is         : 27.428526660582165 

 At row:50, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:50, column:73,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:73,the value of plot_cost is         : 27.250594645878355 

 At row:50, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:50, column:74,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:74,the value of plot_cost is         : 27.073470691577057 

 At row:50, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:50, column:75,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:75,the value of plot_cost is         : 26.89715479767827 

 At row:50, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:50, column:76,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:76,the value of plot_cost is         : 26.721646964182003 

 At row:50, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:50, column:77,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:77,the value of plot_cost is         : 26.54694719108825 

 At row:50, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:50, column:78,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:78,the value of plot_cost is         : 26.37305547839701 

 At row:50, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:50, column:79,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:79,the value of plot_cost is         : 26.199971826108285 

 At row:50, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:50, column:80,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:80,the value of plot_cost is         : 26.02769623422208 

 At row:50, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:50, column:81,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:81,the value of plot_cost is         : 25.856228702738388 

 At row:50, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:50, column:82,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:82,the value of plot_cost is         : 25.68556923165721 

 At row:50, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:50, column:83,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:83,the value of plot_cost is         : 25.515717820978544 

 At row:50, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:50, column:84,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:84,the value of plot_cost is         : 25.346674470702403 

 At row:50, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:50, column:85,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:85,the value of plot_cost is         : 25.178439180828764 

 At row:50, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:50, column:86,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:86,the value of plot_cost is         : 25.01101195135765 

 At row:50, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:50, column:87,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:87,the value of plot_cost is         : 24.84439278228905 

 At row:50, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:50, column:88,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:88,the value of plot_cost is         : 24.67858167362296 

 At row:50, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:50, column:89,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:89,the value of plot_cost is         : 24.513578625359386 

 At row:50, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:50, column:90,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:90,the value of plot_cost is         : 24.349383637498327 

 At row:50, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:50, column:91,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:91,the value of plot_cost is         : 24.185996710039788 

 At row:50, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:50, column:92,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:92,the value of plot_cost is         : 24.02341784298376 

 At row:50, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:50, column:93,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:93,the value of plot_cost is         : 23.861647036330254 

 At row:50, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:50, column:94,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:94,the value of plot_cost is         : 23.700684290079256 

 At row:50, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:50, column:95,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:95,the value of plot_cost is         : 23.540529604230773 

 At row:50, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:50, column:96,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:96,the value of plot_cost is         : 23.38118297878481 

 At row:50, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:50, column:97,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:97,the value of plot_cost is         : 23.222644413741353 

 At row:50, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:50, column:98,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:98,the value of plot_cost is         : 23.06491390910042 

 At row:50, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:50, column:99,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:99,the value of plot_cost is         : 22.907991464862 

 At row:50, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:50, column:100,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:100,the value of plot_cost is         : 22.751877081026095 

 At row:50, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:50, column:101,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:101,the value of plot_cost is         : 22.596570757592705 

 At row:50, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:50, column:102,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:102,the value of plot_cost is         : 22.442072494561828 

 At row:50, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:50, column:103,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:103,the value of plot_cost is         : 22.288382291933466 

 At row:50, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:50, column:104,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:104,the value of plot_cost is         : 22.135500149707617 

 At row:50, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:50, column:105,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:105,the value of plot_cost is         : 21.98342606788429 

 At row:50, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:50, column:106,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:106,the value of plot_cost is         : 21.83216004646347 

 At row:50, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:50, column:107,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:107,the value of plot_cost is         : 21.681702085445178 

 At row:50, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:50, column:108,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:108,the value of plot_cost is         : 21.53205218482939 

 At row:50, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:50, column:109,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:109,the value of plot_cost is         : 21.383210344616117 

 At row:50, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:50, column:110,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:110,the value of plot_cost is         : 21.23517656480536 

 At row:50, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:50, column:111,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:111,the value of plot_cost is         : 21.087950845397128 

 At row:50, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:50, column:112,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:112,the value of plot_cost is         : 20.9415331863914 

 At row:50, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:50, column:113,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:113,the value of plot_cost is         : 20.79592358778819 

 At row:50, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:50, column:114,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:114,the value of plot_cost is         : 20.65112204958749 

 At row:50, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:50, column:115,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:115,the value of plot_cost is         : 20.507128571789313 

 At row:50, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:50, column:116,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:116,the value of plot_cost is         : 20.36394315439365 

 At row:50, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:50, column:117,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:117,the value of plot_cost is         : 20.2215657974005 

 At row:50, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:50, column:118,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:118,the value of plot_cost is         : 20.079996500809866 

 At row:50, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:50, column:119,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:119,the value of plot_cost is         : 19.939235264621743 

 At row:50, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:50, column:120,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:120,the value of plot_cost is         : 19.79928208883614 

 At row:50, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:50, column:121,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:121,the value of plot_cost is         : 19.660136973453053 

 At row:50, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:50, column:122,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:122,the value of plot_cost is         : 19.52179991847248 

 At row:50, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:50, column:123,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:123,the value of plot_cost is         : 19.384270923894416 

 At row:50, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:50, column:124,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:124,the value of plot_cost is         : 19.247549989718873 

 At row:50, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:50, column:125,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:125,the value of plot_cost is         : 19.111637115945843 

 At row:50, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:50, column:126,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:126,the value of plot_cost is         : 18.976532302575333 

 At row:50, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:50, column:127,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:127,the value of plot_cost is         : 18.842235549607338 

 At row:50, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:50, column:128,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:128,the value of plot_cost is         : 18.708746857041845 

 At row:50, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:50, column:129,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:129,the value of plot_cost is         : 18.576066224878883 

 At row:50, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:50, column:130,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:130,the value of plot_cost is         : 18.44419365311843 

 At row:50, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:50, column:131,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:131,the value of plot_cost is         : 18.313129141760488 

 At row:50, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:50, column:132,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:132,the value of plot_cost is         : 18.18287269080507 

 At row:50, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:50, column:133,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:133,the value of plot_cost is         : 18.053424300252157 

 At row:50, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:50, column:134,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:134,the value of plot_cost is         : 17.924783970101767 

 At row:50, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:50, column:135,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:135,the value of plot_cost is         : 17.796951700353887 

 At row:50, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:50, column:136,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:136,the value of plot_cost is         : 17.669927491008526 

 At row:50, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:50, column:137,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:137,the value of plot_cost is         : 17.543711342065677 

 At row:50, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:50, column:138,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:138,the value of plot_cost is         : 17.41830325352534 

 At row:50, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:50, column:139,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:139,the value of plot_cost is         : 17.293703225387528 

 At row:50, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:50, column:140,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:140,the value of plot_cost is         : 17.169911257652224 

 At row:50, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:50, column:141,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:141,the value of plot_cost is         : 17.04692735031944 

 At row:50, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:50, column:142,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:142,the value of plot_cost is         : 16.924751503389167 

 At row:50, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:50, column:143,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:143,the value of plot_cost is         : 16.803383716861408 

 At row:50, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:50, column:144,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:144,the value of plot_cost is         : 16.682823990736164 

 At row:50, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:50, column:145,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:145,the value of plot_cost is         : 16.563072325013437 

 At row:50, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:50, column:146,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:146,the value of plot_cost is         : 16.44412871969323 

 At row:50, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:50, column:147,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:147,the value of plot_cost is         : 16.325993174775533 

 At row:50, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:50, column:148,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:148,the value of plot_cost is         : 16.208665690260347 

 At row:50, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:50, column:149,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:149,the value of plot_cost is         : 16.09214626614768 

 At row:50, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:50, column:150,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:150,the value of plot_cost is         : 15.976434902437529 

 At row:50, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:50, column:151,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:151,the value of plot_cost is         : 15.861531599129895 

 At row:50, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:50, column:152,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:152,the value of plot_cost is         : 15.747436356224775 

 At row:50, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:50, column:153,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:153,the value of plot_cost is         : 15.634149173722168 

 At row:50, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:50, column:154,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:154,the value of plot_cost is         : 15.521670051622074 

 At row:50, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:50, column:155,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:155,the value of plot_cost is         : 15.409998989924498 

 At row:50, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:50, column:156,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:156,the value of plot_cost is         : 15.299135988629436 

 At row:50, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:50, column:157,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:157,the value of plot_cost is         : 15.189081047736892 

 At row:50, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:50, column:158,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:158,the value of plot_cost is         : 15.07983416724686 

 At row:50, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:50, column:159,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:159,the value of plot_cost is         : 14.971395347159346 

 At row:50, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:50, column:160,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:160,the value of plot_cost is         : 14.863764587474343 

 At row:50, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:50, column:161,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:161,the value of plot_cost is         : 14.756941888191857 

 At row:50, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:50, column:162,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:162,the value of plot_cost is         : 14.650927249311888 

 At row:50, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:50, column:163,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:163,the value of plot_cost is         : 14.54572067083443 

 At row:50, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:50, column:164,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:164,the value of plot_cost is         : 14.44132215275949 

 At row:50, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:50, column:165,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:165,the value of plot_cost is         : 14.337731695087065 

 At row:50, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:50, column:166,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:166,the value of plot_cost is         : 14.234949297817154 

 At row:50, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:50, column:167,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:167,the value of plot_cost is         : 14.13297496094976 

 At row:50, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:50, column:168,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:168,the value of plot_cost is         : 14.031808684484881 

 At row:50, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:50, column:169,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:169,the value of plot_cost is         : 13.931450468422517 

 At row:50, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:50, column:170,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:170,the value of plot_cost is         : 13.831900312762665 

 At row:50, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:50, column:171,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:171,the value of plot_cost is         : 13.733158217505329 

 At row:50, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:50, column:172,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:172,the value of plot_cost is         : 13.635224182650513 

 At row:50, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:50, column:173,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:173,the value of plot_cost is         : 13.538098208198209 

 At row:50, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:50, column:174,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:174,the value of plot_cost is         : 13.441780294148417 

 At row:50, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:50, column:175,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:175,the value of plot_cost is         : 13.346270440501144 

 At row:50, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:50, column:176,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:176,the value of plot_cost is         : 13.251568647256383 

 At row:50, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:50, column:177,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:177,the value of plot_cost is         : 13.15767491441414 

 At row:50, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:50, column:178,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:178,the value of plot_cost is         : 13.06458924197441 

 At row:50, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:50, column:179,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:179,the value of plot_cost is         : 12.972311629937197 

 At row:50, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:50, column:180,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:180,the value of plot_cost is         : 12.880842078302496 

 At row:50, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:50, column:181,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:181,the value of plot_cost is         : 12.790180587070312 

 At row:50, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:50, column:182,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:182,the value of plot_cost is         : 12.700327156240643 

 At row:50, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:50, column:183,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:183,the value of plot_cost is         : 12.61128178581349 

 At row:50, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:50, column:184,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:184,the value of plot_cost is         : 12.523044475788852 

 At row:50, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:50, column:185,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:185,the value of plot_cost is         : 12.435615226166727 

 At row:50, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:50, column:186,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:186,the value of plot_cost is         : 12.348994036947119 

 At row:50, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:50, column:187,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:187,the value of plot_cost is         : 12.263180908130028 

 At row:50, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:50, column:188,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:188,the value of plot_cost is         : 12.178175839715447 

 At row:50, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:50, column:189,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:189,the value of plot_cost is         : 12.093978831703385 

 At row:50, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:50, column:190,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:190,the value of plot_cost is         : 12.010589884093836 

 At row:50, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:50, column:191,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:191,the value of plot_cost is         : 11.928008996886804 

 At row:50, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:50, column:192,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:192,the value of plot_cost is         : 11.846236170082287 

 At row:50, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:50, column:193,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:193,the value of plot_cost is         : 11.765271403680284 

 At row:50, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:50, column:194,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:194,the value of plot_cost is         : 11.685114697680795 

 At row:50, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:50, column:195,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:195,the value of plot_cost is         : 11.605766052083823 

 At row:50, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:50, column:196,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:196,the value of plot_cost is         : 11.527225466889364 

 At row:50, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:50, column:197,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:197,the value of plot_cost is         : 11.449492942097423 

 At row:50, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:50, column:198,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:198,the value of plot_cost is         : 11.372568477707995 

 At row:50, column:199,the value of plot_t0 is           : 3.0
 At row:50, column:199,the value of plot_t1 is           : 0.005025125628140614
 At row:50, column:199,the value of plot_cost is         : 11.296452073721083 

 At row:51, column:0,the value of plot_t0 is           : -1.0
 At row:51, column:0,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:0,the value of plot_cost is         : 41.361079301749236 

 At row:51, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:51, column:1,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:1,the value of plot_cost is         : 41.12764508111266 

 At row:51, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:51, column:2,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:2,the value of plot_cost is         : 40.89501892087862 

 At row:51, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:51, column:3,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:3,the value of plot_cost is         : 40.66320082104708 

 At row:51, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:51, column:4,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:4,the value of plot_cost is         : 40.43219078161806 

 At row:51, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:51, column:5,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:5,the value of plot_cost is         : 40.20198880259156 

 At row:51, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:51, column:6,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:6,the value of plot_cost is         : 39.97259488396757 

 At row:51, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:51, column:7,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:7,the value of plot_cost is         : 39.744009025746095 

 At row:51, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:51, column:8,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:8,the value of plot_cost is         : 39.51623122792714 

 At row:51, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:51, column:9,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:9,the value of plot_cost is         : 39.289261490510704 

 At row:51, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:51, column:10,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:10,the value of plot_cost is         : 39.06309981349677 

 At row:51, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:51, column:11,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:11,the value of plot_cost is         : 38.837746196885355 

 At row:51, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:51, column:12,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:12,the value of plot_cost is         : 38.61320064067646 

 At row:51, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:51, column:13,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:13,the value of plot_cost is         : 38.38946314487007 

 At row:51, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:51, column:14,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:14,the value of plot_cost is         : 38.16653370946621 

 At row:51, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:51, column:15,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:15,the value of plot_cost is         : 37.94441233446486 

 At row:51, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:51, column:16,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:16,the value of plot_cost is         : 37.72309901986602 

 At row:51, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:51, column:17,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:17,the value of plot_cost is         : 37.502593765669694 

 At row:51, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:51, column:18,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:18,the value of plot_cost is         : 37.282896571875895 

 At row:51, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:51, column:19,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:19,the value of plot_cost is         : 37.064007438484595 

 At row:51, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:51, column:20,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:20,the value of plot_cost is         : 36.84592636549582 

 At row:51, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:51, column:21,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:21,the value of plot_cost is         : 36.628653352909545 

 At row:51, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:51, column:22,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:22,the value of plot_cost is         : 36.4121884007258 

 At row:51, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:51, column:23,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:23,the value of plot_cost is         : 36.19653150894458 

 At row:51, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:51, column:24,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:24,the value of plot_cost is         : 35.98168267756586 

 At row:51, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:51, column:25,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:25,the value of plot_cost is         : 35.76764190658966 

 At row:51, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:51, column:26,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:26,the value of plot_cost is         : 35.55440919601597 

 At row:51, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:51, column:27,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:27,the value of plot_cost is         : 35.3419845458448 

 At row:51, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:51, column:28,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:28,the value of plot_cost is         : 35.13036795607615 

 At row:51, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:51, column:29,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:29,the value of plot_cost is         : 34.91955942671 

 At row:51, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:51, column:30,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:30,the value of plot_cost is         : 34.70955895774637 

 At row:51, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:51, column:31,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:31,the value of plot_cost is         : 34.50036654918526 

 At row:51, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:51, column:32,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:32,the value of plot_cost is         : 34.29198220102666 

 At row:51, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:51, column:33,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:33,the value of plot_cost is         : 34.08440591327059 

 At row:51, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:51, column:34,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:34,the value of plot_cost is         : 33.87763768591702 

 At row:51, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:51, column:35,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:35,the value of plot_cost is         : 33.67167751896597 

 At row:51, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:51, column:36,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:36,the value of plot_cost is         : 33.466525412417425 

 At row:51, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:51, column:37,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:37,the value of plot_cost is         : 33.26218136627141 

 At row:51, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:51, column:38,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:38,the value of plot_cost is         : 33.058645380527906 

 At row:51, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:51, column:39,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:39,the value of plot_cost is         : 32.85591745518692 

 At row:51, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:51, column:40,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:40,the value of plot_cost is         : 32.653997590248444 

 At row:51, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:51, column:41,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:41,the value of plot_cost is         : 32.452885785712475 

 At row:51, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:51, column:42,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:42,the value of plot_cost is         : 32.25258204157903 

 At row:51, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:51, column:43,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:43,the value of plot_cost is         : 32.0530863578481 

 At row:51, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:51, column:44,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:44,the value of plot_cost is         : 31.85439873451969 

 At row:51, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:51, column:45,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:45,the value of plot_cost is         : 31.656519171593793 

 At row:51, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:51, column:46,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:46,the value of plot_cost is         : 31.459447669070396 

 At row:51, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:51, column:47,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:47,the value of plot_cost is         : 31.263184226949534 

 At row:51, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:51, column:48,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:48,the value of plot_cost is         : 31.06772884523118 

 At row:51, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:51, column:49,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:49,the value of plot_cost is         : 30.87308152391534 

 At row:51, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:51, column:50,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:50,the value of plot_cost is         : 30.679242263002017 

 At row:51, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:51, column:51,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:51,the value of plot_cost is         : 30.4862110624912 

 At row:51, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:51, column:52,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:52,the value of plot_cost is         : 30.293987922382914 

 At row:51, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:51, column:53,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:53,the value of plot_cost is         : 30.10257284267713 

 At row:51, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:51, column:54,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:54,the value of plot_cost is         : 29.911965823373865 

 At row:51, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:51, column:55,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:55,the value of plot_cost is         : 29.722166864473113 

 At row:51, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:51, column:56,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:56,the value of plot_cost is         : 29.533175965974877 

 At row:51, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:51, column:57,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:57,the value of plot_cost is         : 29.344993127879164 

 At row:51, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:51, column:58,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:58,the value of plot_cost is         : 29.15761835018596 

 At row:51, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:51, column:59,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:59,the value of plot_cost is         : 28.971051632895275 

 At row:51, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:51, column:60,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:60,the value of plot_cost is         : 28.78529297600709 

 At row:51, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:51, column:61,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:61,the value of plot_cost is         : 28.600342379521436 

 At row:51, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:51, column:62,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:62,the value of plot_cost is         : 28.416199843438292 

 At row:51, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:51, column:63,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:63,the value of plot_cost is         : 28.232865367757668 

 At row:51, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:51, column:64,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:64,the value of plot_cost is         : 28.050338952479553 

 At row:51, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:51, column:65,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:65,the value of plot_cost is         : 27.86862059760395 

 At row:51, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:51, column:66,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:66,the value of plot_cost is         : 27.68771030313087 

 At row:51, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:51, column:67,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:67,the value of plot_cost is         : 27.507608069060304 

 At row:51, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:51, column:68,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:68,the value of plot_cost is         : 27.32831389539225 

 At row:51, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:51, column:69,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:69,the value of plot_cost is         : 27.14982778212671 

 At row:51, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:51, column:70,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:70,the value of plot_cost is         : 26.972149729263684 

 At row:51, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:51, column:71,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:71,the value of plot_cost is         : 26.795279736803177 

 At row:51, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:51, column:72,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:72,the value of plot_cost is         : 26.619217804745187 

 At row:51, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:51, column:73,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:73,the value of plot_cost is         : 26.443963933089712 

 At row:51, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:51, column:74,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:74,the value of plot_cost is         : 26.269518121836747 

 At row:51, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:51, column:75,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:75,the value of plot_cost is         : 26.095880370986297 

 At row:51, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:51, column:76,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:76,the value of plot_cost is         : 25.923050680538363 

 At row:51, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:51, column:77,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:77,the value of plot_cost is         : 25.75102905049295 

 At row:51, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:51, column:78,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:78,the value of plot_cost is         : 25.579815480850048 

 At row:51, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:51, column:79,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:79,the value of plot_cost is         : 25.409409971609662 

 At row:51, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:51, column:80,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:80,the value of plot_cost is         : 25.239812522771786 

 At row:51, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:51, column:81,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:81,the value of plot_cost is         : 25.071023134336432 

 At row:51, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:51, column:82,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:82,the value of plot_cost is         : 24.90304180630359 

 At row:51, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:51, column:83,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:83,the value of plot_cost is         : 24.735868538673262 

 At row:51, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:51, column:84,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:84,the value of plot_cost is         : 24.569503331445453 

 At row:51, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:51, column:85,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:85,the value of plot_cost is         : 24.40394618462015 

 At row:51, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:51, column:86,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:86,the value of plot_cost is         : 24.239197098197373 

 At row:51, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:51, column:87,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:87,the value of plot_cost is         : 24.075256072177105 

 At row:51, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:51, column:88,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:88,the value of plot_cost is         : 23.912123106559353 

 At row:51, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:51, column:89,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:89,the value of plot_cost is         : 23.74979820134412 

 At row:51, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:51, column:90,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:90,the value of plot_cost is         : 23.588281356531393 

 At row:51, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:51, column:91,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:91,the value of plot_cost is         : 23.427572572121193 

 At row:51, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:51, column:92,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:92,the value of plot_cost is         : 23.2676718481135 

 At row:51, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:51, column:93,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:93,the value of plot_cost is         : 23.108579184508322 

 At row:51, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:51, column:94,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:94,the value of plot_cost is         : 22.950294581305666 

 At row:51, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:51, column:95,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:95,the value of plot_cost is         : 22.792818038505523 

 At row:51, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:51, column:96,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:96,the value of plot_cost is         : 22.63614955610789 

 At row:51, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:51, column:97,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:97,the value of plot_cost is         : 22.480289134112777 

 At row:51, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:51, column:98,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:98,the value of plot_cost is         : 22.32523677252017 

 At row:51, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:51, column:99,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:99,the value of plot_cost is         : 22.17099247133009 

 At row:51, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:51, column:100,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:100,the value of plot_cost is         : 22.01755623054252 

 At row:51, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:51, column:101,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:101,the value of plot_cost is         : 21.864928050157463 

 At row:51, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:51, column:102,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:102,the value of plot_cost is         : 21.713107930174925 

 At row:51, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:51, column:103,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:103,the value of plot_cost is         : 21.56209587059489 

 At row:51, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:51, column:104,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:104,the value of plot_cost is         : 21.411891871417392 

 At row:51, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:51, column:105,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:105,the value of plot_cost is         : 21.262495932642395 

 At row:51, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:51, column:106,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:106,the value of plot_cost is         : 21.11390805426991 

 At row:51, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:51, column:107,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:107,the value of plot_cost is         : 20.966128236299948 

 At row:51, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:51, column:108,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:108,the value of plot_cost is         : 20.819156478732495 

 At row:51, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:51, column:109,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:109,the value of plot_cost is         : 20.67299278156756 

 At row:51, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:51, column:110,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:110,the value of plot_cost is         : 20.527637144805144 

 At row:51, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:51, column:111,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:111,the value of plot_cost is         : 20.38308956844524 

 At row:51, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:51, column:112,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:112,the value of plot_cost is         : 20.23935005248785 

 At row:51, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:51, column:113,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:113,the value of plot_cost is         : 20.096418596932974 

 At row:51, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:51, column:114,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:114,the value of plot_cost is         : 19.954295201780617 

 At row:51, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:51, column:115,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:115,the value of plot_cost is         : 19.812979867030773 

 At row:51, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:51, column:116,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:116,the value of plot_cost is         : 19.672472592683448 

 At row:51, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:51, column:117,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:117,the value of plot_cost is         : 19.532773378738632 

 At row:51, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:51, column:118,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:118,the value of plot_cost is         : 19.393882225196332 

 At row:51, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:51, column:119,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:119,the value of plot_cost is         : 19.25579913205655 

 At row:51, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:51, column:120,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:120,the value of plot_cost is         : 19.118524099319277 

 At row:51, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:51, column:121,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:121,the value of plot_cost is         : 18.98205712698453 

 At row:51, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:51, column:122,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:122,the value of plot_cost is         : 18.84639821505229 

 At row:51, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:51, column:123,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:123,the value of plot_cost is         : 18.711547363522566 

 At row:51, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:51, column:124,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:124,the value of plot_cost is         : 18.577504572395355 

 At row:51, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:51, column:125,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:125,the value of plot_cost is         : 18.444269841670664 

 At row:51, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:51, column:126,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:126,the value of plot_cost is         : 18.311843171348485 

 At row:51, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:51, column:127,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:127,the value of plot_cost is         : 18.180224561428822 

 At row:51, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:51, column:128,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:128,the value of plot_cost is         : 18.049414011911672 

 At row:51, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:51, column:129,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:129,the value of plot_cost is         : 17.919411522797038 

 At row:51, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:51, column:130,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:130,the value of plot_cost is         : 17.790217094084923 

 At row:51, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:51, column:131,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:131,the value of plot_cost is         : 17.66183072577532 

 At row:51, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:51, column:132,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:132,the value of plot_cost is         : 17.534252417868235 

 At row:51, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:51, column:133,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:133,the value of plot_cost is         : 17.40748217036366 

 At row:51, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:51, column:134,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:134,the value of plot_cost is         : 17.281519983261603 

 At row:51, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:51, column:135,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:135,the value of plot_cost is         : 17.15636585656206 

 At row:51, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:51, column:136,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:136,the value of plot_cost is         : 17.032019790265036 

 At row:51, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:51, column:137,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:137,the value of plot_cost is         : 16.908481784370522 

 At row:51, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:51, column:138,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:138,the value of plot_cost is         : 16.785751838878525 

 At row:51, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:51, column:139,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:139,the value of plot_cost is         : 16.663829953789044 

 At row:51, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:51, column:140,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:140,the value of plot_cost is         : 16.54271612910208 

 At row:51, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:51, column:141,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:141,the value of plot_cost is         : 16.422410364817626 

 At row:51, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:51, column:142,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:142,the value of plot_cost is         : 16.30291266093569 

 At row:51, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:51, column:143,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:143,the value of plot_cost is         : 16.184223017456265 

 At row:51, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:51, column:144,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:144,the value of plot_cost is         : 16.06634143437936 

 At row:51, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:51, column:145,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:145,the value of plot_cost is         : 15.949267911704968 

 At row:51, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:51, column:146,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:146,the value of plot_cost is         : 15.833002449433092 

 At row:51, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:51, column:147,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:147,the value of plot_cost is         : 15.717545047563732 

 At row:51, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:51, column:148,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:148,the value of plot_cost is         : 15.602895706096888 

 At row:51, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:51, column:149,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:149,the value of plot_cost is         : 15.489054425032554 

 At row:51, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:51, column:150,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:150,the value of plot_cost is         : 15.376021204370737 

 At row:51, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:51, column:151,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:151,the value of plot_cost is         : 15.263796044111437 

 At row:51, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:51, column:152,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:152,the value of plot_cost is         : 15.152378944254654 

 At row:51, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:51, column:153,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:153,the value of plot_cost is         : 15.041769904800383 

 At row:51, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:51, column:154,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:154,the value of plot_cost is         : 14.931968925748627 

 At row:51, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:51, column:155,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:155,the value of plot_cost is         : 14.822976007099385 

 At row:51, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:51, column:156,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:156,the value of plot_cost is         : 14.71479114885266 

 At row:51, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:51, column:157,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:157,the value of plot_cost is         : 14.60741435100845 

 At row:51, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:51, column:158,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:158,the value of plot_cost is         : 14.500845613566756 

 At row:51, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:51, column:159,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:159,the value of plot_cost is         : 14.395084936527576 

 At row:51, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:51, column:160,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:160,the value of plot_cost is         : 14.290132319890908 

 At row:51, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:51, column:161,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:161,the value of plot_cost is         : 14.18598776365676 

 At row:51, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:51, column:162,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:162,the value of plot_cost is         : 14.082651267825128 

 At row:51, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:51, column:163,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:163,the value of plot_cost is         : 13.980122832396006 

 At row:51, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:51, column:164,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:164,the value of plot_cost is         : 13.8784024573694 

 At row:51, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:51, column:165,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:165,the value of plot_cost is         : 13.77749014274531 

 At row:51, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:51, column:166,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:166,the value of plot_cost is         : 13.677385888523737 

 At row:51, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:51, column:167,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:167,the value of plot_cost is         : 13.578089694704678 

 At row:51, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:51, column:168,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:168,the value of plot_cost is         : 13.479601561288135 

 At row:51, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:51, column:169,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:169,the value of plot_cost is         : 13.381921488274104 

 At row:51, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:51, column:170,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:170,the value of plot_cost is         : 13.28504947566259 

 At row:51, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:51, column:171,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:171,the value of plot_cost is         : 13.18898552345359 

 At row:51, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:51, column:172,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:172,the value of plot_cost is         : 13.093729631647108 

 At row:51, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:51, column:173,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:173,the value of plot_cost is         : 12.99928180024314 

 At row:51, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:51, column:174,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:174,the value of plot_cost is         : 12.905642029241683 

 At row:51, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:51, column:175,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:175,the value of plot_cost is         : 12.812810318642741 

 At row:51, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:51, column:176,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:176,the value of plot_cost is         : 12.720786668446323 

 At row:51, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:51, column:177,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:177,the value of plot_cost is         : 12.629571078652413 

 At row:51, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:51, column:178,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:178,the value of plot_cost is         : 12.539163549261021 

 At row:51, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:51, column:179,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:179,the value of plot_cost is         : 12.449564080272141 

 At row:51, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:51, column:180,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:180,the value of plot_cost is         : 12.360772671685776 

 At row:51, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:51, column:181,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:181,the value of plot_cost is         : 12.27278932350193 

 At row:51, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:51, column:182,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:182,the value of plot_cost is         : 12.185614035720597 

 At row:51, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:51, column:183,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:183,the value of plot_cost is         : 12.099246808341778 

 At row:51, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:51, column:184,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:184,the value of plot_cost is         : 12.013687641365475 

 At row:51, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:51, column:185,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:185,the value of plot_cost is         : 11.928936534791688 

 At row:51, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:51, column:186,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:186,the value of plot_cost is         : 11.844993488620414 

 At row:51, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:51, column:187,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:187,the value of plot_cost is         : 11.76185850285166 

 At row:51, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:51, column:188,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:188,the value of plot_cost is         : 11.679531577485415 

 At row:51, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:51, column:189,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:189,the value of plot_cost is         : 11.598012712521689 

 At row:51, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:51, column:190,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:190,the value of plot_cost is         : 11.517301907960475 

 At row:51, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:51, column:191,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:191,the value of plot_cost is         : 11.437399163801777 

 At row:51, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:51, column:192,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:192,the value of plot_cost is         : 11.358304480045597 

 At row:51, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:51, column:193,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:193,the value of plot_cost is         : 11.28001785669193 

 At row:51, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:51, column:194,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:194,the value of plot_cost is         : 11.202539293740777 

 At row:51, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:51, column:195,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:195,the value of plot_cost is         : 11.12586879119214 

 At row:51, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:51, column:196,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:196,the value of plot_cost is         : 11.050006349046019 

 At row:51, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:51, column:197,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:197,the value of plot_cost is         : 10.974951967302411 

 At row:51, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:51, column:198,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:198,the value of plot_cost is         : 10.900705645961322 

 At row:51, column:199,the value of plot_t0 is           : 3.0
 At row:51, column:199,the value of plot_t1 is           : 0.025125628140703515
 At row:51, column:199,the value of plot_cost is         : 10.827267385022743 

 At row:52, column:0,the value of plot_t0 is           : -1.0
 At row:52, column:0,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:0,the value of plot_cost is         : 40.371526801271244 

 At row:52, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:52, column:1,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:1,the value of plot_cost is         : 40.14077072368301 

 At row:52, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:52, column:2,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:2,the value of plot_cost is         : 39.9108227064973 

 At row:52, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:52, column:3,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:3,the value of plot_cost is         : 39.6816827497141 

 At row:52, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:52, column:4,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:4,the value of plot_cost is         : 39.45335085333342 

 At row:52, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:52, column:5,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:5,the value of plot_cost is         : 39.22582701735526 

 At row:52, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:52, column:6,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:6,the value of plot_cost is         : 38.9991112417796 

 At row:52, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:52, column:7,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:7,the value of plot_cost is         : 38.77320352660646 

 At row:52, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:52, column:8,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:8,the value of plot_cost is         : 38.54810387183584 

 At row:52, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:52, column:9,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:9,the value of plot_cost is         : 38.32381227746774 

 At row:52, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:52, column:10,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:10,the value of plot_cost is         : 38.100328743502146 

 At row:52, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:52, column:11,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:11,the value of plot_cost is         : 37.87765326993906 

 At row:52, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:52, column:12,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:12,the value of plot_cost is         : 37.6557858567785 

 At row:52, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:52, column:13,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:13,the value of plot_cost is         : 37.43472650402045 

 At row:52, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:52, column:14,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:14,the value of plot_cost is         : 37.214475211664926 

 At row:52, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:52, column:15,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:15,the value of plot_cost is         : 36.995031979711904 

 At row:52, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:52, column:16,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:16,the value of plot_cost is         : 36.77639680816141 

 At row:52, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:52, column:17,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:17,the value of plot_cost is         : 36.55856969701341 

 At row:52, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:52, column:18,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:18,the value of plot_cost is         : 36.34155064626794 

 At row:52, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:52, column:19,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:19,the value of plot_cost is         : 36.12533965592499 

 At row:52, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:52, column:20,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:20,the value of plot_cost is         : 35.90993672598455 

 At row:52, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:52, column:21,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:21,the value of plot_cost is         : 35.69534185644662 

 At row:52, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:52, column:22,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:22,the value of plot_cost is         : 35.481555047311204 

 At row:52, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:52, column:23,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:23,the value of plot_cost is         : 35.26857629857831 

 At row:52, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:52, column:24,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:24,the value of plot_cost is         : 35.05640561024793 

 At row:52, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:52, column:25,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:25,the value of plot_cost is         : 34.845042982320074 

 At row:52, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:52, column:26,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:26,the value of plot_cost is         : 34.63448841479472 

 At row:52, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:52, column:27,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:27,the value of plot_cost is         : 34.42474190767188 

 At row:52, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:52, column:28,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:28,the value of plot_cost is         : 34.215803460951555 

 At row:52, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:52, column:29,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:29,the value of plot_cost is         : 34.00767307463375 

 At row:52, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:52, column:30,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:30,the value of plot_cost is         : 33.800350748718465 

 At row:52, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:52, column:31,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:31,the value of plot_cost is         : 33.593836483205685 

 At row:52, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:52, column:32,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:32,the value of plot_cost is         : 33.38813027809542 

 At row:52, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:52, column:33,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:33,the value of plot_cost is         : 33.183232133387676 

 At row:52, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:52, column:34,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:34,the value of plot_cost is         : 32.97914204908245 

 At row:52, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:52, column:35,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:35,the value of plot_cost is         : 32.77586002517973 

 At row:52, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:52, column:36,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:36,the value of plot_cost is         : 32.57338606167953 

 At row:52, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:52, column:37,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:37,the value of plot_cost is         : 32.371720158581844 

 At row:52, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:52, column:38,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:38,the value of plot_cost is         : 32.17086231588667 

 At row:52, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:52, column:39,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:39,the value of plot_cost is         : 31.970812533594028 

 At row:52, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:52, column:40,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:40,the value of plot_cost is         : 31.771570811703885 

 At row:52, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:52, column:41,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:41,the value of plot_cost is         : 31.573137150216255 

 At row:52, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:52, column:42,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:42,the value of plot_cost is         : 31.375511549131147 

 At row:52, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:52, column:43,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:43,the value of plot_cost is         : 31.178694008448552 

 At row:52, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:52, column:44,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:44,the value of plot_cost is         : 30.982684528168477 

 At row:52, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:52, column:45,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:45,the value of plot_cost is         : 30.78748310829091 

 At row:52, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:52, column:46,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:46,the value of plot_cost is         : 30.593089748815864 

 At row:52, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:52, column:47,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:47,the value of plot_cost is         : 30.399504449743326 

 At row:52, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:52, column:48,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:48,the value of plot_cost is         : 30.206727211073304 

 At row:52, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:52, column:49,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:49,the value of plot_cost is         : 30.0147580328058 

 At row:52, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:52, column:50,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:50,the value of plot_cost is         : 29.823596914940815 

 At row:52, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:52, column:51,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:51,the value of plot_cost is         : 29.633243857478337 

 At row:52, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:52, column:52,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:52,the value of plot_cost is         : 29.44369886041838 

 At row:52, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:52, column:53,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:53,the value of plot_cost is         : 29.254961923760938 

 At row:52, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:52, column:54,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:54,the value of plot_cost is         : 29.06703304750601 

 At row:52, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:52, column:55,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:55,the value of plot_cost is         : 28.87991223165359 

 At row:52, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:52, column:56,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:56,the value of plot_cost is         : 28.693599476203694 

 At row:52, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:52, column:57,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:57,the value of plot_cost is         : 28.50809478115631 

 At row:52, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:52, column:58,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:58,the value of plot_cost is         : 28.323398146511444 

 At row:52, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:52, column:59,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:59,the value of plot_cost is         : 28.13950957226909 

 At row:52, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:52, column:60,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:60,the value of plot_cost is         : 27.956429058429258 

 At row:52, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:52, column:61,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:61,the value of plot_cost is         : 27.77415660499193 

 At row:52, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:52, column:62,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:62,the value of plot_cost is         : 27.59269221195712 

 At row:52, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:52, column:63,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:63,the value of plot_cost is         : 27.412035879324833 

 At row:52, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:52, column:64,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:64,the value of plot_cost is         : 27.232187607095057 

 At row:52, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:52, column:65,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:65,the value of plot_cost is         : 27.05314739526779 

 At row:52, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:52, column:66,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:66,the value of plot_cost is         : 26.87491524384304 

 At row:52, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:52, column:67,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:67,the value of plot_cost is         : 26.697491152820806 

 At row:52, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:52, column:68,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:68,the value of plot_cost is         : 26.520875122201094 

 At row:52, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:52, column:69,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:69,the value of plot_cost is         : 26.34506715198389 

 At row:52, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:52, column:70,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:70,the value of plot_cost is         : 26.170067242169203 

 At row:52, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:52, column:71,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:71,the value of plot_cost is         : 25.995875392757032 

 At row:52, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:52, column:72,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:72,the value of plot_cost is         : 25.82249160374737 

 At row:52, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:52, column:73,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:73,the value of plot_cost is         : 25.64991587514023 

 At row:52, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:52, column:74,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:74,the value of plot_cost is         : 25.478148206935607 

 At row:52, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:52, column:75,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:75,the value of plot_cost is         : 25.307188599133497 

 At row:52, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:52, column:76,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:76,the value of plot_cost is         : 25.1370370517339 

 At row:52, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:52, column:77,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:77,the value of plot_cost is         : 24.967693564736813 

 At row:52, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:52, column:78,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:78,the value of plot_cost is         : 24.79915813814225 

 At row:52, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:52, column:79,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:79,the value of plot_cost is         : 24.6314307719502 

 At row:52, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:52, column:80,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:80,the value of plot_cost is         : 24.464511466160662 

 At row:52, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:52, column:81,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:81,the value of plot_cost is         : 24.29840022077364 

 At row:52, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:52, column:82,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:82,the value of plot_cost is         : 24.13309703578913 

 At row:52, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:52, column:83,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:83,the value of plot_cost is         : 23.968601911207145 

 At row:52, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:52, column:84,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:84,the value of plot_cost is         : 23.804914847027668 

 At row:52, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:52, column:85,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:85,the value of plot_cost is         : 23.642035843250703 

 At row:52, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:52, column:86,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:86,the value of plot_cost is         : 23.47996489987626 

 At row:52, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:52, column:87,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:87,the value of plot_cost is         : 23.31870201690433 

 At row:52, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:52, column:88,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:88,the value of plot_cost is         : 23.158247194334912 

 At row:52, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:52, column:89,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:89,the value of plot_cost is         : 22.99860043216801 

 At row:52, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:52, column:90,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:90,the value of plot_cost is         : 22.839761730403627 

 At row:52, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:52, column:91,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:91,the value of plot_cost is         : 22.681731089041758 

 At row:52, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:52, column:92,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:92,the value of plot_cost is         : 22.5245085080824 

 At row:52, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:52, column:93,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:93,the value of plot_cost is         : 22.36809398752556 

 At row:52, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:52, column:94,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:94,the value of plot_cost is         : 22.212487527371238 

 At row:52, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:52, column:95,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:95,the value of plot_cost is         : 22.05768912761943 

 At row:52, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:52, column:96,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:96,the value of plot_cost is         : 21.903698788270137 

 At row:52, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:52, column:97,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:97,the value of plot_cost is         : 21.750516509323347 

 At row:52, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:52, column:98,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:98,the value of plot_cost is         : 21.598142290779084 

 At row:52, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:52, column:99,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:99,the value of plot_cost is         : 21.446576132637336 

 At row:52, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:52, column:100,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:100,the value of plot_cost is         : 21.295818034898108 

 At row:52, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:52, column:101,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:101,the value of plot_cost is         : 21.145867997561382 

 At row:52, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:52, column:102,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:102,the value of plot_cost is         : 20.996726020627175 

 At row:52, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:52, column:103,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:103,the value of plot_cost is         : 20.848392104095492 

 At row:52, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:52, column:104,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:104,the value of plot_cost is         : 20.700866247966317 

 At row:52, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:52, column:105,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:105,the value of plot_cost is         : 20.55414845223966 

 At row:52, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:52, column:106,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:106,the value of plot_cost is         : 20.408238716915516 

 At row:52, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:52, column:107,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:107,the value of plot_cost is         : 20.26313704199388 

 At row:52, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:52, column:108,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:108,the value of plot_cost is         : 20.11884342747477 

 At row:52, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:52, column:109,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:109,the value of plot_cost is         : 19.975357873358174 

 At row:52, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:52, column:110,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:110,the value of plot_cost is         : 19.832680379644085 

 At row:52, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:52, column:111,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:111,the value of plot_cost is         : 19.690810946332515 

 At row:52, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:52, column:112,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:112,the value of plot_cost is         : 19.54974957342346 

 At row:52, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:52, column:113,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:113,the value of plot_cost is         : 19.409496260916924 

 At row:52, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:52, column:114,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:114,the value of plot_cost is         : 19.270051008812903 

 At row:52, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:52, column:115,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:115,the value of plot_cost is         : 19.131413817111394 

 At row:52, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:52, column:116,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:116,the value of plot_cost is         : 18.993584685812404 

 At row:52, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:52, column:117,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:117,the value of plot_cost is         : 18.856563614915924 

 At row:52, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:52, column:118,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:118,the value of plot_cost is         : 18.720350604421963 

 At row:52, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:52, column:119,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:119,the value of plot_cost is         : 18.584945654330514 

 At row:52, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:52, column:120,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:120,the value of plot_cost is         : 18.45034876464158 

 At row:52, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:52, column:121,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:121,the value of plot_cost is         : 18.316559935355162 

 At row:52, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:52, column:122,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:122,the value of plot_cost is         : 18.183579166471258 

 At row:52, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:52, column:123,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:123,the value of plot_cost is         : 18.05140645798987 

 At row:52, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:52, column:124,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:124,the value of plot_cost is         : 17.920041809911 

 At row:52, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:52, column:125,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:125,the value of plot_cost is         : 17.789485222234642 

 At row:52, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:52, column:126,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:126,the value of plot_cost is         : 17.659736694960802 

 At row:52, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:52, column:127,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:127,the value of plot_cost is         : 17.53079622808947 

 At row:52, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:52, column:128,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:128,the value of plot_cost is         : 17.40266382162066 

 At row:52, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:52, column:129,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:129,the value of plot_cost is         : 17.275339475554365 

 At row:52, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:52, column:130,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:130,the value of plot_cost is         : 17.14882318989058 

 At row:52, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:52, column:131,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:131,the value of plot_cost is         : 17.023114964629315 

 At row:52, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:52, column:132,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:132,the value of plot_cost is         : 16.89821479977056 

 At row:52, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:52, column:133,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:133,the value of plot_cost is         : 16.77412269531433 

 At row:52, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:52, column:134,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:134,the value of plot_cost is         : 16.65083865126061 

 At row:52, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:52, column:135,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:135,the value of plot_cost is         : 16.5283626676094 

 At row:52, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:52, column:136,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:136,the value of plot_cost is         : 16.406694744360706 

 At row:52, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:52, column:137,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:137,the value of plot_cost is         : 16.28583488151453 

 At row:52, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:52, column:138,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:138,the value of plot_cost is         : 16.165783079070874 

 At row:52, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:52, column:139,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:139,the value of plot_cost is         : 16.046539337029724 

 At row:52, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:52, column:140,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:140,the value of plot_cost is         : 15.92810365539109 

 At row:52, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:52, column:141,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:141,the value of plot_cost is         : 15.810476034154979 

 At row:52, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:52, column:142,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:142,the value of plot_cost is         : 15.693656473321376 

 At row:52, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:52, column:143,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:143,the value of plot_cost is         : 15.57764497289029 

 At row:52, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:52, column:144,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:144,the value of plot_cost is         : 15.462441532861723 

 At row:52, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:52, column:145,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:145,the value of plot_cost is         : 15.348046153235664 

 At row:52, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:52, column:146,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:146,the value of plot_cost is         : 15.234458834012125 

 At row:52, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:52, column:147,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:147,the value of plot_cost is         : 15.121679575191097 

 At row:52, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:52, column:148,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:148,the value of plot_cost is         : 15.009708376772588 

 At row:52, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:52, column:149,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:149,the value of plot_cost is         : 14.898545238756594 

 At row:52, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:52, column:150,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:150,the value of plot_cost is         : 14.788190161143111 

 At row:52, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:52, column:151,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:151,the value of plot_cost is         : 14.678643143932144 

 At row:52, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:52, column:152,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:152,the value of plot_cost is         : 14.569904187123697 

 At row:52, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:52, column:153,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:153,the value of plot_cost is         : 14.461973290717765 

 At row:52, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:52, column:154,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:154,the value of plot_cost is         : 14.354850454714345 

 At row:52, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:52, column:155,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:155,the value of plot_cost is         : 14.248535679113438 

 At row:52, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:52, column:156,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:156,the value of plot_cost is         : 14.143028963915047 

 At row:52, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:52, column:157,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:157,the value of plot_cost is         : 14.038330309119175 

 At row:52, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:52, column:158,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:158,the value of plot_cost is         : 13.934439714725816 

 At row:52, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:52, column:159,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:159,the value of plot_cost is         : 13.83135718073497 

 At row:52, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:52, column:160,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:160,the value of plot_cost is         : 13.72908270714664 

 At row:52, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:52, column:161,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:161,the value of plot_cost is         : 13.627616293960823 

 At row:52, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:52, column:162,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:162,the value of plot_cost is         : 13.526957941177528 

 At row:52, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:52, column:163,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:163,the value of plot_cost is         : 13.427107648796744 

 At row:52, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:52, column:164,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:164,the value of plot_cost is         : 13.328065416818475 

 At row:52, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:52, column:165,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:165,the value of plot_cost is         : 13.229831245242721 

 At row:52, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:52, column:166,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:166,the value of plot_cost is         : 13.13240513406948 

 At row:52, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:52, column:167,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:167,the value of plot_cost is         : 13.035787083298757 

 At row:52, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:52, column:168,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:168,the value of plot_cost is         : 12.939977092930551 

 At row:52, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:52, column:169,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:169,the value of plot_cost is         : 12.844975162964857 

 At row:52, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:52, column:170,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:170,the value of plot_cost is         : 12.750781293401678 

 At row:52, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:52, column:171,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:171,the value of plot_cost is         : 12.657395484241013 

 At row:52, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:52, column:172,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:172,the value of plot_cost is         : 12.564817735482865 

 At row:52, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:52, column:173,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:173,the value of plot_cost is         : 12.473048047127232 

 At row:52, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:52, column:174,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:174,the value of plot_cost is         : 12.382086419174117 

 At row:52, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:52, column:175,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:175,the value of plot_cost is         : 12.29193285162351 

 At row:52, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:52, column:176,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:176,the value of plot_cost is         : 12.202587344475424 

 At row:52, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:52, column:177,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:177,the value of plot_cost is         : 12.11404989772985 

 At row:52, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:52, column:178,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:178,the value of plot_cost is         : 12.026320511386794 

 At row:52, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:52, column:179,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:179,the value of plot_cost is         : 11.939399185446254 

 At row:52, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:52, column:180,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:180,the value of plot_cost is         : 11.853285919908224 

 At row:52, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:52, column:181,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:181,the value of plot_cost is         : 11.767980714772708 

 At row:52, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:52, column:182,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:182,the value of plot_cost is         : 11.683483570039714 

 At row:52, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:52, column:183,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:183,the value of plot_cost is         : 11.599794485709232 

 At row:52, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:52, column:184,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:184,the value of plot_cost is         : 11.516913461781265 

 At row:52, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:52, column:185,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:185,the value of plot_cost is         : 11.434840498255813 

 At row:52, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:52, column:186,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:186,the value of plot_cost is         : 11.353575595132874 

 At row:52, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:52, column:187,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:187,the value of plot_cost is         : 11.273118752412453 

 At row:52, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:52, column:188,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:188,the value of plot_cost is         : 11.193469970094547 

 At row:52, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:52, column:189,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:189,the value of plot_cost is         : 11.114629248179158 

 At row:52, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:52, column:190,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:190,the value of plot_cost is         : 11.03659658666628 

 At row:52, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:52, column:191,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:191,the value of plot_cost is         : 10.959371985555917 

 At row:52, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:52, column:192,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:192,the value of plot_cost is         : 10.88295544484807 

 At row:52, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:52, column:193,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:193,the value of plot_cost is         : 10.80734696454274 

 At row:52, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:52, column:194,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:194,the value of plot_cost is         : 10.732546544639924 

 At row:52, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:52, column:195,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:195,the value of plot_cost is         : 10.658554185139621 

 At row:52, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:52, column:196,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:196,the value of plot_cost is         : 10.585369886041832 

 At row:52, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:52, column:197,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:197,the value of plot_cost is         : 10.512993647346564 

 At row:52, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:52, column:198,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:198,the value of plot_cost is         : 10.44142546905381 

 At row:52, column:199,the value of plot_t0 is           : 3.0
 At row:52, column:199,the value of plot_t1 is           : 0.045226130653266416
 At row:52, column:199,the value of plot_cost is         : 10.37066535116357 

 At row:53, column:0,the value of plot_t0 is           : -1.0
 At row:53, column:0,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:0,the value of plot_cost is         : 39.39455695563244 

 At row:53, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:53, column:1,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:1,the value of plot_cost is         : 39.16647902109254 

 At row:53, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:53, column:2,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:2,the value of plot_cost is         : 38.939209146955164 

 At row:53, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:53, column:3,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:3,the value of plot_cost is         : 38.7127473332203 

 At row:53, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:53, column:4,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:4,the value of plot_cost is         : 38.48709357988795 

 At row:53, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:53, column:5,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:5,the value of plot_cost is         : 38.26224788695812 

 At row:53, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:53, column:6,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:6,the value of plot_cost is         : 38.03821025443081 

 At row:53, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:53, column:7,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:7,the value of plot_cost is         : 37.814980682306 

 At row:53, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:53, column:8,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:8,the value of plot_cost is         : 37.59255917058371 

 At row:53, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:53, column:9,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:9,the value of plot_cost is         : 37.370945719263936 

 At row:53, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:53, column:10,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:10,the value of plot_cost is         : 37.15014032834668 

 At row:53, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:53, column:11,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:11,the value of plot_cost is         : 36.93014299783194 

 At row:53, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:53, column:12,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:12,the value of plot_cost is         : 36.71095372771971 

 At row:53, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:53, column:13,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:13,the value of plot_cost is         : 36.49257251801001 

 At row:53, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:53, column:14,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:14,the value of plot_cost is         : 36.274999368702815 

 At row:53, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:53, column:15,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:15,the value of plot_cost is         : 36.05823427979813 

 At row:53, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:53, column:16,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:16,the value of plot_cost is         : 35.84227725129596 

 At row:53, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:53, column:17,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:17,the value of plot_cost is         : 35.62712828319631 

 At row:53, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:53, column:18,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:18,the value of plot_cost is         : 35.41278737549917 

 At row:53, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:53, column:19,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:19,the value of plot_cost is         : 35.199254528204555 

 At row:53, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:53, column:20,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:20,the value of plot_cost is         : 34.98652974131245 

 At row:53, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:53, column:21,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:21,the value of plot_cost is         : 34.774613014822854 

 At row:53, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:53, column:22,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:22,the value of plot_cost is         : 34.563504348735776 

 At row:53, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:53, column:23,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:23,the value of plot_cost is         : 34.35320374305122 

 At row:53, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:53, column:24,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:24,the value of plot_cost is         : 34.14371119776917 

 At row:53, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:53, column:25,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:25,the value of plot_cost is         : 33.935026712889645 

 At row:53, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:53, column:26,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:26,the value of plot_cost is         : 33.72715028841263 

 At row:53, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:53, column:27,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:27,the value of plot_cost is         : 33.52008192433813 

 At row:53, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:53, column:28,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:28,the value of plot_cost is         : 33.31382162066614 

 At row:53, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:53, column:29,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:29,the value of plot_cost is         : 33.10836937739667 

 At row:53, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:53, column:30,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:30,the value of plot_cost is         : 32.90372519452972 

 At row:53, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:53, column:31,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:31,the value of plot_cost is         : 32.699889072065275 

 At row:53, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:53, column:32,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:32,the value of plot_cost is         : 32.49686101000335 

 At row:53, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:53, column:33,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:33,the value of plot_cost is         : 32.294641008343945 

 At row:53, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:53, column:34,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:34,the value of plot_cost is         : 32.093229067087044 

 At row:53, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:53, column:35,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:35,the value of plot_cost is         : 31.892625186232674 

 At row:53, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:53, column:36,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:36,the value of plot_cost is         : 31.69282936578081 

 At row:53, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:53, column:37,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:37,the value of plot_cost is         : 31.49384160573146 

 At row:53, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:53, column:38,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:38,the value of plot_cost is         : 31.295661906084618 

 At row:53, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:53, column:39,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:39,the value of plot_cost is         : 31.09829026684031 

 At row:53, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:53, column:40,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:40,the value of plot_cost is         : 30.9017266879985 

 At row:53, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:53, column:41,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:41,the value of plot_cost is         : 30.705971169559206 

 At row:53, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:53, column:42,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:42,the value of plot_cost is         : 30.511023711522437 

 At row:53, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:53, column:43,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:43,the value of plot_cost is         : 30.31688431388818 

 At row:53, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:53, column:44,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:44,the value of plot_cost is         : 30.123552976656434 

 At row:53, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:53, column:45,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:45,the value of plot_cost is         : 29.93102969982721 

 At row:53, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:53, column:46,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:46,the value of plot_cost is         : 29.73931448340049 

 At row:53, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:53, column:47,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:47,the value of plot_cost is         : 29.548407327376292 

 At row:53, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:53, column:48,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:48,the value of plot_cost is         : 29.35830823175461 

 At row:53, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:53, column:49,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:49,the value of plot_cost is         : 29.16901719653544 

 At row:53, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:53, column:50,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:50,the value of plot_cost is         : 28.980534221718788 

 At row:53, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:53, column:51,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:51,the value of plot_cost is         : 28.79285930730465 

 At row:53, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:53, column:52,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:52,the value of plot_cost is         : 28.605992453293027 

 At row:53, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:53, column:53,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:53,the value of plot_cost is         : 28.41993365968392 

 At row:53, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:53, column:54,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:54,the value of plot_cost is         : 28.234682926477323 

 At row:53, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:53, column:55,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:55,the value of plot_cost is         : 28.05024025367324 

 At row:53, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:53, column:56,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:56,the value of plot_cost is         : 27.86660564127168 

 At row:53, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:53, column:57,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:57,the value of plot_cost is         : 27.683779089272637 

 At row:53, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:53, column:58,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:58,the value of plot_cost is         : 27.501760597676103 

 At row:53, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:53, column:59,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:59,the value of plot_cost is         : 27.320550166482082 

 At row:53, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:53, column:60,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:60,the value of plot_cost is         : 27.140147795690588 

 At row:53, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:53, column:61,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:61,the value of plot_cost is         : 26.960553485301592 

 At row:53, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:53, column:62,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:62,the value of plot_cost is         : 26.781767235315122 

 At row:53, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:53, column:63,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:63,the value of plot_cost is         : 26.60378904573117 

 At row:53, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:53, column:64,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:64,the value of plot_cost is         : 26.426618916549728 

 At row:53, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:53, column:65,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:65,the value of plot_cost is         : 26.2502568477708 

 At row:53, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:53, column:66,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:66,the value of plot_cost is         : 26.074702839394384 

 At row:53, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:53, column:67,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:67,the value of plot_cost is         : 25.89995689142049 

 At row:53, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:53, column:68,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:68,the value of plot_cost is         : 25.72601900384911 

 At row:53, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:53, column:69,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:69,the value of plot_cost is         : 25.552889176680242 

 At row:53, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:53, column:70,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:70,the value of plot_cost is         : 25.380567409913894 

 At row:53, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:53, column:71,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:71,the value of plot_cost is         : 25.20905370355005 

 At row:53, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:53, column:72,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:72,the value of plot_cost is         : 25.038348057588735 

 At row:53, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:53, column:73,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:73,the value of plot_cost is         : 24.868450472029927 

 At row:53, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:53, column:74,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:74,the value of plot_cost is         : 24.699360946873632 

 At row:53, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:53, column:75,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:75,the value of plot_cost is         : 24.531079482119857 

 At row:53, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:53, column:76,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:76,the value of plot_cost is         : 24.363606077768598 

 At row:53, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:53, column:77,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:77,the value of plot_cost is         : 24.196940733819854 

 At row:53, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:53, column:78,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:78,the value of plot_cost is         : 24.031083450273616 

 At row:53, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:53, column:79,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:79,the value of plot_cost is         : 23.866034227129905 

 At row:53, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:53, column:80,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:80,the value of plot_cost is         : 23.70179306438871 

 At row:53, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:53, column:81,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:81,the value of plot_cost is         : 23.53835996205002 

 At row:53, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:53, column:82,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:82,the value of plot_cost is         : 23.375734920113846 

 At row:53, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:53, column:83,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:83,the value of plot_cost is         : 23.213917938580195 

 At row:53, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:53, column:84,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:84,the value of plot_cost is         : 23.052909017449057 

 At row:53, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:53, column:85,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:85,the value of plot_cost is         : 22.892708156720424 

 At row:53, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:53, column:86,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:86,the value of plot_cost is         : 22.73331535639432 

 At row:53, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:53, column:87,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:87,the value of plot_cost is         : 22.57473061647072 

 At row:53, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:53, column:88,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:88,the value of plot_cost is         : 22.416953936949643 

 At row:53, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:53, column:89,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:89,the value of plot_cost is         : 22.25998531783108 

 At row:53, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:53, column:90,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:90,the value of plot_cost is         : 22.10382475911503 

 At row:53, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:53, column:91,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:91,the value of plot_cost is         : 21.948472260801495 

 At row:53, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:53, column:92,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:92,the value of plot_cost is         : 21.79392782289047 

 At row:53, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:53, column:93,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:93,the value of plot_cost is         : 21.640191445381966 

 At row:53, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:53, column:94,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:94,the value of plot_cost is         : 21.48726312827598 

 At row:53, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:53, column:95,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:95,the value of plot_cost is         : 21.335142871572504 

 At row:53, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:53, column:96,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:96,the value of plot_cost is         : 21.183830675271548 

 At row:53, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:53, column:97,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:97,the value of plot_cost is         : 21.0333265393731 

 At row:53, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:53, column:98,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:98,the value of plot_cost is         : 20.88363046387717 

 At row:53, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:53, column:99,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:99,the value of plot_cost is         : 20.73474244878376 

 At row:53, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:53, column:100,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:100,the value of plot_cost is         : 20.586662494092863 

 At row:53, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:53, column:101,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:101,the value of plot_cost is         : 20.439390599804483 

 At row:53, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:53, column:102,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:102,the value of plot_cost is         : 20.292926765918608 

 At row:53, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:53, column:103,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:103,the value of plot_cost is         : 20.147270992435253 

 At row:53, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:53, column:104,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:104,the value of plot_cost is         : 20.002423279354417 

 At row:53, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:53, column:105,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:105,the value of plot_cost is         : 19.858383626676098 

 At row:53, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:53, column:106,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:106,the value of plot_cost is         : 19.715152034400287 

 At row:53, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:53, column:107,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:107,the value of plot_cost is         : 19.572728502526992 

 At row:53, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:53, column:108,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:108,the value of plot_cost is         : 19.431113031056213 

 At row:53, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:53, column:109,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:109,the value of plot_cost is         : 19.29030561998795 

 At row:53, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:53, column:110,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:110,the value of plot_cost is         : 19.1503062693222 

 At row:53, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:53, column:111,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:111,the value of plot_cost is         : 19.011114979058974 

 At row:53, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:53, column:112,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:112,the value of plot_cost is         : 18.872731749198252 

 At row:53, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:53, column:113,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:113,the value of plot_cost is         : 18.73515657974005 

 At row:53, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:53, column:114,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:114,the value of plot_cost is         : 18.598389470684356 

 At row:53, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:53, column:115,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:115,the value of plot_cost is         : 18.46243042203119 

 At row:53, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:53, column:116,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:116,the value of plot_cost is         : 18.327279433780532 

 At row:53, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:53, column:117,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:117,the value of plot_cost is         : 18.192936505932387 

 At row:53, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:53, column:118,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:118,the value of plot_cost is         : 18.05940163848676 

 At row:53, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:53, column:119,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:119,the value of plot_cost is         : 17.92667483144365 

 At row:53, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:53, column:120,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:120,the value of plot_cost is         : 17.79475608480305 

 At row:53, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:53, column:121,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:121,the value of plot_cost is         : 17.663645398564974 

 At row:53, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:53, column:122,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:122,the value of plot_cost is         : 17.5333427727294 

 At row:53, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:53, column:123,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:123,the value of plot_cost is         : 17.40384820729635 

 At row:53, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:53, column:124,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:124,the value of plot_cost is         : 17.275161702265816 

 At row:53, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:53, column:125,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:125,the value of plot_cost is         : 17.147283257637792 

 At row:53, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:53, column:126,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:126,the value of plot_cost is         : 17.02021287341229 

 At row:53, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:53, column:127,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:127,the value of plot_cost is         : 16.893950549589295 

 At row:53, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:53, column:128,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:128,the value of plot_cost is         : 16.76849628616882 

 At row:53, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:53, column:129,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:129,the value of plot_cost is         : 16.64385008315086 

 At row:53, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:53, column:130,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:130,the value of plot_cost is         : 16.52001194053541 

 At row:53, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:53, column:131,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:131,the value of plot_cost is         : 16.396981858322484 

 At row:53, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:53, column:132,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:132,the value of plot_cost is         : 16.274759836512064 

 At row:53, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:53, column:133,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:133,the value of plot_cost is         : 16.15334587510416 

 At row:53, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:53, column:134,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:134,the value of plot_cost is         : 16.032739974098778 

 At row:53, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:53, column:135,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:135,the value of plot_cost is         : 15.912942133495907 

 At row:53, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:53, column:136,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:136,the value of plot_cost is         : 15.793952353295554 

 At row:53, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:53, column:137,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:137,the value of plot_cost is         : 15.675770633497711 

 At row:53, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:53, column:138,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:138,the value of plot_cost is         : 15.558396974102385 

 At row:53, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:53, column:139,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:139,the value of plot_cost is         : 15.441831375109574 

 At row:53, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:53, column:140,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:140,the value of plot_cost is         : 15.326073836519278 

 At row:53, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:53, column:141,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:141,the value of plot_cost is         : 15.2111243583315 

 At row:53, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:53, column:142,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:142,the value of plot_cost is         : 15.096982940546235 

 At row:53, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:53, column:143,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:143,the value of plot_cost is         : 14.983649583163485 

 At row:53, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:53, column:144,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:144,the value of plot_cost is         : 14.871124286183248 

 At row:53, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:53, column:145,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:145,the value of plot_cost is         : 14.759407049605532 

 At row:53, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:53, column:146,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:146,the value of plot_cost is         : 14.648497873430324 

 At row:53, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:53, column:147,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:147,the value of plot_cost is         : 14.538396757657637 

 At row:53, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:53, column:148,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:148,the value of plot_cost is         : 14.42910370228746 

 At row:53, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:53, column:149,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:149,the value of plot_cost is         : 14.3206187073198 

 At row:53, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:53, column:150,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:150,the value of plot_cost is         : 14.212941772754656 

 At row:53, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:53, column:151,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:151,the value of plot_cost is         : 14.106072898592025 

 At row:53, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:53, column:152,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:152,the value of plot_cost is         : 14.000012084831914 

 At row:53, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:53, column:153,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:153,the value of plot_cost is         : 13.894759331474313 

 At row:53, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:53, column:154,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:154,the value of plot_cost is         : 13.790314638519227 

 At row:53, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:53, column:155,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:155,the value of plot_cost is         : 13.68667800596666 

 At row:53, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:53, column:156,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:156,the value of plot_cost is         : 13.583849433816603 

 At row:53, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:53, column:157,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:157,the value of plot_cost is         : 13.481828922069067 

 At row:53, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:53, column:158,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:158,the value of plot_cost is         : 13.380616470724044 

 At row:53, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:53, column:159,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:159,the value of plot_cost is         : 13.280212079781535 

 At row:53, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:53, column:160,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:160,the value of plot_cost is         : 13.180615749241541 

 At row:53, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:53, column:161,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:161,the value of plot_cost is         : 13.08182747910406 

 At row:53, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:53, column:162,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:162,the value of plot_cost is         : 12.9838472693691 

 At row:53, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:53, column:163,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:163,the value of plot_cost is         : 12.886675120036651 

 At row:53, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:53, column:164,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:164,the value of plot_cost is         : 12.790311031106718 

 At row:53, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:53, column:165,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:165,the value of plot_cost is         : 12.694755002579301 

 At row:53, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:53, column:166,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:166,the value of plot_cost is         : 12.600007034454395 

 At row:53, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:53, column:167,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:167,the value of plot_cost is         : 12.50606712673201 

 At row:53, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:53, column:168,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:168,the value of plot_cost is         : 12.412935279412135 

 At row:53, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:53, column:169,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:169,the value of plot_cost is         : 12.320611492494777 

 At row:53, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:53, column:170,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:170,the value of plot_cost is         : 12.229095765979936 

 At row:53, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:53, column:171,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:171,the value of plot_cost is         : 12.138388099867605 

 At row:53, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:53, column:172,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:172,the value of plot_cost is         : 12.048488494157796 

 At row:53, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:53, column:173,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:173,the value of plot_cost is         : 11.959396948850499 

 At row:53, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:53, column:174,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:174,the value of plot_cost is         : 11.871113463945715 

 At row:53, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:53, column:175,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:175,the value of plot_cost is         : 11.78363803944345 

 At row:53, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:53, column:176,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:176,the value of plot_cost is         : 11.696970675343696 

 At row:53, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:53, column:177,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:177,the value of plot_cost is         : 11.61111137164646 

 At row:53, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:53, column:178,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:178,the value of plot_cost is         : 11.526060128351737 

 At row:53, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:53, column:179,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:179,the value of plot_cost is         : 11.441816945459529 

 At row:53, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:53, column:180,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:180,the value of plot_cost is         : 11.358381822969838 

 At row:53, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:53, column:181,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:181,the value of plot_cost is         : 11.275754760882661 

 At row:53, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:53, column:182,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:182,the value of plot_cost is         : 11.193935759198 

 At row:53, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:53, column:183,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:183,the value of plot_cost is         : 11.112924817915854 

 At row:53, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:53, column:184,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:184,the value of plot_cost is         : 11.032721937036222 

 At row:53, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:53, column:185,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:185,the value of plot_cost is         : 10.953327116559107 

 At row:53, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:53, column:186,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:186,the value of plot_cost is         : 10.874740356484502 

 At row:53, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:53, column:187,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:187,the value of plot_cost is         : 10.79696165681242 

 At row:53, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:53, column:188,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:188,the value of plot_cost is         : 10.719991017542846 

 At row:53, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:53, column:189,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:189,the value of plot_cost is         : 10.64382843867579 

 At row:53, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:53, column:190,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:190,the value of plot_cost is         : 10.56847392021125 

 At row:53, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:53, column:191,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:191,the value of plot_cost is         : 10.493927462149223 

 At row:53, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:53, column:192,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:192,the value of plot_cost is         : 10.420189064489714 

 At row:53, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:53, column:193,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:193,the value of plot_cost is         : 10.347258727232719 

 At row:53, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:53, column:194,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:194,the value of plot_cost is         : 10.275136450378236 

 At row:53, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:53, column:195,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:195,the value of plot_cost is         : 10.203822233926273 

 At row:53, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:53, column:196,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:196,the value of plot_cost is         : 10.13331607787682 

 At row:53, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:53, column:197,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:197,the value of plot_cost is         : 10.063617982229886 

 At row:53, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:53, column:198,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:198,the value of plot_cost is         : 9.994727946985465 

 At row:53, column:199,the value of plot_t0 is           : 3.0
 At row:53, column:199,the value of plot_t1 is           : 0.0653266331658291
 At row:53, column:199,the value of plot_cost is         : 9.92664597214356 

 At row:54, column:0,the value of plot_t0 is           : -1.0
 At row:54, column:0,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:0,the value of plot_cost is         : 38.430169764832776 

 At row:54, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:54, column:1,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:1,the value of plot_cost is         : 38.20476997334122 

 At row:54, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:54, column:2,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:2,the value of plot_cost is         : 37.98017824225217 

 At row:54, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:54, column:3,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:3,the value of plot_cost is         : 37.75639457156565 

 At row:54, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:54, column:4,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:4,the value of plot_cost is         : 37.53341896128163 

 At row:54, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:54, column:5,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:5,the value of plot_cost is         : 37.311251411400136 

 At row:54, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:54, column:6,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:6,the value of plot_cost is         : 37.089891921921165 

 At row:54, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:54, column:7,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:7,the value of plot_cost is         : 36.86934049284469 

 At row:54, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:54, column:8,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:8,the value of plot_cost is         : 36.64959712417074 

 At row:54, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:54, column:9,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:9,the value of plot_cost is         : 36.430661815899306 

 At row:54, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:54, column:10,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:10,the value of plot_cost is         : 36.212534568030385 

 At row:54, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:54, column:11,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:11,the value of plot_cost is         : 35.99521538056398 

 At row:54, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:54, column:12,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:12,the value of plot_cost is         : 35.77870425350008 

 At row:54, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:54, column:13,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:13,the value of plot_cost is         : 35.56300118683871 

 At row:54, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:54, column:14,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:14,the value of plot_cost is         : 35.348106180579855 

 At row:54, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:54, column:15,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:15,the value of plot_cost is         : 35.1340192347235 

 At row:54, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:54, column:16,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:16,the value of plot_cost is         : 34.92074034926967 

 At row:54, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:54, column:17,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:17,the value of plot_cost is         : 34.70826952421836 

 At row:54, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:54, column:18,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:18,the value of plot_cost is         : 34.49660675956956 

 At row:54, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:54, column:19,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:19,the value of plot_cost is         : 34.28575205532328 

 At row:54, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:54, column:20,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:20,the value of plot_cost is         : 34.075705411479504 

 At row:54, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:54, column:21,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:21,the value of plot_cost is         : 33.86646682803825 

 At row:54, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:54, column:22,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:22,the value of plot_cost is         : 33.658036304999506 

 At row:54, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:54, column:23,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:23,the value of plot_cost is         : 33.45041384236328 

 At row:54, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:54, column:24,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:24,the value of plot_cost is         : 33.24359944012957 

 At row:54, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:54, column:25,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:25,the value of plot_cost is         : 33.03759309829838 

 At row:54, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:54, column:26,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:26,the value of plot_cost is         : 32.8323948168697 

 At row:54, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:54, column:27,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:27,the value of plot_cost is         : 32.62800459584353 

 At row:54, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:54, column:28,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:28,the value of plot_cost is         : 32.42442243521989 

 At row:54, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:54, column:29,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:29,the value of plot_cost is         : 32.221648334998754 

 At row:54, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:54, column:30,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:30,the value of plot_cost is         : 32.01968229518013 

 At row:54, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:54, column:31,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:31,the value of plot_cost is         : 31.81852431576403 

 At row:54, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:54, column:32,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:32,the value of plot_cost is         : 31.618174396750437 

 At row:54, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:54, column:33,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:33,the value of plot_cost is         : 31.418632538139363 

 At row:54, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:54, column:34,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:34,the value of plot_cost is         : 31.219898739930805 

 At row:54, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:54, column:35,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:35,the value of plot_cost is         : 31.021973002124763 

 At row:54, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:54, column:36,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:36,the value of plot_cost is         : 30.824855324721234 

 At row:54, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:54, column:37,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:37,the value of plot_cost is         : 30.628545707720217 

 At row:54, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:54, column:38,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:38,the value of plot_cost is         : 30.43304415112172 

 At row:54, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:54, column:39,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:39,the value of plot_cost is         : 30.23835065492574 

 At row:54, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:54, column:40,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:40,the value of plot_cost is         : 30.04446521913227 

 At row:54, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:54, column:41,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:41,the value of plot_cost is         : 29.851387843741314 

 At row:54, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:54, column:42,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:42,the value of plot_cost is         : 29.659118528752874 

 At row:54, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:54, column:43,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:43,the value of plot_cost is         : 29.467657274166953 

 At row:54, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:54, column:44,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:44,the value of plot_cost is         : 29.277004079983545 

 At row:54, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:54, column:45,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:45,the value of plot_cost is         : 29.08715894620265 

 At row:54, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:54, column:46,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:46,the value of plot_cost is         : 28.898121872824277 

 At row:54, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:54, column:47,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:47,the value of plot_cost is         : 28.70989285984841 

 At row:54, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:54, column:48,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:48,the value of plot_cost is         : 28.52247190727506 

 At row:54, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:54, column:49,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:49,the value of plot_cost is         : 28.335859015104234 

 At row:54, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:54, column:50,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:50,the value of plot_cost is         : 28.150054183335918 

 At row:54, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:54, column:51,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:51,the value of plot_cost is         : 27.96505741197011 

 At row:54, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:54, column:52,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:52,the value of plot_cost is         : 27.780868701006828 

 At row:54, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:54, column:53,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:53,the value of plot_cost is         : 27.59748805044605 

 At row:54, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:54, column:54,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:54,the value of plot_cost is         : 27.414915460287794 

 At row:54, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:54, column:55,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:55,the value of plot_cost is         : 27.23315093053205 

 At row:54, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:54, column:56,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:56,the value of plot_cost is         : 27.05219446117883 

 At row:54, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:54, column:57,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:57,the value of plot_cost is         : 26.872046052228114 

 At row:54, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:54, column:58,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:58,the value of plot_cost is         : 26.692705703679916 

 At row:54, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:54, column:59,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:59,the value of plot_cost is         : 26.514173415534238 

 At row:54, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:54, column:60,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:60,the value of plot_cost is         : 26.336449187791068 

 At row:54, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:54, column:61,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:61,the value of plot_cost is         : 26.159533020450414 

 At row:54, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:54, column:62,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:62,the value of plot_cost is         : 25.98342491351228 

 At row:54, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:54, column:63,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:63,the value of plot_cost is         : 25.808124866976655 

 At row:54, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:54, column:64,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:64,the value of plot_cost is         : 25.633632880843553 

 At row:54, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:54, column:65,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:65,the value of plot_cost is         : 25.459948955112964 

 At row:54, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:54, column:66,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:66,the value of plot_cost is         : 25.287073089784887 

 At row:54, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:54, column:67,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:67,the value of plot_cost is         : 25.115005284859322 

 At row:54, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:54, column:68,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:68,the value of plot_cost is         : 24.943745540336277 

 At row:54, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:54, column:69,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:69,the value of plot_cost is         : 24.773293856215748 

 At row:54, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:54, column:70,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:70,the value of plot_cost is         : 24.603650232497735 

 At row:54, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:54, column:71,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:71,the value of plot_cost is         : 24.434814669182234 

 At row:54, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:54, column:72,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:72,the value of plot_cost is         : 24.266787166269246 

 At row:54, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:54, column:73,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:73,the value of plot_cost is         : 24.099567723758774 

 At row:54, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:54, column:74,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:74,the value of plot_cost is         : 23.933156341650818 

 At row:54, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:54, column:75,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:75,the value of plot_cost is         : 23.767553019945385 

 At row:54, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:54, column:76,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:76,the value of plot_cost is         : 23.60275775864245 

 At row:54, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:54, column:77,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:77,the value of plot_cost is         : 23.438770557742043 

 At row:54, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:54, column:78,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:78,the value of plot_cost is         : 23.275591417244147 

 At row:54, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:54, column:79,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:79,the value of plot_cost is         : 23.113220337148768 

 At row:54, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:54, column:80,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:80,the value of plot_cost is         : 22.951657317455904 

 At row:54, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:54, column:81,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:81,the value of plot_cost is         : 22.790902358165557 

 At row:54, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:54, column:82,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:82,the value of plot_cost is         : 22.63095545927772 

 At row:54, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:54, column:83,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:83,the value of plot_cost is         : 22.4718166207924 

 At row:54, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:54, column:84,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:84,the value of plot_cost is         : 22.313485842709596 

 At row:54, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:54, column:85,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:85,the value of plot_cost is         : 22.15596312502931 

 At row:54, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:54, column:86,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:86,the value of plot_cost is         : 21.99924846775153 

 At row:54, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:54, column:87,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:87,the value of plot_cost is         : 21.843341870876273 

 At row:54, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:54, column:88,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:88,the value of plot_cost is         : 21.688243334403527 

 At row:54, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:54, column:89,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:89,the value of plot_cost is         : 21.5339528583333 

 At row:54, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:54, column:90,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:90,the value of plot_cost is         : 21.380470442665587 

 At row:54, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:54, column:91,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:91,the value of plot_cost is         : 21.22779608740039 

 At row:54, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:54, column:92,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:92,the value of plot_cost is         : 21.0759297925377 

 At row:54, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:54, column:93,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:93,the value of plot_cost is         : 20.92487155807753 

 At row:54, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:54, column:94,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:94,the value of plot_cost is         : 20.77462138401988 

 At row:54, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:54, column:95,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:95,the value of plot_cost is         : 20.62517927036474 

 At row:54, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:54, column:96,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:96,the value of plot_cost is         : 20.47654521711212 

 At row:54, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:54, column:97,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:97,the value of plot_cost is         : 20.328719224262013 

 At row:54, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:54, column:98,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:98,the value of plot_cost is         : 20.181701291814417 

 At row:54, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:54, column:99,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:99,the value of plot_cost is         : 20.03549141976934 

 At row:54, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:54, column:100,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:100,the value of plot_cost is         : 19.89008960812678 

 At row:54, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:54, column:101,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:101,the value of plot_cost is         : 19.745495856886727 

 At row:54, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:54, column:102,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:102,the value of plot_cost is         : 19.60171016604919 

 At row:54, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:54, column:103,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:103,the value of plot_cost is         : 19.458732535614175 

 At row:54, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:54, column:104,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:104,the value of plot_cost is         : 19.31656296558167 

 At row:54, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:54, column:105,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:105,the value of plot_cost is         : 19.175201455951687 

 At row:54, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:54, column:106,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:106,the value of plot_cost is         : 19.034648006724215 

 At row:54, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:54, column:107,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:107,the value of plot_cost is         : 18.89490261789926 

 At row:54, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:54, column:108,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:108,the value of plot_cost is         : 18.75596528947681 

 At row:54, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:54, column:109,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:109,the value of plot_cost is         : 18.617836021456885 

 At row:54, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:54, column:110,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:110,the value of plot_cost is         : 18.480514813839473 

 At row:54, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:54, column:111,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:111,the value of plot_cost is         : 18.344001666624575 

 At row:54, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:54, column:112,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:112,the value of plot_cost is         : 18.208296579812195 

 At row:54, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:54, column:113,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:113,the value of plot_cost is         : 18.07339955340233 

 At row:54, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:54, column:114,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:114,the value of plot_cost is         : 17.939310587394974 

 At row:54, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:54, column:115,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:115,the value of plot_cost is         : 17.806029681790136 

 At row:54, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:54, column:116,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:116,the value of plot_cost is         : 17.673556836587817 

 At row:54, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:54, column:117,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:117,the value of plot_cost is         : 17.54189205178801 

 At row:54, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:54, column:118,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:118,the value of plot_cost is         : 17.411035327390717 

 At row:54, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:54, column:119,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:119,the value of plot_cost is         : 17.280986663395943 

 At row:54, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:54, column:120,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:120,the value of plot_cost is         : 17.151746059803678 

 At row:54, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:54, column:121,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:121,the value of plot_cost is         : 17.023313516613936 

 At row:54, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:54, column:122,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:122,the value of plot_cost is         : 16.895689033826702 

 At row:54, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:54, column:123,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:123,the value of plot_cost is         : 16.768872611441985 

 At row:54, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:54, column:124,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:124,the value of plot_cost is         : 16.642864249459787 

 At row:54, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:54, column:125,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:125,the value of plot_cost is         : 16.5176639478801 

 At row:54, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:54, column:126,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:126,the value of plot_cost is         : 16.393271706702933 

 At row:54, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:54, column:127,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:127,the value of plot_cost is         : 16.269687525928276 

 At row:54, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:54, column:128,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:128,the value of plot_cost is         : 16.146911405556136 

 At row:54, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:54, column:129,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:129,the value of plot_cost is         : 16.024943345586507 

 At row:54, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:54, column:130,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:130,the value of plot_cost is         : 15.903783346019397 

 At row:54, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:54, column:131,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:131,the value of plot_cost is         : 15.783431406854804 

 At row:54, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:54, column:132,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:132,the value of plot_cost is         : 15.663887528092719 

 At row:54, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:54, column:133,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:133,the value of plot_cost is         : 15.545151709733156 

 At row:54, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:54, column:134,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:134,the value of plot_cost is         : 15.427223951776108 

 At row:54, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:54, column:135,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:135,the value of plot_cost is         : 15.31010425422157 

 At row:54, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:54, column:136,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:136,the value of plot_cost is         : 15.193792617069553 

 At row:54, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:54, column:137,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:137,the value of plot_cost is         : 15.078289040320046 

 At row:54, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:54, column:138,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:138,the value of plot_cost is         : 14.963593523973055 

 At row:54, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:54, column:139,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:139,the value of plot_cost is         : 14.849706068028581 

 At row:54, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:54, column:140,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:140,the value of plot_cost is         : 14.736626672486619 

 At row:54, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:54, column:141,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:141,the value of plot_cost is         : 14.624355337347177 

 At row:54, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:54, column:142,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:142,the value of plot_cost is         : 14.51289206261025 

 At row:54, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:54, column:143,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:143,the value of plot_cost is         : 14.402236848275836 

 At row:54, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:54, column:144,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:144,the value of plot_cost is         : 14.292389694343933 

 At row:54, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:54, column:145,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:145,the value of plot_cost is         : 14.18335060081455 

 At row:54, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:54, column:146,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:146,the value of plot_cost is         : 14.075119567687683 

 At row:54, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:54, column:147,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:147,the value of plot_cost is         : 13.967696594963325 

 At row:54, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:54, column:148,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:148,the value of plot_cost is         : 13.861081682641489 

 At row:54, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:54, column:149,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:149,the value of plot_cost is         : 13.755274830722165 

 At row:54, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:54, column:150,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:150,the value of plot_cost is         : 13.650276039205355 

 At row:54, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:54, column:151,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:151,the value of plot_cost is         : 13.54608530809106 

 At row:54, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:54, column:152,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:152,the value of plot_cost is         : 13.442702637379284 

 At row:54, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:54, column:153,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:153,the value of plot_cost is         : 13.340128027070019 

 At row:54, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:54, column:154,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:154,the value of plot_cost is         : 13.238361477163272 

 At row:54, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:54, column:155,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:155,the value of plot_cost is         : 13.137402987659037 

 At row:54, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:54, column:156,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:156,the value of plot_cost is         : 13.03725255855732 

 At row:54, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:54, column:157,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:157,the value of plot_cost is         : 12.937910189858119 

 At row:54, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:54, column:158,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:158,the value of plot_cost is         : 12.839375881561429 

 At row:54, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:54, column:159,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:159,the value of plot_cost is         : 12.741649633667256 

 At row:54, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:54, column:160,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:160,the value of plot_cost is         : 12.644731446175598 

 At row:54, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:54, column:161,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:161,the value of plot_cost is         : 12.548621319086454 

 At row:54, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:54, column:162,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:162,the value of plot_cost is         : 12.453319252399828 

 At row:54, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:54, column:163,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:163,the value of plot_cost is         : 12.358825246115716 

 At row:54, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:54, column:164,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:164,the value of plot_cost is         : 12.265139300234118 

 At row:54, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:54, column:165,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:165,the value of plot_cost is         : 12.172261414755035 

 At row:54, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:54, column:166,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:166,the value of plot_cost is         : 12.080191589678467 

 At row:54, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:54, column:167,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:167,the value of plot_cost is         : 11.988929825004416 

 At row:54, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:54, column:168,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:168,the value of plot_cost is         : 11.89847612073288 

 At row:54, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:54, column:169,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:169,the value of plot_cost is         : 11.808830476863857 

 At row:54, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:54, column:170,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:170,the value of plot_cost is         : 11.71999289339735 

 At row:54, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:54, column:171,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:171,the value of plot_cost is         : 11.631963370333358 

 At row:54, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:54, column:172,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:172,the value of plot_cost is         : 11.544741907671883 

 At row:54, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:54, column:173,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:173,the value of plot_cost is         : 11.458328505412918 

 At row:54, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:54, column:174,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:174,the value of plot_cost is         : 11.372723163556474 

 At row:54, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:54, column:175,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:175,the value of plot_cost is         : 11.287925882102542 

 At row:54, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:54, column:176,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:176,the value of plot_cost is         : 11.203936661051126 

 At row:54, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:54, column:177,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:177,the value of plot_cost is         : 11.120755500402224 

 At row:54, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:54, column:178,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:178,the value of plot_cost is         : 11.03838240015584 

 At row:54, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:54, column:179,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:179,the value of plot_cost is         : 10.956817360311966 

 At row:54, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:54, column:180,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:180,the value of plot_cost is         : 10.87606038087061 

 At row:54, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:54, column:181,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:181,the value of plot_cost is         : 10.796111461831769 

 At row:54, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:54, column:182,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:182,the value of plot_cost is         : 10.716970603195444 

 At row:54, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:54, column:183,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:183,the value of plot_cost is         : 10.638637804961634 

 At row:54, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:54, column:184,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:184,the value of plot_cost is         : 10.561113067130337 

 At row:54, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:54, column:185,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:185,the value of plot_cost is         : 10.484396389701557 

 At row:54, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:54, column:186,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:186,the value of plot_cost is         : 10.40848777267529 

 At row:54, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:54, column:187,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:187,the value of plot_cost is         : 10.333387216051541 

 At row:54, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:54, column:188,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:188,the value of plot_cost is         : 10.259094719830305 

 At row:54, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:54, column:189,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:189,the value of plot_cost is         : 10.185610284011586 

 At row:54, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:54, column:190,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:190,the value of plot_cost is         : 10.11293390859538 

 At row:54, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:54, column:191,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:191,the value of plot_cost is         : 10.041065593581687 

 At row:54, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:54, column:192,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:192,the value of plot_cost is         : 9.970005338970514 

 At row:54, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:54, column:193,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:193,the value of plot_cost is         : 9.899753144761855 

 At row:54, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:54, column:194,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:194,the value of plot_cost is         : 9.830309010955709 

 At row:54, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:54, column:195,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:195,the value of plot_cost is         : 9.76167293755208 

 At row:54, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:54, column:196,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:196,the value of plot_cost is         : 9.693844924550964 

 At row:54, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:54, column:197,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:197,the value of plot_cost is         : 9.626824971952365 

 At row:54, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:54, column:198,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:198,the value of plot_cost is         : 9.560613079756282 

 At row:54, column:199,the value of plot_t0 is           : 3.0
 At row:54, column:199,the value of plot_t1 is           : 0.085427135678392
 At row:54, column:199,the value of plot_cost is         : 9.49520924796271 

 At row:55, column:0,the value of plot_t0 is           : -1.0
 At row:55, column:0,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:0,the value of plot_cost is         : 37.478365228872285 

 At row:55, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:55, column:1,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:1,the value of plot_cost is         : 37.25564358042906 

 At row:55, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:55, column:2,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:2,the value of plot_cost is         : 37.033729992388345 

 At row:55, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:55, column:3,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:3,the value of plot_cost is         : 36.812624464750165 

 At row:55, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:55, column:4,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:4,the value of plot_cost is         : 36.59232699751448 

 At row:55, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:55, column:5,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:5,the value of plot_cost is         : 36.37283759068132 

 At row:55, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:55, column:6,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:6,the value of plot_cost is         : 36.15415624425068 

 At row:55, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:55, column:7,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:7,the value of plot_cost is         : 35.93628295822254 

 At row:55, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:55, column:8,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:8,the value of plot_cost is         : 35.719217732596924 

 At row:55, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:55, column:9,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:9,the value of plot_cost is         : 35.502960567373826 

 At row:55, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:55, column:10,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:10,the value of plot_cost is         : 35.28751146255325 

 At row:55, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:55, column:11,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:11,the value of plot_cost is         : 35.072870418135174 

 At row:55, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:55, column:12,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:12,the value of plot_cost is         : 34.85903743411962 

 At row:55, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:55, column:13,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:13,the value of plot_cost is         : 34.64601251050658 

 At row:55, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:55, column:14,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:14,the value of plot_cost is         : 34.43379564729606 

 At row:55, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:55, column:15,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:15,the value of plot_cost is         : 34.22238684448805 

 At row:55, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:55, column:16,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:16,the value of plot_cost is         : 34.011786102082546 

 At row:55, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:55, column:17,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:17,the value of plot_cost is         : 33.80199342007957 

 At row:55, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:55, column:18,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:18,the value of plot_cost is         : 33.593008798479104 

 At row:55, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:55, column:19,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:19,the value of plot_cost is         : 33.38483223728116 

 At row:55, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:55, column:20,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:20,the value of plot_cost is         : 33.17746373648573 

 At row:55, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:55, column:21,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:21,the value of plot_cost is         : 32.97090329609281 

 At row:55, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:55, column:22,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:22,the value of plot_cost is         : 32.76515091610239 

 At row:55, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:55, column:23,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:23,the value of plot_cost is         : 32.56020659651451 

 At row:55, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:55, column:24,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:24,the value of plot_cost is         : 32.356070337329136 

 At row:55, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:55, column:25,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:25,the value of plot_cost is         : 32.15274213854628 

 At row:55, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:55, column:26,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:26,the value of plot_cost is         : 31.950222000165933 

 At row:55, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:55, column:27,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:27,the value of plot_cost is         : 31.74850992218811 

 At row:55, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:55, column:28,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:28,the value of plot_cost is         : 31.547605904612787 

 At row:55, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:55, column:29,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:29,the value of plot_cost is         : 31.347509947439992 

 At row:55, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:55, column:30,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:30,the value of plot_cost is         : 31.148222050669705 

 At row:55, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:55, column:31,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:31,the value of plot_cost is         : 30.94974221430194 

 At row:55, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:55, column:32,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:32,the value of plot_cost is         : 30.752070438336688 

 At row:55, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:55, column:33,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:33,the value of plot_cost is         : 30.555206722773942 

 At row:55, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:55, column:34,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:34,the value of plot_cost is         : 30.359151067613723 

 At row:55, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:55, column:35,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:35,the value of plot_cost is         : 30.163903472856013 

 At row:55, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:55, column:36,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:36,the value of plot_cost is         : 29.969463938500827 

 At row:55, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:55, column:37,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:37,the value of plot_cost is         : 29.77583246454814 

 At row:55, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:55, column:38,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:38,the value of plot_cost is         : 29.58300905099798 

 At row:55, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:55, column:39,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:39,the value of plot_cost is         : 29.390993697850334 

 At row:55, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:55, column:40,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:40,the value of plot_cost is         : 29.199786405105204 

 At row:55, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:55, column:41,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:41,the value of plot_cost is         : 29.009387172762587 

 At row:55, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:55, column:42,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:42,the value of plot_cost is         : 28.819796000822482 

 At row:55, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:55, column:43,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:43,the value of plot_cost is         : 28.631012889284893 

 At row:55, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:55, column:44,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:44,the value of plot_cost is         : 28.443037838149824 

 At row:55, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:55, column:45,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:45,the value of plot_cost is         : 28.255870847417263 

 At row:55, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:55, column:46,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:46,the value of plot_cost is         : 28.06951191708722 

 At row:55, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:55, column:47,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:47,the value of plot_cost is         : 27.883961047159698 

 At row:55, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:55, column:48,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:48,the value of plot_cost is         : 27.699218237634682 

 At row:55, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:55, column:49,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:49,the value of plot_cost is         : 27.515283488512186 

 At row:55, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:55, column:50,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:50,the value of plot_cost is         : 27.3321567997922 

 At row:55, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:55, column:51,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:51,the value of plot_cost is         : 27.14983817147474 

 At row:55, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:55, column:52,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:52,the value of plot_cost is         : 26.96832760355979 

 At row:55, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:55, column:53,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:53,the value of plot_cost is         : 26.78762509604735 

 At row:55, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:55, column:54,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:54,the value of plot_cost is         : 26.607730648937434 

 At row:55, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:55, column:55,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:55,the value of plot_cost is         : 26.428644262230026 

 At row:55, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:55, column:56,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:56,the value of plot_cost is         : 26.25036593592513 

 At row:55, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:55, column:57,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:57,the value of plot_cost is         : 26.072895670022753 

 At row:55, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:55, column:58,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:58,the value of plot_cost is         : 25.896233464522894 

 At row:55, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:55, column:59,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:59,the value of plot_cost is         : 25.720379319425547 

 At row:55, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:55, column:60,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:60,the value of plot_cost is         : 25.545333234730712 

 At row:55, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:55, column:61,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:61,the value of plot_cost is         : 25.371095210438405 

 At row:55, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:55, column:62,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:62,the value of plot_cost is         : 25.1976652465486 

 At row:55, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:55, column:63,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:63,the value of plot_cost is         : 25.025043343061316 

 At row:55, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:55, column:64,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:64,the value of plot_cost is         : 24.853229499976543 

 At row:55, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:55, column:65,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:65,the value of plot_cost is         : 24.68222371729429 

 At row:55, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:55, column:66,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:66,the value of plot_cost is         : 24.51202599501455 

 At row:55, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:55, column:67,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:67,the value of plot_cost is         : 24.34263633313732 

 At row:55, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:55, column:68,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:68,the value of plot_cost is         : 24.174054731662615 

 At row:55, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:55, column:69,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:69,the value of plot_cost is         : 24.00628119059042 

 At row:55, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:55, column:70,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:70,the value of plot_cost is         : 23.839315709920736 

 At row:55, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:55, column:71,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:71,the value of plot_cost is         : 23.673158289653575 

 At row:55, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:55, column:72,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:72,the value of plot_cost is         : 23.507808929788926 

 At row:55, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:55, column:73,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:73,the value of plot_cost is         : 23.34326763032679 

 At row:55, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:55, column:74,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:74,the value of plot_cost is         : 23.179534391267172 

 At row:55, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:55, column:75,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:75,the value of plot_cost is         : 23.016609212610067 

 At row:55, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:55, column:76,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:76,the value of plot_cost is         : 22.85449209435548 

 At row:55, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:55, column:77,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:77,the value of plot_cost is         : 22.6931830365034 

 At row:55, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:55, column:78,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:78,the value of plot_cost is         : 22.532682039053842 

 At row:55, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:55, column:79,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:79,the value of plot_cost is         : 22.372989102006798 

 At row:55, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:55, column:80,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:80,the value of plot_cost is         : 22.214104225362266 

 At row:55, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:55, column:81,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:81,the value of plot_cost is         : 22.056027409120254 

 At row:55, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:55, column:82,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:82,the value of plot_cost is         : 21.898758653280755 

 At row:55, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:55, column:83,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:83,the value of plot_cost is         : 21.742297957843768 

 At row:55, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:55, column:84,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:84,the value of plot_cost is         : 21.5866453228093 

 At row:55, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:55, column:85,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:85,the value of plot_cost is         : 21.43180074817735 

 At row:55, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:55, column:86,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:86,the value of plot_cost is         : 21.277764233947916 

 At row:55, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:55, column:87,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:87,the value of plot_cost is         : 21.124535780120983 

 At row:55, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:55, column:88,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:88,the value of plot_cost is         : 20.97211538669658 

 At row:55, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:55, column:89,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:89,the value of plot_cost is         : 20.820503053674685 

 At row:55, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:55, column:90,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:90,the value of plot_cost is         : 20.669698781055306 

 At row:55, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:55, column:91,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:91,the value of plot_cost is         : 20.519702568838444 

 At row:55, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:55, column:92,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:92,the value of plot_cost is         : 20.370514417024093 

 At row:55, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:55, column:93,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:93,the value of plot_cost is         : 20.22213432561226 

 At row:55, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:55, column:94,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:94,the value of plot_cost is         : 20.074562294602945 

 At row:55, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:55, column:95,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:95,the value of plot_cost is         : 19.927798323996143 

 At row:55, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:55, column:96,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:96,the value of plot_cost is         : 19.781842413791857 

 At row:55, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:55, column:97,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:97,the value of plot_cost is         : 19.636694563990076 

 At row:55, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:55, column:98,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:98,the value of plot_cost is         : 19.492354774590822 

 At row:55, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:55, column:99,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:99,the value of plot_cost is         : 19.348823045594084 

 At row:55, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:55, column:100,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:100,the value of plot_cost is         : 19.206099376999855 

 At row:55, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:55, column:101,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:101,the value of plot_cost is         : 19.064183768808142 

 At row:55, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:55, column:102,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:102,the value of plot_cost is         : 18.923076221018942 

 At row:55, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:55, column:103,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:103,the value of plot_cost is         : 18.78277673363226 

 At row:55, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:55, column:104,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:104,the value of plot_cost is         : 18.643285306648096 

 At row:55, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:55, column:105,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:105,the value of plot_cost is         : 18.504601940066443 

 At row:55, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:55, column:106,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:106,the value of plot_cost is         : 18.36672663388731 

 At row:55, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:55, column:107,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:107,the value of plot_cost is         : 18.229659388110687 

 At row:55, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:55, column:108,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:108,the value of plot_cost is         : 18.093400202736575 

 At row:55, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:55, column:109,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:109,the value of plot_cost is         : 17.957949077764983 

 At row:55, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:55, column:110,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:110,the value of plot_cost is         : 17.823306013195907 

 At row:55, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:55, column:111,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:111,the value of plot_cost is         : 17.68947100902935 

 At row:55, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:55, column:112,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:112,the value of plot_cost is         : 17.5564440652653 

 At row:55, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:55, column:113,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:113,the value of plot_cost is         : 17.42422518190377 

 At row:55, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:55, column:114,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:114,the value of plot_cost is         : 17.292814358944753 

 At row:55, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:55, column:115,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:115,the value of plot_cost is         : 17.16221159638825 

 At row:55, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:55, column:116,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:116,the value of plot_cost is         : 17.03241689423427 

 At row:55, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:55, column:117,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:117,the value of plot_cost is         : 16.903430252482796 

 At row:55, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:55, column:118,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:118,the value of plot_cost is         : 16.77525167113384 

 At row:55, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:55, column:119,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:119,the value of plot_cost is         : 16.6478811501874 

 At row:55, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:55, column:120,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:120,the value of plot_cost is         : 16.521318689643472 

 At row:55, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:55, column:121,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:121,the value of plot_cost is         : 16.395564289502065 

 At row:55, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:55, column:122,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:122,the value of plot_cost is         : 16.270617949763167 

 At row:55, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:55, column:123,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:123,the value of plot_cost is         : 16.146479670426785 

 At row:55, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:55, column:124,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:124,the value of plot_cost is         : 16.023149451492923 

 At row:55, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:55, column:125,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:125,the value of plot_cost is         : 15.900627292961575 

 At row:55, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:55, column:126,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:126,the value of plot_cost is         : 15.77891319483274 

 At row:55, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:55, column:127,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:127,the value of plot_cost is         : 15.658007157106416 

 At row:55, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:55, column:128,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:128,the value of plot_cost is         : 15.537909179782611 

 At row:55, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:55, column:129,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:129,the value of plot_cost is         : 15.41861926286132 

 At row:55, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:55, column:130,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:130,the value of plot_cost is         : 15.300137406342547 

 At row:55, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:55, column:131,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:131,the value of plot_cost is         : 15.182463610226288 

 At row:55, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:55, column:132,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:132,the value of plot_cost is         : 15.065597874512543 

 At row:55, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:55, column:133,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:133,the value of plot_cost is         : 14.949540199201312 

 At row:55, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:55, column:134,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:134,the value of plot_cost is         : 14.834290584292598 

 At row:55, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:55, column:135,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:135,the value of plot_cost is         : 14.719849029786399 

 At row:55, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:55, column:136,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:136,the value of plot_cost is         : 14.606215535682718 

 At row:55, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:55, column:137,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:137,the value of plot_cost is         : 14.493390101981548 

 At row:55, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:55, column:138,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:138,the value of plot_cost is         : 14.38137272868289 

 At row:55, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:55, column:139,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:139,the value of plot_cost is         : 14.270163415786755 

 At row:55, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:55, column:140,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:140,the value of plot_cost is         : 14.159762163293129 

 At row:55, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:55, column:141,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:141,the value of plot_cost is         : 14.050168971202021 

 At row:55, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:55, column:142,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:142,the value of plot_cost is         : 13.941383839513426 

 At row:55, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:55, column:143,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:143,the value of plot_cost is         : 13.83340676822735 

 At row:55, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:55, column:144,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:144,the value of plot_cost is         : 13.726237757343787 

 At row:55, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:55, column:145,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:145,the value of plot_cost is         : 13.619876806862736 

 At row:55, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:55, column:146,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:146,the value of plot_cost is         : 13.514323916784207 

 At row:55, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:55, column:147,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:147,the value of plot_cost is         : 13.409579087108186 

 At row:55, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:55, column:148,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:148,the value of plot_cost is         : 13.305642317834682 

 At row:55, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:55, column:149,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:149,the value of plot_cost is         : 13.202513608963693 

 At row:55, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:55, column:150,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:150,the value of plot_cost is         : 13.100192960495221 

 At row:55, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:55, column:151,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:151,the value of plot_cost is         : 12.99868037242926 

 At row:55, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:55, column:152,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:152,the value of plot_cost is         : 12.897975844765819 

 At row:55, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:55, column:153,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:153,the value of plot_cost is         : 12.798079377504893 

 At row:55, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:55, column:154,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:154,the value of plot_cost is         : 12.698990970646479 

 At row:55, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:55, column:155,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:155,the value of plot_cost is         : 12.600710624190583 

 At row:55, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:55, column:156,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:156,the value of plot_cost is         : 12.503238338137198 

 At row:55, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:55, column:157,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:157,the value of plot_cost is         : 12.406574112486332 

 At row:55, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:55, column:158,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:158,the value of plot_cost is         : 12.310717947237979 

 At row:55, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:55, column:159,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:159,the value of plot_cost is         : 12.215669842392142 

 At row:55, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:55, column:160,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:160,the value of plot_cost is         : 12.12142979794882 

 At row:55, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:55, column:161,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:161,the value of plot_cost is         : 12.027997813908012 

 At row:55, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:55, column:162,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:162,the value of plot_cost is         : 11.935373890269721 

 At row:55, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:55, column:163,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:163,the value of plot_cost is         : 11.843558027033943 

 At row:55, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:55, column:164,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:164,the value of plot_cost is         : 11.752550224200684 

 At row:55, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:55, column:165,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:165,the value of plot_cost is         : 11.662350481769936 

 At row:55, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:55, column:166,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:166,the value of plot_cost is         : 11.572958799741702 

 At row:55, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:55, column:167,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:167,the value of plot_cost is         : 11.484375178115988 

 At row:55, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:55, column:168,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:168,the value of plot_cost is         : 11.396599616892786 

 At row:55, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:55, column:169,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:169,the value of plot_cost is         : 11.3096321160721 

 At row:55, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:55, column:170,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:170,the value of plot_cost is         : 11.22347267565393 

 At row:55, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:55, column:171,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:171,the value of plot_cost is         : 11.138121295638271 

 At row:55, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:55, column:172,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:172,the value of plot_cost is         : 11.053577976025132 

 At row:55, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:55, column:173,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:173,the value of plot_cost is         : 10.969842716814505 

 At row:55, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:55, column:174,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:174,the value of plot_cost is         : 10.886915518006395 

 At row:55, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:55, column:175,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:175,the value of plot_cost is         : 10.8047963796008 

 At row:55, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:55, column:176,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:176,the value of plot_cost is         : 10.723485301597718 

 At row:55, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:55, column:177,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:177,the value of plot_cost is         : 10.642982283997155 

 At row:55, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:55, column:178,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:178,the value of plot_cost is         : 10.563287326799102 

 At row:55, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:55, column:179,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:179,the value of plot_cost is         : 10.484400430003566 

 At row:55, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:55, column:180,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:180,the value of plot_cost is         : 10.406321593610548 

 At row:55, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:55, column:181,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:181,the value of plot_cost is         : 10.329050817620042 

 At row:55, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:55, column:182,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:182,the value of plot_cost is         : 10.252588102032052 

 At row:55, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:55, column:183,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:183,the value of plot_cost is         : 10.176933446846578 

 At row:55, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:55, column:184,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:184,the value of plot_cost is         : 10.102086852063616 

 At row:55, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:55, column:185,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:185,the value of plot_cost is         : 10.028048317683172 

 At row:55, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:55, column:186,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:186,the value of plot_cost is         : 9.954817843705241 

 At row:55, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:55, column:187,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:187,the value of plot_cost is         : 9.882395430129828 

 At row:55, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:55, column:188,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:188,the value of plot_cost is         : 9.810781076956927 

 At row:55, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:55, column:189,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:189,the value of plot_cost is         : 9.739974784186543 

 At row:55, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:55, column:190,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:190,the value of plot_cost is         : 9.669976551818673 

 At row:55, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:55, column:191,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:191,the value of plot_cost is         : 9.600786379853318 

 At row:55, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:55, column:192,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:192,the value of plot_cost is         : 9.53240426829048 

 At row:55, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:55, column:193,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:193,the value of plot_cost is         : 9.464830217130155 

 At row:55, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:55, column:194,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:194,the value of plot_cost is         : 9.398064226372346 

 At row:55, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:55, column:195,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:195,the value of plot_cost is         : 9.332106296017052 

 At row:55, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:55, column:196,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:196,the value of plot_cost is         : 9.266956426064272 

 At row:55, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:55, column:197,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:197,the value of plot_cost is         : 9.202614616514007 

 At row:55, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:55, column:198,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:198,the value of plot_cost is         : 9.13908086736626 

 At row:55, column:199,the value of plot_t0 is           : 3.0
 At row:55, column:199,the value of plot_t1 is           : 0.1055276381909549
 At row:55, column:199,the value of plot_cost is         : 9.076355178621029 

 At row:56, column:0,the value of plot_t0 is           : -1.0
 At row:56, column:0,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:0,the value of plot_cost is         : 36.53914334775096 

 At row:56, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:56, column:1,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:1,the value of plot_cost is         : 36.319099842356074 

 At row:56, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:56, column:2,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:2,the value of plot_cost is         : 36.099864397363696 

 At row:56, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:56, column:3,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:3,the value of plot_cost is         : 35.88143701277384 

 At row:56, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:56, column:4,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:4,the value of plot_cost is         : 35.663817688586505 

 At row:56, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:56, column:5,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:5,the value of plot_cost is         : 35.44700642480168 

 At row:56, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:56, column:6,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:6,the value of plot_cost is         : 35.23100322141937 

 At row:56, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:56, column:7,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:7,the value of plot_cost is         : 35.01580807843958 

 At row:56, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:56, column:8,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:8,the value of plot_cost is         : 34.801420995862294 

 At row:56, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:56, column:9,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:9,the value of plot_cost is         : 34.58784197368753 

 At row:56, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:56, column:10,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:10,the value of plot_cost is         : 34.37507101191529 

 At row:56, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:56, column:11,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:11,the value of plot_cost is         : 34.163108110545544 

 At row:56, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:56, column:12,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:12,the value of plot_cost is         : 33.951953269578325 

 At row:56, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:56, column:13,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:13,the value of plot_cost is         : 33.74160648901363 

 At row:56, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:56, column:14,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:14,the value of plot_cost is         : 33.532067768851434 

 At row:56, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:56, column:15,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:15,the value of plot_cost is         : 33.32333710909176 

 At row:56, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:56, column:16,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:16,the value of plot_cost is         : 33.115414509734606 

 At row:56, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:56, column:17,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:17,the value of plot_cost is         : 32.90829997077996 

 At row:56, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:56, column:18,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:18,the value of plot_cost is         : 32.70199349222783 

 At row:56, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:56, column:19,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:19,the value of plot_cost is         : 32.49649507407821 

 At row:56, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:56, column:20,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:20,the value of plot_cost is         : 32.291804716331114 

 At row:56, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:56, column:21,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:21,the value of plot_cost is         : 32.08792241898653 

 At row:56, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:56, column:22,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:22,the value of plot_cost is         : 31.884848182044458 

 At row:56, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:56, column:23,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:23,the value of plot_cost is         : 31.682582005504905 

 At row:56, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:56, column:24,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:24,the value of plot_cost is         : 31.481123889367872 

 At row:56, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:56, column:25,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:25,the value of plot_cost is         : 31.280473833633344 

 At row:56, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:56, column:26,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:26,the value of plot_cost is         : 31.080631838301336 

 At row:56, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:56, column:27,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:27,the value of plot_cost is         : 30.881597903371844 

 At row:56, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:56, column:28,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:28,the value of plot_cost is         : 30.683372028844865 

 At row:56, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:56, column:29,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:29,the value of plot_cost is         : 30.485954214720408 

 At row:56, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:56, column:30,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:30,the value of plot_cost is         : 30.28934446099846 

 At row:56, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:56, column:31,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:31,the value of plot_cost is         : 30.09354276767903 

 At row:56, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:56, column:32,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:32,the value of plot_cost is         : 29.898549134762106 

 At row:56, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:56, column:33,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:33,the value of plot_cost is         : 29.7043635622477 

 At row:56, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:56, column:34,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:34,the value of plot_cost is         : 29.51098605013582 

 At row:56, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:56, column:35,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:35,the value of plot_cost is         : 29.318416598426445 

 At row:56, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:56, column:36,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:36,the value of plot_cost is         : 29.126655207119587 

 At row:56, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:56, column:37,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:37,the value of plot_cost is         : 28.935701876215244 

 At row:56, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:56, column:38,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:38,the value of plot_cost is         : 28.745556605713414 

 At row:56, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:56, column:39,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:39,the value of plot_cost is         : 28.556219395614107 

 At row:56, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:56, column:40,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:40,the value of plot_cost is         : 28.36769024591731 

 At row:56, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:56, column:41,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:41,the value of plot_cost is         : 28.17996915662303 

 At row:56, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:56, column:42,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:42,the value of plot_cost is         : 27.993056127731258 

 At row:56, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:56, column:43,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:43,the value of plot_cost is         : 27.806951159242004 

 At row:56, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:56, column:44,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:44,the value of plot_cost is         : 27.62165425115527 

 At row:56, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:56, column:45,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:45,the value of plot_cost is         : 27.437165403471056 

 At row:56, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:56, column:46,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:46,the value of plot_cost is         : 27.253484616189347 

 At row:56, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:56, column:47,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:47,the value of plot_cost is         : 27.070611889310147 

 At row:56, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:56, column:48,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:48,the value of plot_cost is         : 26.888547222833473 

 At row:56, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:56, column:49,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:49,the value of plot_cost is         : 26.707290616759316 

 At row:56, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:56, column:50,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:50,the value of plot_cost is         : 26.52684207108767 

 At row:56, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:56, column:51,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:51,the value of plot_cost is         : 26.34720158581854 

 At row:56, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:56, column:52,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:52,the value of plot_cost is         : 26.16836916095192 

 At row:56, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:56, column:53,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:53,the value of plot_cost is         : 25.99034479648782 

 At row:56, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:56, column:54,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:54,the value of plot_cost is         : 25.813128492426234 

 At row:56, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:56, column:55,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:55,the value of plot_cost is         : 25.636720248767165 

 At row:56, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:56, column:56,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:56,the value of plot_cost is         : 25.461120065510613 

 At row:56, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:56, column:57,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:57,the value of plot_cost is         : 25.286327942656566 

 At row:56, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:56, column:58,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:58,the value of plot_cost is         : 25.112343880205042 

 At row:56, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:56, column:59,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:59,the value of plot_cost is         : 24.93916787815603 

 At row:56, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:56, column:60,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:60,the value of plot_cost is         : 24.76679993650954 

 At row:56, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:56, column:61,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:61,the value of plot_cost is         : 24.59524005526556 

 At row:56, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:56, column:62,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:62,the value of plot_cost is         : 24.42448823442409 

 At row:56, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:56, column:63,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:63,the value of plot_cost is         : 24.254544473985142 

 At row:56, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:56, column:64,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:64,the value of plot_cost is         : 24.085408773948707 

 At row:56, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:56, column:65,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:65,the value of plot_cost is         : 23.917081134314788 

 At row:56, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:56, column:66,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:66,the value of plot_cost is         : 23.749561555083385 

 At row:56, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:56, column:67,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:67,the value of plot_cost is         : 23.58285003625449 

 At row:56, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:56, column:68,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:68,the value of plot_cost is         : 23.416946577828117 

 At row:56, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:56, column:69,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:69,the value of plot_cost is         : 23.25185117980426 

 At row:56, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:56, column:70,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:70,the value of plot_cost is         : 23.087563842182917 

 At row:56, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:56, column:71,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:71,the value of plot_cost is         : 22.924084564964083 

 At row:56, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:56, column:72,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:72,the value of plot_cost is         : 22.76141334814777 

 At row:56, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:56, column:73,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:73,the value of plot_cost is         : 22.59955019173397 

 At row:56, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:56, column:74,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:74,the value of plot_cost is         : 22.43849509572269 

 At row:56, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:56, column:75,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:75,the value of plot_cost is         : 22.278248060113924 

 At row:56, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:56, column:76,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:76,the value of plot_cost is         : 22.118809084907667 

 At row:56, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:56, column:77,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:77,the value of plot_cost is         : 21.960178170103926 

 At row:56, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:56, column:78,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:78,the value of plot_cost is         : 21.8023553157027 

 At row:56, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:56, column:79,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:79,the value of plot_cost is         : 21.645340521703996 

 At row:56, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:56, column:80,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:80,the value of plot_cost is         : 21.489133788107804 

 At row:56, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:56, column:81,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:81,the value of plot_cost is         : 21.333735114914123 

 At row:56, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:56, column:82,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:82,the value of plot_cost is         : 21.179144502122963 

 At row:56, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:56, column:83,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:83,the value of plot_cost is         : 21.02536194973431 

 At row:56, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:56, column:84,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:84,the value of plot_cost is         : 20.87238745774818 

 At row:56, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:56, column:85,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:85,the value of plot_cost is         : 20.720221026164563 

 At row:56, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:56, column:86,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:86,the value of plot_cost is         : 20.56886265498346 

 At row:56, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:56, column:87,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:87,the value of plot_cost is         : 20.418312344204868 

 At row:56, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:56, column:88,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:88,the value of plot_cost is         : 20.268570093828796 

 At row:56, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:56, column:89,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:89,the value of plot_cost is         : 20.11963590385524 

 At row:56, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:56, column:90,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:90,the value of plot_cost is         : 19.9715097742842 

 At row:56, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:56, column:91,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:91,the value of plot_cost is         : 19.82419170511567 

 At row:56, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:56, column:92,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:92,the value of plot_cost is         : 19.67768169634966 

 At row:56, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:56, column:93,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:93,the value of plot_cost is         : 19.531979747986156 

 At row:56, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:56, column:94,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:94,the value of plot_cost is         : 19.387085860025177 

 At row:56, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:56, column:95,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:95,the value of plot_cost is         : 19.243000032466714 

 At row:56, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:56, column:96,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:96,the value of plot_cost is         : 19.099722265310756 

 At row:56, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:56, column:97,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:97,the value of plot_cost is         : 18.95725255855732 

 At row:56, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:56, column:98,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:98,the value of plot_cost is         : 18.8155909122064 

 At row:56, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:56, column:99,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:99,the value of plot_cost is         : 18.674737326257993 

 At row:56, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:56, column:100,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:100,the value of plot_cost is         : 18.534691800712103 

 At row:56, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:56, column:101,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:101,the value of plot_cost is         : 18.395454335568726 

 At row:56, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:56, column:102,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:102,the value of plot_cost is         : 18.257024930827868 

 At row:56, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:56, column:103,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:103,the value of plot_cost is         : 18.119403586489515 

 At row:56, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:56, column:104,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:104,the value of plot_cost is         : 17.982590302553685 

 At row:56, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:56, column:105,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:105,the value of plot_cost is         : 17.846585079020375 

 At row:56, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:56, column:106,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:106,the value of plot_cost is         : 17.71138791588957 

 At row:56, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:56, column:107,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:107,the value of plot_cost is         : 17.576998813161286 

 At row:56, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:56, column:108,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:108,the value of plot_cost is         : 17.44341777083551 

 At row:56, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:56, column:109,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:109,the value of plot_cost is         : 17.310644788912256 

 At row:56, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:56, column:110,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:110,the value of plot_cost is         : 17.178679867391512 

 At row:56, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:56, column:111,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:111,the value of plot_cost is         : 17.047523006273288 

 At row:56, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:56, column:112,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:112,the value of plot_cost is         : 16.917174205557583 

 At row:56, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:56, column:113,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:113,the value of plot_cost is         : 16.78763346524438 

 At row:56, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:56, column:114,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:114,the value of plot_cost is         : 16.658900785333703 

 At row:56, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:56, column:115,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:115,the value of plot_cost is         : 16.530976165825535 

 At row:56, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:56, column:116,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:116,the value of plot_cost is         : 16.403859606719887 

 At row:56, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:56, column:117,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:117,the value of plot_cost is         : 16.277551108016752 

 At row:56, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:56, column:118,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:118,the value of plot_cost is         : 16.15205066971613 

 At row:56, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:56, column:119,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:119,the value of plot_cost is         : 16.027358291818025 

 At row:56, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:56, column:120,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:120,the value of plot_cost is         : 15.903473974322434 

 At row:56, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:56, column:121,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:121,the value of plot_cost is         : 15.780397717229363 

 At row:56, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:56, column:122,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:122,the value of plot_cost is         : 15.658129520538802 

 At row:56, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:56, column:123,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:123,the value of plot_cost is         : 15.536669384250757 

 At row:56, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:56, column:124,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:124,the value of plot_cost is         : 15.416017308365229 

 At row:56, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:56, column:125,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:125,the value of plot_cost is         : 15.296173292882209 

 At row:56, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:56, column:126,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:126,the value of plot_cost is         : 15.177137337801712 

 At row:56, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:56, column:127,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:127,the value of plot_cost is         : 15.058909443123731 

 At row:56, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:56, column:128,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:128,the value of plot_cost is         : 14.94148960884826 

 At row:56, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:56, column:129,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:129,the value of plot_cost is         : 14.824877834975306 

 At row:56, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:56, column:130,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:130,the value of plot_cost is         : 14.709074121504864 

 At row:56, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:56, column:131,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:131,the value of plot_cost is         : 14.594078468436942 

 At row:56, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:56, column:132,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:132,the value of plot_cost is         : 14.479890875771535 

 At row:56, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:56, column:133,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:133,the value of plot_cost is         : 14.36651134350864 

 At row:56, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:56, column:134,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:134,the value of plot_cost is         : 14.253939871648262 

 At row:56, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:56, column:135,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:135,the value of plot_cost is         : 14.142176460190395 

 At row:56, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:56, column:136,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:136,the value of plot_cost is         : 14.03122110913505 

 At row:56, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:56, column:137,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:137,the value of plot_cost is         : 13.921073818482217 

 At row:56, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:56, column:138,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:138,the value of plot_cost is         : 13.811734588231895 

 At row:56, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:56, column:139,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:139,the value of plot_cost is         : 13.703203418384097 

 At row:56, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:56, column:140,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:140,the value of plot_cost is         : 13.595480308938805 

 At row:56, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:56, column:141,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:141,the value of plot_cost is         : 13.488565259896035 

 At row:56, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:56, column:142,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:142,the value of plot_cost is         : 13.382458271255777 

 At row:56, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:56, column:143,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:143,the value of plot_cost is         : 13.277159343018031 

 At row:56, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:56, column:144,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:144,the value of plot_cost is         : 13.172668475182807 

 At row:56, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:56, column:145,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:145,the value of plot_cost is         : 13.06898566775009 

 At row:56, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:56, column:146,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:146,the value of plot_cost is         : 12.966110920719894 

 At row:56, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:56, column:147,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:147,the value of plot_cost is         : 12.864044234092212 

 At row:56, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:56, column:148,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:148,the value of plot_cost is         : 12.762785607867045 

 At row:56, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:56, column:149,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:149,the value of plot_cost is         : 12.662335042044393 

 At row:56, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:56, column:150,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:150,the value of plot_cost is         : 12.562692536624251 

 At row:56, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:56, column:151,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:151,the value of plot_cost is         : 12.463858091606632 

 At row:56, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:56, column:152,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:152,the value of plot_cost is         : 12.365831706991525 

 At row:56, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:56, column:153,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:153,the value of plot_cost is         : 12.268613382778932 

 At row:56, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:56, column:154,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:154,the value of plot_cost is         : 12.172203118968858 

 At row:56, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:56, column:155,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:155,the value of plot_cost is         : 12.076600915561292 

 At row:56, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:56, column:156,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:156,the value of plot_cost is         : 11.981806772556247 

 At row:56, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:56, column:157,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:157,the value of plot_cost is         : 11.887820689953717 

 At row:56, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:56, column:158,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:158,the value of plot_cost is         : 11.794642667753699 

 At row:56, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:56, column:159,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:159,the value of plot_cost is         : 11.702272705956197 

 At row:56, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:56, column:160,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:160,the value of plot_cost is         : 11.61071080456121 

 At row:56, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:56, column:161,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:161,the value of plot_cost is         : 11.51995696356874 

 At row:56, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:56, column:162,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:162,the value of plot_cost is         : 11.430011182978784 

 At row:56, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:56, column:163,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:163,the value of plot_cost is         : 11.340873462791343 

 At row:56, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:56, column:164,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:164,the value of plot_cost is         : 11.252543803006418 

 At row:56, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:56, column:165,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:165,the value of plot_cost is         : 11.165022203624005 

 At row:56, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:56, column:166,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:166,the value of plot_cost is         : 11.07830866464411 

 At row:56, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:56, column:167,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:167,the value of plot_cost is         : 10.99240318606673 

 At row:56, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:56, column:168,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:168,the value of plot_cost is         : 10.907305767891861 

 At row:56, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:56, column:169,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:169,the value of plot_cost is         : 10.823016410119513 

 At row:56, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:56, column:170,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:170,the value of plot_cost is         : 10.739535112749676 

 At row:56, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:56, column:171,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:171,the value of plot_cost is         : 10.656861875782356 

 At row:56, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:56, column:172,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:172,the value of plot_cost is         : 10.574996699217552 

 At row:56, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:56, column:173,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:173,the value of plot_cost is         : 10.49393958305526 

 At row:56, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:56, column:174,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:174,the value of plot_cost is         : 10.413690527295488 

 At row:56, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:56, column:175,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:175,the value of plot_cost is         : 10.334249531938225 

 At row:56, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:56, column:176,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:176,the value of plot_cost is         : 10.255616596983481 

 At row:56, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:56, column:177,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:177,the value of plot_cost is         : 10.177791722431254 

 At row:56, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:56, column:178,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:178,the value of plot_cost is         : 10.100774908281535 

 At row:56, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:56, column:179,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:179,the value of plot_cost is         : 10.024566154534336 

 At row:56, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:56, column:180,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:180,the value of plot_cost is         : 9.949165461189653 

 At row:56, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:56, column:181,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:181,the value of plot_cost is         : 9.874572828247482 

 At row:56, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:56, column:182,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:182,the value of plot_cost is         : 9.800788255707829 

 At row:56, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:56, column:183,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:183,the value of plot_cost is         : 9.727811743570689 

 At row:56, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:56, column:184,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:184,the value of plot_cost is         : 9.655643291836064 

 At row:56, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:56, column:185,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:185,the value of plot_cost is         : 9.584282900503954 

 At row:56, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:56, column:186,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:186,the value of plot_cost is         : 9.513730569574362 

 At row:56, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:56, column:187,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:187,the value of plot_cost is         : 9.443986299047282 

 At row:56, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:56, column:188,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:188,the value of plot_cost is         : 9.375050088922718 

 At row:56, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:56, column:189,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:189,the value of plot_cost is         : 9.306921939200668 

 At row:56, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:56, column:190,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:190,the value of plot_cost is         : 9.239601849881133 

 At row:56, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:56, column:191,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:191,the value of plot_cost is         : 9.173089820964117 

 At row:56, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:56, column:192,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:192,the value of plot_cost is         : 9.107385852449614 

 At row:56, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:56, column:193,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:193,the value of plot_cost is         : 9.042489944337623 

 At row:56, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:56, column:194,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:194,the value of plot_cost is         : 8.978402096628152 

 At row:56, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:56, column:195,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:195,the value of plot_cost is         : 8.915122309321191 

 At row:56, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:56, column:196,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:196,the value of plot_cost is         : 8.852650582416748 

 At row:56, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:56, column:197,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:197,the value of plot_cost is         : 8.790986915914818 

 At row:56, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:56, column:198,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:198,the value of plot_cost is         : 8.730131309815407 

 At row:56, column:199,the value of plot_t0 is           : 3.0
 At row:56, column:199,the value of plot_t1 is           : 0.12562814070351758
 At row:56, column:199,the value of plot_cost is         : 8.670083764118509 

 At row:57, column:0,the value of plot_t0 is           : -1.0
 At row:57, column:0,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:0,the value of plot_cost is         : 35.61250412146879 

 At row:57, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:57, column:1,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:1,the value of plot_cost is         : 35.39513875912224 

 At row:57, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:57, column:2,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:2,the value of plot_cost is         : 35.178581457178204 

 At row:57, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:57, column:3,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:3,the value of plot_cost is         : 34.96283221563668 

 At row:57, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:57, column:4,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:4,the value of plot_cost is         : 34.74789103449768 

 At row:57, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:57, column:5,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:5,the value of plot_cost is         : 34.533757913761185 

 At row:57, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:57, column:6,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:6,the value of plot_cost is         : 34.32043285342722 

 At row:57, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:57, column:7,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:7,the value of plot_cost is         : 34.107915853495754 

 At row:57, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:57, column:8,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:8,the value of plot_cost is         : 33.896206913966815 

 At row:57, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:57, column:9,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:9,the value of plot_cost is         : 33.68530603484039 

 At row:57, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:57, column:10,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:10,the value of plot_cost is         : 33.475213216116465 

 At row:57, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:57, column:11,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:11,the value of plot_cost is         : 33.26592845779507 

 At row:57, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:57, column:12,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:12,the value of plot_cost is         : 33.057451759876194 

 At row:57, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:57, column:13,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:13,the value of plot_cost is         : 32.84978312235982 

 At row:57, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:57, column:14,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:14,the value of plot_cost is         : 32.642922545245966 

 At row:57, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:57, column:15,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:15,the value of plot_cost is         : 32.43687002853463 

 At row:57, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:57, column:16,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:16,the value of plot_cost is         : 32.2316255722258 

 At row:57, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:57, column:17,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:17,the value of plot_cost is         : 32.027189176319496 

 At row:57, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:57, column:18,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:18,the value of plot_cost is         : 31.823560840815702 

 At row:57, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:57, column:19,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:19,the value of plot_cost is         : 31.620740565714424 

 At row:57, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:57, column:20,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:20,the value of plot_cost is         : 31.41872835101566 

 At row:57, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:57, column:21,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:21,the value of plot_cost is         : 31.21752419671941 

 At row:57, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:57, column:22,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:22,the value of plot_cost is         : 31.01712810282568 

 At row:57, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:57, column:23,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:23,the value of plot_cost is         : 30.81754006933446 

 At row:57, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:57, column:24,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:24,the value of plot_cost is         : 30.61876009624576 

 At row:57, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:57, column:25,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:25,the value of plot_cost is         : 30.42078818355957 

 At row:57, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:57, column:26,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:26,the value of plot_cost is         : 30.223624331275897 

 At row:57, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:57, column:27,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:27,the value of plot_cost is         : 30.027268539394743 

 At row:57, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:57, column:28,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:28,the value of plot_cost is         : 29.831720807916103 

 At row:57, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:57, column:29,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:29,the value of plot_cost is         : 29.63698113683997 

 At row:57, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:57, column:30,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:30,the value of plot_cost is         : 29.443049526166362 

 At row:57, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:57, column:31,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:31,the value of plot_cost is         : 29.249925975895263 

 At row:57, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:57, column:32,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:32,the value of plot_cost is         : 29.057610486026686 

 At row:57, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:57, column:33,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:33,the value of plot_cost is         : 28.866103056560615 

 At row:57, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:57, column:34,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:34,the value of plot_cost is         : 28.67540368749706 

 At row:57, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:57, column:35,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:35,the value of plot_cost is         : 28.485512378836024 

 At row:57, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:57, column:36,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:36,the value of plot_cost is         : 28.2964291305775 

 At row:57, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:57, column:37,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:37,the value of plot_cost is         : 28.1081539427215 

 At row:57, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:57, column:38,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:38,the value of plot_cost is         : 27.920686815268006 

 At row:57, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:57, column:39,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:39,the value of plot_cost is         : 27.73402774821703 

 At row:57, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:57, column:40,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:40,the value of plot_cost is         : 27.548176741568568 

 At row:57, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:57, column:41,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:41,the value of plot_cost is         : 27.36313379532263 

 At row:57, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:57, column:42,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:42,the value of plot_cost is         : 27.178898909479194 

 At row:57, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:57, column:43,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:43,the value of plot_cost is         : 26.995472084038273 

 At row:57, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:57, column:44,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:44,the value of plot_cost is         : 26.812853318999874 

 At row:57, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:57, column:45,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:45,the value of plot_cost is         : 26.63104261436399 

 At row:57, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:57, column:46,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:46,the value of plot_cost is         : 26.450039970130618 

 At row:57, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:57, column:47,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:47,the value of plot_cost is         : 26.269845386299767 

 At row:57, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:57, column:48,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:48,the value of plot_cost is         : 26.09045886287142 

 At row:57, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:57, column:49,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:49,the value of plot_cost is         : 25.911880399845597 

 At row:57, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:57, column:50,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:50,the value of plot_cost is         : 25.734109997222284 

 At row:57, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:57, column:51,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:51,the value of plot_cost is         : 25.55714765500149 

 At row:57, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:57, column:52,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:52,the value of plot_cost is         : 25.380993373183212 

 At row:57, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:57, column:53,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:53,the value of plot_cost is         : 25.205647151767444 

 At row:57, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:57, column:54,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:54,the value of plot_cost is         : 25.031108990754195 

 At row:57, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:57, column:55,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:55,the value of plot_cost is         : 24.85737889014346 

 At row:57, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:57, column:56,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:56,the value of plot_cost is         : 24.68445684993524 

 At row:57, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:57, column:57,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:57,the value of plot_cost is         : 24.512342870129537 

 At row:57, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:57, column:58,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:58,the value of plot_cost is         : 24.341036950726345 

 At row:57, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:57, column:59,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:59,the value of plot_cost is         : 24.170539091725672 

 At row:57, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:57, column:60,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:60,the value of plot_cost is         : 24.000849293127516 

 At row:57, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:57, column:61,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:61,the value of plot_cost is         : 23.831967554931868 

 At row:57, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:57, column:62,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:62,the value of plot_cost is         : 23.663893877138737 

 At row:57, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:57, column:63,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:63,the value of plot_cost is         : 23.496628259748125 

 At row:57, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:57, column:64,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:64,the value of plot_cost is         : 23.33017070276003 

 At row:57, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:57, column:65,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:65,the value of plot_cost is         : 23.16452120617444 

 At row:57, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:57, column:66,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:66,the value of plot_cost is         : 22.999679769991374 

 At row:57, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:57, column:67,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:67,the value of plot_cost is         : 22.83564639421082 

 At row:57, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:57, column:68,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:68,the value of plot_cost is         : 22.67242107883278 

 At row:57, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:57, column:69,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:69,the value of plot_cost is         : 22.510003823857257 

 At row:57, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:57, column:70,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:70,the value of plot_cost is         : 22.348394629284247 

 At row:57, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:57, column:71,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:71,the value of plot_cost is         : 22.187593495113756 

 At row:57, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:57, column:72,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:72,the value of plot_cost is         : 22.027600421345774 

 At row:57, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:57, column:73,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:73,the value of plot_cost is         : 21.86841540798031 

 At row:57, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:57, column:74,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:74,the value of plot_cost is         : 21.710038455017365 

 At row:57, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:57, column:75,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:75,the value of plot_cost is         : 21.55246956245693 

 At row:57, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:57, column:76,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:76,the value of plot_cost is         : 21.395708730299017 

 At row:57, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:57, column:77,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:77,the value of plot_cost is         : 21.239755958543615 

 At row:57, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:57, column:78,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:78,the value of plot_cost is         : 21.084611247190722 

 At row:57, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:57, column:79,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:79,the value of plot_cost is         : 20.93027459624035 

 At row:57, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:57, column:80,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:80,the value of plot_cost is         : 20.77674600569249 

 At row:57, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:57, column:81,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:81,the value of plot_cost is         : 20.624025475547153 

 At row:57, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:57, column:82,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:82,the value of plot_cost is         : 20.47211300580432 

 At row:57, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:57, column:83,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:83,the value of plot_cost is         : 20.321008596464008 

 At row:57, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:57, column:84,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:84,the value of plot_cost is         : 20.170712247526215 

 At row:57, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:57, column:85,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:85,the value of plot_cost is         : 20.02122395899093 

 At row:57, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:57, column:86,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:86,the value of plot_cost is         : 19.872543730858165 

 At row:57, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:57, column:87,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:87,the value of plot_cost is         : 19.724671563127913 

 At row:57, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:57, column:88,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:88,the value of plot_cost is         : 19.577607455800173 

 At row:57, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:57, column:89,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:89,the value of plot_cost is         : 19.431351408874953 

 At row:57, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:57, column:90,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:90,the value of plot_cost is         : 19.285903422352245 

 At row:57, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:57, column:91,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:91,the value of plot_cost is         : 19.141263496232057 

 At row:57, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:57, column:92,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:92,the value of plot_cost is         : 18.997431630514377 

 At row:57, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:57, column:93,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:93,the value of plot_cost is         : 18.854407825199214 

 At row:57, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:57, column:94,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:94,the value of plot_cost is         : 18.71219208028657 

 At row:57, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:57, column:95,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:95,the value of plot_cost is         : 18.57078439577644 

 At row:57, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:57, column:96,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:96,the value of plot_cost is         : 18.430184771668824 

 At row:57, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:57, column:97,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:97,the value of plot_cost is         : 18.29039320796372 

 At row:57, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:57, column:98,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:98,the value of plot_cost is         : 18.15140970466113 

 At row:57, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:57, column:99,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:99,the value of plot_cost is         : 18.013234261761063 

 At row:57, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:57, column:100,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:100,the value of plot_cost is         : 17.87586687926351 

 At row:57, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:57, column:101,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:101,the value of plot_cost is         : 17.73930755716847 

 At row:57, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:57, column:102,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:102,the value of plot_cost is         : 17.603556295475936 

 At row:57, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:57, column:103,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:103,the value of plot_cost is         : 17.468613094185926 

 At row:57, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:57, column:104,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:104,the value of plot_cost is         : 17.334477953298432 

 At row:57, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:57, column:105,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:105,the value of plot_cost is         : 17.201150872813454 

 At row:57, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:57, column:106,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:106,the value of plot_cost is         : 17.068631852730988 

 At row:57, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:57, column:107,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:107,the value of plot_cost is         : 16.936920893051038 

 At row:57, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:57, column:108,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:108,the value of plot_cost is         : 16.8060179937736 

 At row:57, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:57, column:109,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:109,the value of plot_cost is         : 16.67592315489868 

 At row:57, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:57, column:110,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:110,the value of plot_cost is         : 16.546636376426274 

 At row:57, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:57, column:111,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:111,the value of plot_cost is         : 16.41815765835639 

 At row:57, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:57, column:112,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:112,the value of plot_cost is         : 16.290487000689012 

 At row:57, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:57, column:113,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:113,the value of plot_cost is         : 16.16362440342415 

 At row:57, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:57, column:114,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:114,the value of plot_cost is         : 16.037569866561807 

 At row:57, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:57, column:115,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:115,the value of plot_cost is         : 15.912323390101976 

 At row:57, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:57, column:116,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:116,the value of plot_cost is         : 15.787884974044665 

 At row:57, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:57, column:117,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:117,the value of plot_cost is         : 15.664254618389865 

 At row:57, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:57, column:118,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:118,the value of plot_cost is         : 15.541432323137577 

 At row:57, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:57, column:119,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:119,the value of plot_cost is         : 15.41941808828781 

 At row:57, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:57, column:120,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:120,the value of plot_cost is         : 15.298211913840554 

 At row:57, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:57, column:121,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:121,the value of plot_cost is         : 15.177813799795818 

 At row:57, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:57, column:122,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:122,the value of plot_cost is         : 15.058223746153592 

 At row:57, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:57, column:123,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:123,the value of plot_cost is         : 14.939441752913885 

 At row:57, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:57, column:124,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:124,the value of plot_cost is         : 14.821467820076691 

 At row:57, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:57, column:125,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:125,the value of plot_cost is         : 14.70430194764201 

 At row:57, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:57, column:126,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:126,the value of plot_cost is         : 14.587944135609847 

 At row:57, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:57, column:127,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:127,the value of plot_cost is         : 14.472394383980198 

 At row:57, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:57, column:128,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:128,the value of plot_cost is         : 14.357652692753065 

 At row:57, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:57, column:129,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:129,the value of plot_cost is         : 14.243719061928447 

 At row:57, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:57, column:130,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:130,the value of plot_cost is         : 14.130593491506342 

 At row:57, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:57, column:131,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:131,the value of plot_cost is         : 14.018275981486758 

 At row:57, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:57, column:132,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:132,the value of plot_cost is         : 13.906766531869684 

 At row:57, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:57, column:133,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:133,the value of plot_cost is         : 13.796065142655124 

 At row:57, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:57, column:134,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:134,the value of plot_cost is         : 13.68617181384308 

 At row:57, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:57, column:135,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:135,the value of plot_cost is         : 13.577086545433552 

 At row:57, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:57, column:136,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:136,the value of plot_cost is         : 13.468809337426542 

 At row:57, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:57, column:137,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:137,the value of plot_cost is         : 13.361340189822045 

 At row:57, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:57, column:138,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:138,the value of plot_cost is         : 13.25467910262006 

 At row:57, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:57, column:139,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:139,the value of plot_cost is         : 13.14882607582059 

 At row:57, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:57, column:140,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:140,the value of plot_cost is         : 13.043781109423639 

 At row:57, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:57, column:141,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:141,the value of plot_cost is         : 12.939544203429204 

 At row:57, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:57, column:142,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:142,the value of plot_cost is         : 12.836115357837281 

 At row:57, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:57, column:143,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:143,the value of plot_cost is         : 12.733494572647873 

 At row:57, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:57, column:144,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:144,the value of plot_cost is         : 12.63168184786098 

 At row:57, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:57, column:145,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:145,the value of plot_cost is         : 12.530677183476604 

 At row:57, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:57, column:146,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:146,the value of plot_cost is         : 12.430480579494745 

 At row:57, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:57, column:147,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:147,the value of plot_cost is         : 12.331092035915397 

 At row:57, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:57, column:148,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:148,the value of plot_cost is         : 12.232511552738563 

 At row:57, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:57, column:149,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:149,the value of plot_cost is         : 12.134739129964245 

 At row:57, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:57, column:150,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:150,the value of plot_cost is         : 12.037774767592445 

 At row:57, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:57, column:151,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:151,the value of plot_cost is         : 11.941618465623158 

 At row:57, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:57, column:152,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:152,the value of plot_cost is         : 11.846270224056388 

 At row:57, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:57, column:153,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:153,the value of plot_cost is         : 11.751730042892131 

 At row:57, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:57, column:154,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:154,the value of plot_cost is         : 11.657997922130388 

 At row:57, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:57, column:155,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:155,the value of plot_cost is         : 11.565073861771163 

 At row:57, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:57, column:156,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:156,the value of plot_cost is         : 11.472957861814452 

 At row:57, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:57, column:157,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:157,the value of plot_cost is         : 11.381649922260257 

 At row:57, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:57, column:158,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:158,the value of plot_cost is         : 11.291150043108575 

 At row:57, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:57, column:159,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:159,the value of plot_cost is         : 11.201458224359408 

 At row:57, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:57, column:160,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:160,the value of plot_cost is         : 11.11257446601276 

 At row:57, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:57, column:161,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:161,the value of plot_cost is         : 11.024498768068623 

 At row:57, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:57, column:162,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:162,the value of plot_cost is         : 10.937231130527003 

 At row:57, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:57, column:163,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:163,the value of plot_cost is         : 10.850771553387899 

 At row:57, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:57, column:164,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:164,the value of plot_cost is         : 10.765120036651306 

 At row:57, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:57, column:165,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:165,the value of plot_cost is         : 10.680276580317232 

 At row:57, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:57, column:166,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:166,the value of plot_cost is         : 10.596241184385674 

 At row:57, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:57, column:167,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:167,the value of plot_cost is         : 10.513013848856628 

 At row:57, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:57, column:168,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:168,the value of plot_cost is         : 10.430594573730096 

 At row:57, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:57, column:169,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:169,the value of plot_cost is         : 10.348983359006082 

 At row:57, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:57, column:170,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:170,the value of plot_cost is         : 10.268180204684583 

 At row:57, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:57, column:171,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:171,the value of plot_cost is         : 10.188185110765597 

 At row:57, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:57, column:172,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:172,the value of plot_cost is         : 10.10899807724913 

 At row:57, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:57, column:173,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:173,the value of plot_cost is         : 10.030619104135175 

 At row:57, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:57, column:174,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:174,the value of plot_cost is         : 9.953048191423733 

 At row:57, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:57, column:175,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:175,the value of plot_cost is         : 9.87628533911481 

 At row:57, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:57, column:176,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:176,the value of plot_cost is         : 9.800330547208402 

 At row:57, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:57, column:177,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:177,the value of plot_cost is         : 9.72518381570451 

 At row:57, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:57, column:178,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:178,the value of plot_cost is         : 9.650845144603128 

 At row:57, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:57, column:179,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:179,the value of plot_cost is         : 9.577314533904262 

 At row:57, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:57, column:180,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:180,the value of plot_cost is         : 9.504591983607915 

 At row:57, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:57, column:181,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:181,the value of plot_cost is         : 9.432677493714081 

 At row:57, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:57, column:182,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:182,the value of plot_cost is         : 9.361571064222764 

 At row:57, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:57, column:183,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:183,the value of plot_cost is         : 9.291272695133957 

 At row:57, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:57, column:184,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:184,the value of plot_cost is         : 9.22178238644767 

 At row:57, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:57, column:185,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:185,the value of plot_cost is         : 9.153100138163897 

 At row:57, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:57, column:186,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:186,the value of plot_cost is         : 9.085225950282638 

 At row:57, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:57, column:187,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:187,the value of plot_cost is         : 9.018159822803897 

 At row:57, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:57, column:188,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:188,the value of plot_cost is         : 8.951901755727667 

 At row:57, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:57, column:189,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:189,the value of plot_cost is         : 8.886451749053952 

 At row:57, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:57, column:190,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:190,the value of plot_cost is         : 8.821809802782756 

 At row:57, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:57, column:191,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:191,the value of plot_cost is         : 8.757975916914072 

 At row:57, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:57, column:192,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:192,the value of plot_cost is         : 8.694950091447906 

 At row:57, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:57, column:193,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:193,the value of plot_cost is         : 8.63273232638425 

 At row:57, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:57, column:194,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:194,the value of plot_cost is         : 8.571322621723114 

 At row:57, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:57, column:195,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:195,the value of plot_cost is         : 8.510720977464493 

 At row:57, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:57, column:196,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:196,the value of plot_cost is         : 8.450927393608383 

 At row:57, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:57, column:197,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:197,the value of plot_cost is         : 8.391941870154788 

 At row:57, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:57, column:198,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:198,the value of plot_cost is         : 8.333764407103715 

 At row:57, column:199,the value of plot_t0 is           : 3.0
 At row:57, column:199,the value of plot_t1 is           : 0.14572864321608048
 At row:57, column:199,the value of plot_cost is         : 8.276395004455152 

 At row:58, column:0,the value of plot_t0 is           : -1.0
 At row:58, column:0,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:0,the value of plot_cost is         : 34.69844755002579 

 At row:58, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:58, column:1,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:1,the value of plot_cost is         : 34.483760330727584 

 At row:58, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:58, column:2,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:2,the value of plot_cost is         : 34.269881171831884 

 At row:58, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:58, column:3,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:3,the value of plot_cost is         : 34.056810073338696 

 At row:58, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:58, column:4,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:4,the value of plot_cost is         : 33.84454703524803 

 At row:58, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:58, column:5,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:5,the value of plot_cost is         : 33.63309205755988 

 At row:58, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:58, column:6,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:6,the value of plot_cost is         : 33.422445140274235 

 At row:58, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:58, column:7,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:7,the value of plot_cost is         : 33.21260628339111 

 At row:58, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:58, column:8,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:8,the value of plot_cost is         : 33.003575486910506 

 At row:58, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:58, column:9,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:9,the value of plot_cost is         : 32.795352750832414 

 At row:58, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:58, column:10,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:10,the value of plot_cost is         : 32.587938075156835 

 At row:58, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:58, column:11,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:11,the value of plot_cost is         : 32.38133145988377 

 At row:58, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:58, column:12,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:12,the value of plot_cost is         : 32.17553290501322 

 At row:58, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:58, column:13,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:13,the value of plot_cost is         : 31.970542410545193 

 At row:58, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:58, column:14,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:14,the value of plot_cost is         : 31.766359976479666 

 At row:58, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:58, column:15,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:15,the value of plot_cost is         : 31.56298560281667 

 At row:58, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:58, column:16,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:16,the value of plot_cost is         : 31.360419289556184 

 At row:58, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:58, column:17,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:17,the value of plot_cost is         : 31.15866103669821 

 At row:58, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:58, column:18,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:18,the value of plot_cost is         : 30.957710844242747 

 At row:58, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:58, column:19,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:19,the value of plot_cost is         : 30.75756871218981 

 At row:58, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:58, column:20,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:20,the value of plot_cost is         : 30.558234640539382 

 At row:58, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:58, column:21,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:21,the value of plot_cost is         : 30.359708629291468 

 At row:58, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:58, column:22,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:22,the value of plot_cost is         : 30.161990678446077 

 At row:58, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:58, column:23,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:23,the value of plot_cost is         : 29.965080788003192 

 At row:58, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:58, column:24,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:24,the value of plot_cost is         : 29.768978957962823 

 At row:58, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:58, column:25,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:25,the value of plot_cost is         : 29.57368518832497 

 At row:58, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:58, column:26,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:26,the value of plot_cost is         : 29.379199479089635 

 At row:58, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:58, column:27,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:27,the value of plot_cost is         : 29.185521830256803 

 At row:58, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:58, column:28,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:28,the value of plot_cost is         : 28.992652241826505 

 At row:58, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:58, column:29,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:29,the value of plot_cost is         : 28.800590713798712 

 At row:58, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:58, column:30,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:30,the value of plot_cost is         : 28.60933724617344 

 At row:58, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:58, column:31,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:31,the value of plot_cost is         : 28.418891838950675 

 At row:58, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:58, column:32,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:32,the value of plot_cost is         : 28.229254492130433 

 At row:58, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:58, column:33,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:33,the value of plot_cost is         : 28.040425205712697 

 At row:58, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:58, column:34,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:34,the value of plot_cost is         : 27.85240397969748 

 At row:58, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:58, column:35,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:35,the value of plot_cost is         : 27.665190814084784 

 At row:58, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:58, column:36,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:36,the value of plot_cost is         : 27.478785708874597 

 At row:58, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:58, column:37,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:37,the value of plot_cost is         : 27.29318866406692 

 At row:58, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:58, column:38,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:38,the value of plot_cost is         : 27.108399679661765 

 At row:58, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:58, column:39,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:39,the value of plot_cost is         : 26.924418755659122 

 At row:58, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:58, column:40,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:40,the value of plot_cost is         : 26.741245892059005 

 At row:58, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:58, column:41,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:41,the value of plot_cost is         : 26.55888108886139 

 At row:58, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:58, column:42,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:42,the value of plot_cost is         : 26.377324346066295 

 At row:58, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:58, column:43,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:43,the value of plot_cost is         : 26.19657566367372 

 At row:58, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:58, column:44,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:44,the value of plot_cost is         : 26.016635041683646 

 At row:58, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:58, column:45,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:45,the value of plot_cost is         : 25.837502480096106 

 At row:58, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:58, column:46,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:46,the value of plot_cost is         : 25.659177978911067 

 At row:58, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:58, column:47,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:47,the value of plot_cost is         : 25.48166153812855 

 At row:58, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:58, column:48,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:48,the value of plot_cost is         : 25.304953157748546 

 At row:58, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:58, column:49,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:49,the value of plot_cost is         : 25.12905283777105 

 At row:58, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:58, column:50,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:50,the value of plot_cost is         : 24.953960578196078 

 At row:58, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:58, column:51,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:51,the value of plot_cost is         : 24.77967637902362 

 At row:58, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:58, column:52,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:52,the value of plot_cost is         : 24.60620024025367 

 At row:58, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:58, column:53,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:53,the value of plot_cost is         : 24.433532161886244 

 At row:58, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:58, column:54,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:54,the value of plot_cost is         : 24.261672143921327 

 At row:58, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:58, column:55,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:55,the value of plot_cost is         : 24.090620186358933 

 At row:58, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:58, column:56,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:56,the value of plot_cost is         : 23.920376289199044 

 At row:58, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:58, column:57,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:57,the value of plot_cost is         : 23.75094045244167 

 At row:58, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:58, column:58,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:58,the value of plot_cost is         : 23.582312676086822 

 At row:58, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:58, column:59,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:59,the value of plot_cost is         : 23.414492960134485 

 At row:58, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:58, column:60,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:60,the value of plot_cost is         : 23.247481304584664 

 At row:58, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:58, column:61,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:61,the value of plot_cost is         : 23.08127770943735 

 At row:58, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:58, column:62,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:62,the value of plot_cost is         : 22.91588217469256 

 At row:58, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:58, column:63,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:63,the value of plot_cost is         : 22.751294700350282 

 At row:58, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:58, column:64,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:64,the value of plot_cost is         : 22.587515286410515 

 At row:58, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:58, column:65,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:65,the value of plot_cost is         : 22.42454393287327 

 At row:58, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:58, column:66,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:66,the value of plot_cost is         : 22.262380639738534 

 At row:58, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:58, column:67,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:67,the value of plot_cost is         : 22.10102540700632 

 At row:58, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:58, column:68,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:68,the value of plot_cost is         : 21.940478234676615 

 At row:58, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:58, column:69,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:69,the value of plot_cost is         : 21.780739122749424 

 At row:58, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:58, column:70,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:70,the value of plot_cost is         : 21.621808071224752 

 At row:58, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:58, column:71,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:71,the value of plot_cost is         : 21.463685080102596 

 At row:58, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:58, column:72,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:72,the value of plot_cost is         : 21.306370149382953 

 At row:58, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:58, column:73,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:73,the value of plot_cost is         : 21.149863279065823 

 At row:58, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:58, column:74,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:74,the value of plot_cost is         : 20.994164469151208 

 At row:58, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:58, column:75,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:75,the value of plot_cost is         : 20.83927371963912 

 At row:58, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:58, column:76,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:76,the value of plot_cost is         : 20.685191030529534 

 At row:58, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:58, column:77,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:77,the value of plot_cost is         : 20.531916401822464 

 At row:58, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:58, column:78,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:78,the value of plot_cost is         : 20.37944983351791 

 At row:58, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:58, column:79,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:79,the value of plot_cost is         : 20.227791325615875 

 At row:58, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:58, column:80,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:80,the value of plot_cost is         : 20.076940878116353 

 At row:58, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:58, column:81,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:81,the value of plot_cost is         : 19.926898491019347 

 At row:58, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:58, column:82,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:82,the value of plot_cost is         : 19.777664164324854 

 At row:58, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:58, column:83,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:83,the value of plot_cost is         : 19.62923789803288 

 At row:58, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:58, column:84,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:84,the value of plot_cost is         : 19.481619692143415 

 At row:58, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:58, column:85,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:85,the value of plot_cost is         : 19.334809546656473 

 At row:58, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:58, column:86,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:86,the value of plot_cost is         : 19.18880746157204 

 At row:58, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:58, column:87,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:87,the value of plot_cost is         : 19.043613436890123 

 At row:58, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:58, column:88,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:88,the value of plot_cost is         : 18.89922747261072 

 At row:58, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:58, column:89,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:89,the value of plot_cost is         : 18.755649568733833 

 At row:58, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:58, column:90,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:90,the value of plot_cost is         : 18.612879725259464 

 At row:58, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:58, column:91,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:91,the value of plot_cost is         : 18.47091794218761 

 At row:58, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:58, column:92,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:92,the value of plot_cost is         : 18.329764219518268 

 At row:58, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:58, column:93,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:93,the value of plot_cost is         : 18.18941855725144 

 At row:58, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:58, column:94,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:94,the value of plot_cost is         : 18.049880955387128 

 At row:58, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:58, column:95,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:95,the value of plot_cost is         : 17.911151413925335 

 At row:58, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:58, column:96,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:96,the value of plot_cost is         : 17.773229932866055 

 At row:58, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:58, column:97,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:97,the value of plot_cost is         : 17.636116512209288 

 At row:58, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:58, column:98,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:98,the value of plot_cost is         : 17.49981115195504 

 At row:58, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:58, column:99,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:99,the value of plot_cost is         : 17.3643138521033 

 At row:58, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:58, column:100,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:100,the value of plot_cost is         : 17.229624612654085 

 At row:58, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:58, column:101,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:101,the value of plot_cost is         : 17.095743433607378 

 At row:58, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:58, column:102,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:102,the value of plot_cost is         : 16.962670314963187 

 At row:58, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:58, column:103,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:103,the value of plot_cost is         : 16.83040525672151 

 At row:58, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:58, column:104,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:104,the value of plot_cost is         : 16.698948258882353 

 At row:58, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:58, column:105,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:105,the value of plot_cost is         : 16.568299321445707 

 At row:58, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:58, column:106,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:106,the value of plot_cost is         : 16.438458444411577 

 At row:58, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:58, column:107,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:107,the value of plot_cost is         : 16.309425627779962 

 At row:58, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:58, column:108,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:108,the value of plot_cost is         : 16.18120087155086 

 At row:58, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:58, column:109,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:109,the value of plot_cost is         : 16.053784175724278 

 At row:58, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:58, column:110,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:110,the value of plot_cost is         : 15.927175540300208 

 At row:58, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:58, column:111,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:111,the value of plot_cost is         : 15.801374965278656 

 At row:58, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:58, column:112,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:112,the value of plot_cost is         : 15.676382450659617 

 At row:58, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:58, column:113,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:113,the value of plot_cost is         : 15.552197996443091 

 At row:58, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:58, column:114,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:114,the value of plot_cost is         : 15.42882160262908 

 At row:58, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:58, column:115,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:115,the value of plot_cost is         : 15.306253269217589 

 At row:58, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:58, column:116,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:116,the value of plot_cost is         : 15.184492996208611 

 At row:58, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:58, column:117,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:117,the value of plot_cost is         : 15.063540783602145 

 At row:58, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:58, column:118,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:118,the value of plot_cost is         : 14.943396631398196 

 At row:58, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:58, column:119,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:119,the value of plot_cost is         : 14.824060539596763 

 At row:58, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:58, column:120,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:120,the value of plot_cost is         : 14.705532508197845 

 At row:58, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:58, column:121,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:121,the value of plot_cost is         : 14.587812537201444 

 At row:58, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:58, column:122,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:122,the value of plot_cost is         : 14.470900626607555 

 At row:58, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:58, column:123,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:123,the value of plot_cost is         : 14.35479677641618 

 At row:58, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:58, column:124,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:124,the value of plot_cost is         : 14.239500986627322 

 At row:58, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:58, column:125,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:125,the value of plot_cost is         : 14.125013257240976 

 At row:58, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:58, column:126,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:126,the value of plot_cost is         : 14.011333588257152 

 At row:58, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:58, column:127,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:127,the value of plot_cost is         : 13.898461979675838 

 At row:58, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:58, column:128,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:128,the value of plot_cost is         : 13.786398431497041 

 At row:58, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:58, column:129,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:129,the value of plot_cost is         : 13.675142943720758 

 At row:58, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:58, column:130,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:130,the value of plot_cost is         : 13.564695516346989 

 At row:58, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:58, column:131,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:131,the value of plot_cost is         : 13.45505614937574 

 At row:58, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:58, column:132,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:132,the value of plot_cost is         : 13.346224842806999 

 At row:58, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:58, column:133,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:133,the value of plot_cost is         : 13.238201596640778 

 At row:58, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:58, column:134,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:134,the value of plot_cost is         : 13.130986410877068 

 At row:58, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:58, column:135,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:135,the value of plot_cost is         : 13.024579285515877 

 At row:58, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:58, column:136,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:136,the value of plot_cost is         : 12.918980220557204 

 At row:58, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:58, column:137,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:137,the value of plot_cost is         : 12.814189216001042 

 At row:58, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:58, column:138,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:138,the value of plot_cost is         : 12.710206271847392 

 At row:58, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:58, column:139,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:139,the value of plot_cost is         : 12.60703138809626 

 At row:58, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:58, column:140,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:140,the value of plot_cost is         : 12.504664564747644 

 At row:58, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:58, column:141,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:141,the value of plot_cost is         : 12.403105801801544 

 At row:58, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:58, column:142,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:142,the value of plot_cost is         : 12.302355099257957 

 At row:58, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:58, column:143,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:143,the value of plot_cost is         : 12.202412457116884 

 At row:58, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:58, column:144,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:144,the value of plot_cost is         : 12.103277875378327 

 At row:58, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:58, column:145,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:145,the value of plot_cost is         : 12.004951354042285 

 At row:58, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:58, column:146,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:146,the value of plot_cost is         : 11.907432893108762 

 At row:58, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:58, column:147,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:147,the value of plot_cost is         : 11.81072249257775 

 At row:58, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:58, column:148,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:148,the value of plot_cost is         : 11.714820152449253 

 At row:58, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:58, column:149,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:149,the value of plot_cost is         : 11.619725872723272 

 At row:58, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:58, column:150,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:150,the value of plot_cost is         : 11.525439653399806 

 At row:58, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:58, column:151,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:151,the value of plot_cost is         : 11.431961494478855 

 At row:58, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:58, column:152,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:152,the value of plot_cost is         : 11.339291395960421 

 At row:58, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:58, column:153,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:153,the value of plot_cost is         : 11.2474293578445 

 At row:58, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:58, column:154,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:154,the value of plot_cost is         : 11.156375380131095 

 At row:58, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:58, column:155,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:155,the value of plot_cost is         : 11.066129462820204 

 At row:58, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:58, column:156,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:156,the value of plot_cost is         : 10.976691605911828 

 At row:58, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:58, column:157,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:157,the value of plot_cost is         : 10.88806180940597 

 At row:58, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:58, column:158,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:158,the value of plot_cost is         : 10.800240073302623 

 At row:58, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:58, column:159,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:159,the value of plot_cost is         : 10.713226397601792 

 At row:58, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:58, column:160,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:160,the value of plot_cost is         : 10.627020782303477 

 At row:58, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:58, column:161,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:161,the value of plot_cost is         : 10.541623227407676 

 At row:58, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:58, column:162,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:162,the value of plot_cost is         : 10.457033732914395 

 At row:58, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:58, column:163,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:163,the value of plot_cost is         : 10.373252298823623 

 At row:58, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:58, column:164,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:164,the value of plot_cost is         : 10.290278925135368 

 At row:58, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:58, column:165,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:165,the value of plot_cost is         : 10.20811361184963 

 At row:58, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:58, column:166,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:166,the value of plot_cost is         : 10.126756358966405 

 At row:58, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:58, column:167,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:167,the value of plot_cost is         : 10.046207166485695 

 At row:58, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:58, column:168,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:168,the value of plot_cost is         : 9.966466034407501 

 At row:58, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:58, column:169,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:169,the value of plot_cost is         : 9.88753296273182 

 At row:58, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:58, column:170,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:170,the value of plot_cost is         : 9.809407951458658 

 At row:58, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:58, column:171,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:171,the value of plot_cost is         : 9.732091000588008 

 At row:58, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:58, column:172,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:172,the value of plot_cost is         : 9.655582110119875 

 At row:58, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:58, column:173,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:173,the value of plot_cost is         : 9.579881280054256 

 At row:58, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:58, column:174,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:174,the value of plot_cost is         : 9.504988510391152 

 At row:58, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:58, column:175,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:175,the value of plot_cost is         : 9.430903801130563 

 At row:58, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:58, column:176,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:176,the value of plot_cost is         : 9.35762715227249 

 At row:58, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:58, column:177,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:177,the value of plot_cost is         : 9.285158563816934 

 At row:58, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:58, column:178,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:178,the value of plot_cost is         : 9.21349803576389 

 At row:58, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:58, column:179,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:179,the value of plot_cost is         : 9.142645568113359 

 At row:58, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:58, column:180,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:180,the value of plot_cost is         : 9.072601160865348 

 At row:58, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:58, column:181,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:181,the value of plot_cost is         : 9.003364814019848 

 At row:58, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:58, column:182,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:182,the value of plot_cost is         : 8.934936527576866 

 At row:58, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:58, column:183,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:183,the value of plot_cost is         : 8.867316301536398 

 At row:58, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:58, column:184,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:184,the value of plot_cost is         : 8.800504135898445 

 At row:58, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:58, column:185,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:185,the value of plot_cost is         : 8.734500030663007 

 At row:58, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:58, column:186,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:186,the value of plot_cost is         : 8.669303985830084 

 At row:58, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:58, column:187,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:187,the value of plot_cost is         : 8.604916001399676 

 At row:58, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:58, column:188,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:188,the value of plot_cost is         : 8.541336077371783 

 At row:58, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:58, column:189,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:189,the value of plot_cost is         : 8.478564213746408 

 At row:58, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:58, column:190,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:190,the value of plot_cost is         : 8.416600410523545 

 At row:58, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:58, column:191,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:191,the value of plot_cost is         : 8.355444667703196 

 At row:58, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:58, column:192,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:192,the value of plot_cost is         : 8.295096985285365 

 At row:58, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:58, column:193,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:193,the value of plot_cost is         : 8.235557363270049 

 At row:58, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:58, column:194,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:194,the value of plot_cost is         : 8.176825801657246 

 At row:58, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:58, column:195,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:195,the value of plot_cost is         : 8.11890230044696 

 At row:58, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:58, column:196,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:196,the value of plot_cost is         : 8.061786859639186 

 At row:58, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:58, column:197,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:197,the value of plot_cost is         : 8.00547947923393 

 At row:58, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:58, column:198,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:198,the value of plot_cost is         : 7.949980159231188 

 At row:58, column:199,the value of plot_t0 is           : 3.0
 At row:58, column:199,the value of plot_t1 is           : 0.16582914572864316
 At row:58, column:199,the value of plot_cost is         : 7.8952888996309625 

 At row:59, column:0,the value of plot_t0 is           : -1.0
 At row:59, column:0,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:0,the value of plot_cost is         : 33.79697363342195 

 At row:59, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:59, column:1,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:1,the value of plot_cost is         : 33.58496455717207 

 At row:59, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:59, column:2,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:2,the value of plot_cost is         : 33.373763541324706 

 At row:59, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:59, column:3,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:3,the value of plot_cost is         : 33.16337058587987 

 At row:59, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:59, column:4,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:4,the value of plot_cost is         : 32.95378569083753 

 At row:59, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:59, column:5,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:5,the value of plot_cost is         : 32.74500885619771 

 At row:59, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:59, column:6,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:6,the value of plot_cost is         : 32.537040081960406 

 At row:59, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:59, column:7,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:7,the value of plot_cost is         : 32.329879368125624 

 At row:59, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:59, column:8,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:8,the value of plot_cost is         : 32.12352671469335 

 At row:59, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:59, column:9,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:9,the value of plot_cost is         : 31.91798212166359 

 At row:59, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:59, column:10,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:10,the value of plot_cost is         : 31.713245589036347 

 At row:59, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:59, column:11,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:11,the value of plot_cost is         : 31.509317116811623 

 At row:59, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:59, column:12,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:12,the value of plot_cost is         : 31.30619670498941 

 At row:59, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:59, column:13,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:13,the value of plot_cost is         : 31.10388435356971 

 At row:59, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:59, column:14,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:14,the value of plot_cost is         : 30.902380062552528 

 At row:59, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:59, column:15,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:15,the value of plot_cost is         : 30.701683831937864 

 At row:59, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:59, column:16,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:16,the value of plot_cost is         : 30.501795661725712 

 At row:59, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:59, column:17,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:17,the value of plot_cost is         : 30.302715551916073 

 At row:59, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:59, column:18,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:18,the value of plot_cost is         : 30.104443502508946 

 At row:59, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:59, column:19,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:19,the value of plot_cost is         : 29.90697951350434 

 At row:59, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:59, column:20,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:20,the value of plot_cost is         : 29.71032358490226 

 At row:59, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:59, column:21,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:21,the value of plot_cost is         : 29.514475716702677 

 At row:59, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:59, column:22,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:22,the value of plot_cost is         : 29.319435908905618 

 At row:59, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:59, column:23,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:23,the value of plot_cost is         : 29.125204161511068 

 At row:59, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:59, column:24,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:24,the value of plot_cost is         : 28.931780474519037 

 At row:59, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:59, column:25,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:25,the value of plot_cost is         : 28.739164847929523 

 At row:59, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:59, column:26,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:26,the value of plot_cost is         : 28.54735728174252 

 At row:59, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:59, column:27,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:27,the value of plot_cost is         : 28.35635777595804 

 At row:59, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:59, column:28,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:28,the value of plot_cost is         : 28.166166330576065 

 At row:59, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:59, column:29,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:29,the value of plot_cost is         : 27.976782945596607 

 At row:59, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:59, column:30,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:30,the value of plot_cost is         : 27.78820762101967 

 At row:59, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:59, column:31,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:31,the value of plot_cost is         : 27.600440356845247 

 At row:59, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:59, column:32,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:32,the value of plot_cost is         : 27.41348115307333 

 At row:59, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:59, column:33,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:33,the value of plot_cost is         : 27.227330009703937 

 At row:59, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:59, column:34,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:34,the value of plot_cost is         : 27.041986926737057 

 At row:59, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:59, column:35,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:35,the value of plot_cost is         : 26.857451904172688 

 At row:59, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:59, column:36,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:36,the value of plot_cost is         : 26.673724942010843 

 At row:59, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:59, column:37,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:37,the value of plot_cost is         : 26.490806040251506 

 At row:59, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:59, column:38,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:38,the value of plot_cost is         : 26.308695198894682 

 At row:59, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:59, column:39,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:39,the value of plot_cost is         : 26.127392417940378 

 At row:59, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:59, column:40,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:40,the value of plot_cost is         : 25.94689769738859 

 At row:59, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:59, column:41,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:41,the value of plot_cost is         : 25.767211037239313 

 At row:59, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:59, column:42,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:42,the value of plot_cost is         : 25.588332437492557 

 At row:59, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:59, column:43,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:43,the value of plot_cost is         : 25.410261898148313 

 At row:59, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:59, column:44,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:44,the value of plot_cost is         : 25.232999419206582 

 At row:59, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:59, column:45,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:45,the value of plot_cost is         : 25.05654500066737 

 At row:59, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:59, column:46,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:46,the value of plot_cost is         : 24.880898642530667 

 At row:59, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:59, column:47,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:47,the value of plot_cost is         : 24.706060344796484 

 At row:59, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:59, column:48,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:48,the value of plot_cost is         : 24.532030107464813 

 At row:59, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:59, column:49,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:49,the value of plot_cost is         : 24.35880793053566 

 At row:59, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:59, column:50,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:50,the value of plot_cost is         : 24.186393814009026 

 At row:59, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:59, column:51,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:51,the value of plot_cost is         : 24.014787757884896 

 At row:59, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:59, column:52,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:52,the value of plot_cost is         : 23.84398976216329 

 At row:59, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:59, column:53,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:53,the value of plot_cost is         : 23.6739998268442 

 At row:59, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:59, column:54,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:54,the value of plot_cost is         : 23.504817951927617 

 At row:59, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:59, column:55,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:55,the value of plot_cost is         : 23.33644413741355 

 At row:59, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:59, column:56,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:56,the value of plot_cost is         : 23.168878383302008 

 At row:59, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:59, column:57,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:57,the value of plot_cost is         : 23.002120689592974 

 At row:59, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:59, column:58,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:58,the value of plot_cost is         : 22.836171056286453 

 At row:59, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:59, column:59,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:59,the value of plot_cost is         : 22.67102948338245 

 At row:59, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:59, column:60,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:60,the value of plot_cost is         : 22.50669597088096 

 At row:59, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:59, column:61,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:61,the value of plot_cost is         : 22.343170518781992 

 At row:59, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:59, column:62,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:62,the value of plot_cost is         : 22.18045312708553 

 At row:59, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:59, column:63,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:63,the value of plot_cost is         : 22.01854379579159 

 At row:59, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:59, column:64,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:64,the value of plot_cost is         : 21.85744252490016 

 At row:59, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:59, column:65,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:65,the value of plot_cost is         : 21.697149314411245 

 At row:59, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:59, column:66,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:66,the value of plot_cost is         : 21.537664164324852 

 At row:59, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:59, column:67,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:67,the value of plot_cost is         : 21.378987074640964 

 At row:59, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:59, column:68,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:68,the value of plot_cost is         : 21.2211180453596 

 At row:59, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:59, column:69,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:69,the value of plot_cost is         : 21.064057076480747 

 At row:59, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:59, column:70,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:70,the value of plot_cost is         : 20.907804168004414 

 At row:59, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:59, column:71,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:71,the value of plot_cost is         : 20.75235931993059 

 At row:59, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:59, column:72,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:72,the value of plot_cost is         : 20.59772253225928 

 At row:59, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:59, column:73,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:73,the value of plot_cost is         : 20.44389380499049 

 At row:59, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:59, column:74,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:74,the value of plot_cost is         : 20.290873138124212 

 At row:59, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:59, column:75,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:75,the value of plot_cost is         : 20.13866053166045 

 At row:59, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:59, column:76,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:76,the value of plot_cost is         : 19.98725598559921 

 At row:59, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:59, column:77,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:77,the value of plot_cost is         : 19.83665949994047 

 At row:59, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:59, column:78,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:78,the value of plot_cost is         : 19.68687107468426 

 At row:59, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:59, column:79,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:79,the value of plot_cost is         : 19.537890709830556 

 At row:59, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:59, column:80,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:80,the value of plot_cost is         : 19.38971840537937 

 At row:59, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:59, column:81,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:81,the value of plot_cost is         : 19.2423541613307 

 At row:59, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:59, column:82,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:82,the value of plot_cost is         : 19.09579797768454 

 At row:59, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:59, column:83,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:83,the value of plot_cost is         : 18.9500498544409 

 At row:59, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:59, column:84,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:84,the value of plot_cost is         : 18.805109791599776 

 At row:59, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:59, column:85,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:85,the value of plot_cost is         : 18.660977789161166 

 At row:59, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:59, column:86,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:86,the value of plot_cost is         : 18.51765384712507 

 At row:59, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:59, column:87,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:87,the value of plot_cost is         : 18.37513796549149 

 At row:59, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:59, column:88,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:88,the value of plot_cost is         : 18.233430144260424 

 At row:59, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:59, column:89,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:89,the value of plot_cost is         : 18.09253038343187 

 At row:59, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:59, column:90,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:90,the value of plot_cost is         : 17.952438683005834 

 At row:59, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:59, column:91,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:91,the value of plot_cost is         : 17.81315504298232 

 At row:59, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:59, column:92,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:92,the value of plot_cost is         : 17.674679463361308 

 At row:59, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:59, column:93,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:93,the value of plot_cost is         : 17.537011944142822 

 At row:59, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:59, column:94,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:94,the value of plot_cost is         : 17.400152485326846 

 At row:59, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:59, column:95,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:95,the value of plot_cost is         : 17.264101086913385 

 At row:59, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:59, column:96,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:96,the value of plot_cost is         : 17.128857748902444 

 At row:59, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:59, column:97,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:97,the value of plot_cost is         : 16.994422471294012 

 At row:59, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:59, column:98,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:98,the value of plot_cost is         : 16.8607952540881 

 At row:59, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:59, column:99,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:99,the value of plot_cost is         : 16.7279760972847 

 At row:59, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:59, column:100,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:100,the value of plot_cost is         : 16.595965000883815 

 At row:59, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:59, column:101,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:101,the value of plot_cost is         : 16.464761964885444 

 At row:59, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:59, column:102,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:102,the value of plot_cost is         : 16.334366989289588 

 At row:59, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:59, column:103,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:103,the value of plot_cost is         : 16.204780074096252 

 At row:59, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:59, column:104,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:104,the value of plot_cost is         : 16.076001219305425 

 At row:59, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:59, column:105,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:105,the value of plot_cost is         : 15.948030424917118 

 At row:59, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:59, column:106,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:106,the value of plot_cost is         : 15.820867690931326 

 At row:59, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:59, column:107,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:107,the value of plot_cost is         : 15.69451301734804 

 At row:59, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:59, column:108,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:108,the value of plot_cost is         : 15.56896640416728 

 At row:59, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:59, column:109,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:109,the value of plot_cost is         : 15.444227851389032 

 At row:59, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:59, column:110,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:110,the value of plot_cost is         : 15.3202973590133 

 At row:59, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:59, column:111,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:111,the value of plot_cost is         : 15.197174927040077 

 At row:59, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:59, column:112,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:112,the value of plot_cost is         : 15.074860555469375 

 At row:59, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:59, column:113,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:113,the value of plot_cost is         : 14.953354244301188 

 At row:59, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:59, column:114,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:114,the value of plot_cost is         : 14.832655993535514 

 At row:59, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:59, column:115,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:115,the value of plot_cost is         : 14.712765803172356 

 At row:59, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:59, column:116,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:116,the value of plot_cost is         : 14.593683673211716 

 At row:59, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:59, column:117,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:117,the value of plot_cost is         : 14.475409603653585 

 At row:59, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:59, column:118,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:118,the value of plot_cost is         : 14.357943594497973 

 At row:59, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:59, column:119,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:119,the value of plot_cost is         : 14.241285645744874 

 At row:59, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:59, column:120,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:120,the value of plot_cost is         : 14.125435757394289 

 At row:59, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:59, column:121,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:121,the value of plot_cost is         : 14.010393929446225 

 At row:59, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:59, column:122,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:122,the value of plot_cost is         : 13.896160161900669 

 At row:59, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:59, column:123,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:123,the value of plot_cost is         : 13.782734454757634 

 At row:59, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:59, column:124,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:124,the value of plot_cost is         : 13.67011680801711 

 At row:59, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:59, column:125,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:125,the value of plot_cost is         : 13.558307221679103 

 At row:59, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:59, column:126,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:126,the value of plot_cost is         : 13.447305695743612 

 At row:59, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:59, column:127,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:127,the value of plot_cost is         : 13.337112230210632 

 At row:59, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:59, column:128,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:128,the value of plot_cost is         : 13.227726825080172 

 At row:59, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:59, column:129,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:129,the value of plot_cost is         : 13.119149480352226 

 At row:59, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:59, column:130,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:130,the value of plot_cost is         : 13.011380196026794 

 At row:59, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:59, column:131,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:131,the value of plot_cost is         : 12.904418972103878 

 At row:59, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:59, column:132,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:132,the value of plot_cost is         : 12.798265808583473 

 At row:59, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:59, column:133,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:133,the value of plot_cost is         : 12.692920705465589 

 At row:59, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:59, column:134,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:134,the value of plot_cost is         : 12.588383662750218 

 At row:59, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:59, column:135,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:135,the value of plot_cost is         : 12.48465468043736 

 At row:59, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:59, column:136,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:136,the value of plot_cost is         : 12.381733758527021 

 At row:59, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:59, column:137,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:137,the value of plot_cost is         : 12.279620897019191 

 At row:59, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:59, column:138,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:138,the value of plot_cost is         : 12.17831609591388 

 At row:59, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:59, column:139,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:139,the value of plot_cost is         : 12.077819355211085 

 At row:59, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:59, column:140,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:140,the value of plot_cost is         : 11.978130674910805 

 At row:59, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:59, column:141,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:141,the value of plot_cost is         : 11.87925005501304 

 At row:59, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:59, column:142,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:142,the value of plot_cost is         : 11.781177495517786 

 At row:59, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:59, column:143,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:143,the value of plot_cost is         : 11.683912996425052 

 At row:59, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:59, column:144,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:144,the value of plot_cost is         : 11.58745655773483 

 At row:59, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:59, column:145,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:145,the value of plot_cost is         : 11.491808179447125 

 At row:59, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:59, column:146,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:146,the value of plot_cost is         : 11.396967861561937 

 At row:59, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:59, column:147,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:147,the value of plot_cost is         : 11.30293560407926 

 At row:59, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:59, column:148,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:148,the value of plot_cost is         : 11.2097114069991 

 At row:59, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:59, column:149,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:149,the value of plot_cost is         : 11.117295270321453 

 At row:59, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:59, column:150,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:150,the value of plot_cost is         : 11.025687194046325 

 At row:59, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:59, column:151,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:151,the value of plot_cost is         : 10.934887178173708 

 At row:59, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:59, column:152,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:152,the value of plot_cost is         : 10.844895222703608 

 At row:59, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:59, column:153,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:153,the value of plot_cost is         : 10.755711327636025 

 At row:59, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:59, column:154,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:154,the value of plot_cost is         : 10.667335492970954 

 At row:59, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:59, column:155,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:155,the value of plot_cost is         : 10.579767718708402 

 At row:59, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:59, column:156,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:156,the value of plot_cost is         : 10.493008004848358 

 At row:59, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:59, column:157,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:157,the value of plot_cost is         : 10.407056351390835 

 At row:59, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:59, column:158,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:158,the value of plot_cost is         : 10.321912758335827 

 At row:59, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:59, column:159,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:159,the value of plot_cost is         : 10.237577225683332 

 At row:59, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:59, column:160,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:160,the value of plot_cost is         : 10.154049753433354 

 At row:59, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:59, column:161,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:161,the value of plot_cost is         : 10.071330341585885 

 At row:59, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:59, column:162,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:162,the value of plot_cost is         : 9.98941899014094 

 At row:59, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:59, column:163,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:163,the value of plot_cost is         : 9.908315699098507 

 At row:59, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:59, column:164,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:164,the value of plot_cost is         : 9.828020468458588 

 At row:59, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:59, column:165,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:165,the value of plot_cost is         : 9.748533298221181 

 At row:59, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:59, column:166,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:166,the value of plot_cost is         : 9.66985418838629 

 At row:59, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:59, column:167,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:167,the value of plot_cost is         : 9.591983138953921 

 At row:59, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:59, column:168,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:168,the value of plot_cost is         : 9.514920149924064 

 At row:59, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:59, column:169,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:169,the value of plot_cost is         : 9.438665221296718 

 At row:59, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:59, column:170,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:170,the value of plot_cost is         : 9.36321835307189 

 At row:59, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:59, column:171,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:171,the value of plot_cost is         : 9.288579545249576 

 At row:59, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:59, column:172,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:172,the value of plot_cost is         : 9.214748797829778 

 At row:59, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:59, column:173,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:173,the value of plot_cost is         : 9.141726110812497 

 At row:59, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:59, column:174,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:174,the value of plot_cost is         : 9.069511484197728 

 At row:59, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:59, column:175,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:175,the value of plot_cost is         : 8.998104917985474 

 At row:59, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:59, column:176,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:176,the value of plot_cost is         : 8.927506412175735 

 At row:59, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:59, column:177,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:177,the value of plot_cost is         : 8.857715966768515 

 At row:59, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:59, column:178,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:178,the value of plot_cost is         : 8.788733581763807 

 At row:59, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:59, column:179,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:179,the value of plot_cost is         : 8.720559257161614 

 At row:59, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:59, column:180,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:180,the value of plot_cost is         : 8.653192992961937 

 At row:59, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:59, column:181,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:181,the value of plot_cost is         : 8.586634789164775 

 At row:59, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:59, column:182,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:182,the value of plot_cost is         : 8.520884645770126 

 At row:59, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:59, column:183,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:183,the value of plot_cost is         : 8.455942562777995 

 At row:59, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:59, column:184,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:184,the value of plot_cost is         : 8.391808540188379 

 At row:59, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:59, column:185,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:185,the value of plot_cost is         : 8.328482578001275 

 At row:59, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:59, column:186,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:186,the value of plot_cost is         : 8.265964676216687 

 At row:59, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:59, column:187,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:187,the value of plot_cost is         : 8.204254834834616 

 At row:59, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:59, column:188,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:188,the value of plot_cost is         : 8.14335305385506 

 At row:59, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:59, column:189,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:189,the value of plot_cost is         : 8.083259333278018 

 At row:59, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:59, column:190,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:190,the value of plot_cost is         : 8.023973673103491 

 At row:59, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:59, column:191,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:191,the value of plot_cost is         : 7.9654960733314795 

 At row:59, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:59, column:192,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:192,the value of plot_cost is         : 7.907826533961983 

 At row:59, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:59, column:193,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:193,the value of plot_cost is         : 7.850965054995004 

 At row:59, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:59, column:194,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:194,the value of plot_cost is         : 7.794911636430537 

 At row:59, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:59, column:195,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:195,the value of plot_cost is         : 7.739666278268584 

 At row:59, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:59, column:196,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:196,the value of plot_cost is         : 7.685228980509147 

 At row:59, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:59, column:197,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:197,the value of plot_cost is         : 7.6315997431522264 

 At row:59, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:59, column:198,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:198,the value of plot_cost is         : 7.578778566197822 

 At row:59, column:199,the value of plot_t0 is           : 3.0
 At row:59, column:199,the value of plot_t1 is           : 0.18592964824120606
 At row:59, column:199,the value of plot_cost is         : 7.526765449645931 

 At row:60, column:0,the value of plot_t0 is           : -1.0
 At row:60, column:0,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:0,the value of plot_cost is         : 32.908082371657265 

 At row:60, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:60, column:1,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:1,the value of plot_cost is         : 32.69875143845573 

 At row:60, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:60, column:2,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:2,the value of plot_cost is         : 32.49022856565671 

 At row:60, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:60, column:3,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:3,the value of plot_cost is         : 32.28251375326019 

 At row:60, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:60, column:4,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:4,the value of plot_cost is         : 32.07560700126619 

 At row:60, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:60, column:5,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:5,the value of plot_cost is         : 31.869508309674707 

 At row:60, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:60, column:6,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:6,the value of plot_cost is         : 31.66421767848574 

 At row:60, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:60, column:7,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:7,the value of plot_cost is         : 31.45973510769929 

 At row:60, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:60, column:8,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:8,the value of plot_cost is         : 31.25606059731536 

 At row:60, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:60, column:9,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:9,the value of plot_cost is         : 31.053194147333933 

 At row:60, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:60, column:10,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:10,the value of plot_cost is         : 30.851135757755024 

 At row:60, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:60, column:11,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:11,the value of plot_cost is         : 30.649885428578635 

 At row:60, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:60, column:12,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:12,the value of plot_cost is         : 30.449443159804762 

 At row:60, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:60, column:13,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:13,the value of plot_cost is         : 30.249808951433394 

 At row:60, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:60, column:14,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:14,the value of plot_cost is         : 30.05098280346455 

 At row:60, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:60, column:15,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:15,the value of plot_cost is         : 29.852964715898217 

 At row:60, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:60, column:16,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:16,the value of plot_cost is         : 29.6557546887344 

 At row:60, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:60, column:17,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:17,the value of plot_cost is         : 29.459352721973104 

 At row:60, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:60, column:18,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:18,the value of plot_cost is         : 29.263758815614313 

 At row:60, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:60, column:19,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:19,the value of plot_cost is         : 29.068972969658045 

 At row:60, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:60, column:20,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:20,the value of plot_cost is         : 28.874995184104286 

 At row:60, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:60, column:21,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:21,the value of plot_cost is         : 28.68182545895305 

 At row:60, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:60, column:22,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:22,the value of plot_cost is         : 28.489463794204323 

 At row:60, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:60, column:23,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:23,the value of plot_cost is         : 28.297910189858115 

 At row:60, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:60, column:24,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:24,the value of plot_cost is         : 28.107164645914416 

 At row:60, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:60, column:25,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:25,the value of plot_cost is         : 27.917227162373234 

 At row:60, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:60, column:26,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:26,the value of plot_cost is         : 27.72809773923457 

 At row:60, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:60, column:27,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:27,the value of plot_cost is         : 27.539776376498423 

 At row:60, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:60, column:28,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:28,the value of plot_cost is         : 27.35226307416479 

 At row:60, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:60, column:29,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:29,the value of plot_cost is         : 27.165557832233667 

 At row:60, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:60, column:30,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:30,the value of plot_cost is         : 26.97966065070506 

 At row:60, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:60, column:31,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:31,the value of plot_cost is         : 26.794571529578974 

 At row:60, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:60, column:32,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:32,the value of plot_cost is         : 26.610290468855403 

 At row:60, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:60, column:33,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:33,the value of plot_cost is         : 26.426817468534338 

 At row:60, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:60, column:34,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:34,the value of plot_cost is         : 26.24415252861579 

 At row:60, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:60, column:35,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:35,the value of plot_cost is         : 26.06229564909976 

 At row:60, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:60, column:36,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:36,the value of plot_cost is         : 25.881246829986246 

 At row:60, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:60, column:37,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:37,the value of plot_cost is         : 25.70100607127525 

 At row:60, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:60, column:38,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:38,the value of plot_cost is         : 25.52157337296677 

 At row:60, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:60, column:39,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:39,the value of plot_cost is         : 25.342948735060794 

 At row:60, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:60, column:40,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:40,the value of plot_cost is         : 25.16513215755734 

 At row:60, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:60, column:41,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:41,the value of plot_cost is         : 24.988123640456404 

 At row:60, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:60, column:42,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:42,the value of plot_cost is         : 24.811923183757983 

 At row:60, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:60, column:43,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:43,the value of plot_cost is         : 24.63653078746207 

 At row:60, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:60, column:44,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:44,the value of plot_cost is         : 24.46194645156868 

 At row:60, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:60, column:45,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:45,the value of plot_cost is         : 24.288170176077795 

 At row:60, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:60, column:46,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:46,the value of plot_cost is         : 24.115201960989435 

 At row:60, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:60, column:47,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:47,the value of plot_cost is         : 23.943041806303587 

 At row:60, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:60, column:48,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:48,the value of plot_cost is         : 23.771689712020255 

 At row:60, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:60, column:49,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:49,the value of plot_cost is         : 23.601145678139435 

 At row:60, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:60, column:50,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:50,the value of plot_cost is         : 23.431409704661128 

 At row:60, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:60, column:51,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:51,the value of plot_cost is         : 23.262481791585344 

 At row:60, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:60, column:52,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:52,the value of plot_cost is         : 23.094361938912073 

 At row:60, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:60, column:53,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:53,the value of plot_cost is         : 22.927050146641314 

 At row:60, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:60, column:54,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:54,the value of plot_cost is         : 22.76054641477307 

 At row:60, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:60, column:55,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:55,the value of plot_cost is         : 22.594850743307337 

 At row:60, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:60, column:56,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:56,the value of plot_cost is         : 22.42996313224413 

 At row:60, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:60, column:57,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:57,the value of plot_cost is         : 22.265883581583434 

 At row:60, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:60, column:58,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:58,the value of plot_cost is         : 22.102612091325252 

 At row:60, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:60, column:59,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:59,the value of plot_cost is         : 21.940148661469582 

 At row:60, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:60, column:60,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:60,the value of plot_cost is         : 21.778493292016424 

 At row:60, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:60, column:61,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:61,the value of plot_cost is         : 21.617645982965794 

 At row:60, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:60, column:62,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:62,the value of plot_cost is         : 21.45760673431767 

 At row:60, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:60, column:63,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:63,the value of plot_cost is         : 21.298375546072066 

 At row:60, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:60, column:64,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:64,the value of plot_cost is         : 21.139952418228972 

 At row:60, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:60, column:65,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:65,the value of plot_cost is         : 20.98233735078839 

 At row:60, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:60, column:66,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:66,the value of plot_cost is         : 20.825530343750334 

 At row:60, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:60, column:67,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:67,the value of plot_cost is         : 20.669531397114785 

 At row:60, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:60, column:68,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:68,the value of plot_cost is         : 20.514340510881752 

 At row:60, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:60, column:69,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:69,the value of plot_cost is         : 20.35995768505124 

 At row:60, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:60, column:70,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:70,the value of plot_cost is         : 20.206382919623234 

 At row:60, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:60, column:71,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:71,the value of plot_cost is         : 20.053616214597753 

 At row:60, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:60, column:72,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:72,the value of plot_cost is         : 19.901657569974777 

 At row:60, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:60, column:73,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:73,the value of plot_cost is         : 19.750506985754324 

 At row:60, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:60, column:74,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:74,the value of plot_cost is         : 19.600164461936384 

 At row:60, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:60, column:75,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:75,the value of plot_cost is         : 19.450629998520956 

 At row:60, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:60, column:76,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:76,the value of plot_cost is         : 19.301903595508044 

 At row:60, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:60, column:77,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:77,the value of plot_cost is         : 19.153985252897645 

 At row:60, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:60, column:78,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:78,the value of plot_cost is         : 19.006874970689765 

 At row:60, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:60, column:79,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:79,the value of plot_cost is         : 18.860572748884405 

 At row:60, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:60, column:80,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:80,the value of plot_cost is         : 18.71507858748155 

 At row:60, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:60, column:81,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:81,the value of plot_cost is         : 18.570392486481214 

 At row:60, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:60, column:82,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:82,the value of plot_cost is         : 18.426514445883395 

 At row:60, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:60, column:83,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:83,the value of plot_cost is         : 18.283444465688092 

 At row:60, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:60, column:84,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:84,the value of plot_cost is         : 18.1411825458953 

 At row:60, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:60, column:85,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:85,the value of plot_cost is         : 17.999728686505023 

 At row:60, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:60, column:86,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:86,the value of plot_cost is         : 17.859082887517264 

 At row:60, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:60, column:87,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:87,the value of plot_cost is         : 17.71924514893202 

 At row:60, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:60, column:88,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:88,the value of plot_cost is         : 17.58021547074929 

 At row:60, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:60, column:89,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:89,the value of plot_cost is         : 17.441993852969077 

 At row:60, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:60, column:90,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:90,the value of plot_cost is         : 17.304580295591375 

 At row:60, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:60, column:91,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:91,the value of plot_cost is         : 17.16797479861619 

 At row:60, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:60, column:92,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:92,the value of plot_cost is         : 17.032177362043523 

 At row:60, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:60, column:93,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:93,the value of plot_cost is         : 16.89718798587337 

 At row:60, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:60, column:94,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:94,the value of plot_cost is         : 16.763006670105728 

 At row:60, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:60, column:95,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:95,the value of plot_cost is         : 16.629633414740603 

 At row:60, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:60, column:96,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:96,the value of plot_cost is         : 16.497068219777997 

 At row:60, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:60, column:97,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:97,the value of plot_cost is         : 16.3653110852179 

 At row:60, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:60, column:98,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:98,the value of plot_cost is         : 16.23436201106032 

 At row:60, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:60, column:99,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:99,the value of plot_cost is         : 16.10422099730526 

 At row:60, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:60, column:100,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:100,the value of plot_cost is         : 15.97488804395271 

 At row:60, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:60, column:101,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:101,the value of plot_cost is         : 15.846363151002674 

 At row:60, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:60, column:102,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:102,the value of plot_cost is         : 15.718646318455159 

 At row:60, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:60, column:103,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:103,the value of plot_cost is         : 15.591737546310153 

 At row:60, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:60, column:104,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:104,the value of plot_cost is         : 15.465636834567663 

 At row:60, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:60, column:105,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:105,the value of plot_cost is         : 15.34034418322769 

 At row:60, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:60, column:106,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:106,the value of plot_cost is         : 15.215859592290233 

 At row:60, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:60, column:107,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:107,the value of plot_cost is         : 15.09218306175529 

 At row:60, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:60, column:108,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:108,the value of plot_cost is         : 14.969314591622863 

 At row:60, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:60, column:109,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:109,the value of plot_cost is         : 14.847254181892945 

 At row:60, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:60, column:110,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:110,the value of plot_cost is         : 14.726001832565549 

 At row:60, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:60, column:111,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:111,the value of plot_cost is         : 14.605557543640668 

 At row:60, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:60, column:112,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:112,the value of plot_cost is         : 14.485921315118299 

 At row:60, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:60, column:113,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:113,the value of plot_cost is         : 14.367093146998448 

 At row:60, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:60, column:114,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:114,the value of plot_cost is         : 14.24907303928111 

 At row:60, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:60, column:115,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:115,the value of plot_cost is         : 14.131860991966287 

 At row:60, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:60, column:116,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:116,the value of plot_cost is         : 14.015457005053982 

 At row:60, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:60, column:117,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:117,the value of plot_cost is         : 13.899861078544188 

 At row:60, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:60, column:118,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:118,the value of plot_cost is         : 13.785073212436913 

 At row:60, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:60, column:119,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:119,the value of plot_cost is         : 13.671093406732146 

 At row:60, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:60, column:120,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:120,the value of plot_cost is         : 13.557921661429901 

 At row:60, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:60, column:121,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:121,the value of plot_cost is         : 13.44555797653017 

 At row:60, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:60, column:122,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:122,the value of plot_cost is         : 13.334002352032956 

 At row:60, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:60, column:123,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:123,the value of plot_cost is         : 13.22325478793825 

 At row:60, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:60, column:124,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:124,the value of plot_cost is         : 13.113315284246063 

 At row:60, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:60, column:125,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:125,the value of plot_cost is         : 13.00418384095639 

 At row:60, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:60, column:126,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:126,the value of plot_cost is         : 12.895860458069237 

 At row:60, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:60, column:127,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:127,the value of plot_cost is         : 12.788345135584596 

 At row:60, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:60, column:128,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:128,the value of plot_cost is         : 12.681637873502469 

 At row:60, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:60, column:129,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:129,the value of plot_cost is         : 12.575738671822855 

 At row:60, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:60, column:130,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:130,the value of plot_cost is         : 12.470647530545762 

 At row:60, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:60, column:131,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:131,the value of plot_cost is         : 12.366364449671183 

 At row:60, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:60, column:132,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:132,the value of plot_cost is         : 12.262889429199117 

 At row:60, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:60, column:133,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:133,the value of plot_cost is         : 12.160222469129561 

 At row:60, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:60, column:134,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:134,the value of plot_cost is         : 12.058363569462525 

 At row:60, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:60, column:135,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:135,the value of plot_cost is         : 11.957312730198005 

 At row:60, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:60, column:136,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:136,the value of plot_cost is         : 11.857069951336003 

 At row:60, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:60, column:137,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:137,the value of plot_cost is         : 11.757635232876513 

 At row:60, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:60, column:138,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:138,the value of plot_cost is         : 11.659008574819534 

 At row:60, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:60, column:139,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:139,the value of plot_cost is         : 11.561189977165073 

 At row:60, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:60, column:140,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:140,the value of plot_cost is         : 11.464179439913128 

 At row:60, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:60, column:141,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:141,the value of plot_cost is         : 11.3679769630637 

 At row:60, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:60, column:142,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:142,the value of plot_cost is         : 11.272582546616787 

 At row:60, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:60, column:143,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:143,the value of plot_cost is         : 11.177996190572385 

 At row:60, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:60, column:144,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:144,the value of plot_cost is         : 11.084217894930497 

 At row:60, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:60, column:145,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:145,the value of plot_cost is         : 10.99124765969113 

 At row:60, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:60, column:146,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:146,the value of plot_cost is         : 10.899085484854275 

 At row:60, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:60, column:147,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:147,the value of plot_cost is         : 10.807731370419937 

 At row:60, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:60, column:148,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:148,the value of plot_cost is         : 10.717185316388111 

 At row:60, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:60, column:149,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:149,the value of plot_cost is         : 10.6274473227588 

 At row:60, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:60, column:150,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:150,the value of plot_cost is         : 10.538517389532005 

 At row:60, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:60, column:151,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:151,the value of plot_cost is         : 10.450395516707728 

 At row:60, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:60, column:152,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:152,the value of plot_cost is         : 10.363081704285964 

 At row:60, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:60, column:153,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:153,the value of plot_cost is         : 10.276575952266715 

 At row:60, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:60, column:154,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:154,the value of plot_cost is         : 10.19087826064998 

 At row:60, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:60, column:155,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:155,the value of plot_cost is         : 10.10598862943576 

 At row:60, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:60, column:156,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:156,the value of plot_cost is         : 10.021907058624057 

 At row:60, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:60, column:157,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:157,the value of plot_cost is         : 9.938633548214868 

 At row:60, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:60, column:158,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:158,the value of plot_cost is         : 9.856168098208194 

 At row:60, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:60, column:159,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:159,the value of plot_cost is         : 9.774510708604033 

 At row:60, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:60, column:160,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:160,the value of plot_cost is         : 9.693661379402391 

 At row:60, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:60, column:161,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:161,the value of plot_cost is         : 9.613620110603264 

 At row:60, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:60, column:162,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:162,the value of plot_cost is         : 9.534386902206652 

 At row:60, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:60, column:163,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:163,the value of plot_cost is         : 9.455961754212552 

 At row:60, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:60, column:164,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:164,the value of plot_cost is         : 9.378344666620968 

 At row:60, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:60, column:165,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:165,the value of plot_cost is         : 9.301535639431899 

 At row:60, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:60, column:166,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:166,the value of plot_cost is         : 9.225534672645347 

 At row:60, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:60, column:167,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:167,the value of plot_cost is         : 9.150341766261311 

 At row:60, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:60, column:168,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:168,the value of plot_cost is         : 9.075956920279788 

 At row:60, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:60, column:169,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:169,the value of plot_cost is         : 9.002380134700777 

 At row:60, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:60, column:170,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:170,the value of plot_cost is         : 8.929611409524286 

 At row:60, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:60, column:171,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:171,the value of plot_cost is         : 8.857650744750309 

 At row:60, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:60, column:172,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:172,the value of plot_cost is         : 8.786498140378848 

 At row:60, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:60, column:173,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:173,the value of plot_cost is         : 8.7161535964099 

 At row:60, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:60, column:174,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:174,the value of plot_cost is         : 8.646617112843465 

 At row:60, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:60, column:175,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:175,the value of plot_cost is         : 8.577888689679549 

 At row:60, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:60, column:176,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:176,the value of plot_cost is         : 8.509968326918148 

 At row:60, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:60, column:177,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:177,the value of plot_cost is         : 8.442856024559264 

 At row:60, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:60, column:178,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:178,the value of plot_cost is         : 8.37655178260289 

 At row:60, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:60, column:179,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:179,the value of plot_cost is         : 8.311055601049029 

 At row:60, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:60, column:180,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:180,the value of plot_cost is         : 8.24636747989769 

 At row:60, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:60, column:181,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:181,the value of plot_cost is         : 8.182487419148863 

 At row:60, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:60, column:182,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:182,the value of plot_cost is         : 8.119415418802554 

 At row:60, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:60, column:183,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:183,the value of plot_cost is         : 8.057151478858756 

 At row:60, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:60, column:184,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:184,the value of plot_cost is         : 7.995695599317473 

 At row:60, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:60, column:185,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:185,the value of plot_cost is         : 7.935047780178708 

 At row:60, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:60, column:186,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:186,the value of plot_cost is         : 7.875208021442458 

 At row:60, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:60, column:187,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:187,the value of plot_cost is         : 7.8161763231087225 

 At row:60, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:60, column:188,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:188,the value of plot_cost is         : 7.757952685177501 

 At row:60, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:60, column:189,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:189,the value of plot_cost is         : 7.700537107648793 

 At row:60, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:60, column:190,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:190,the value of plot_cost is         : 7.643929590522603 

 At row:60, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:60, column:191,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:191,the value of plot_cost is         : 7.588130133798929 

 At row:60, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:60, column:192,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:192,the value of plot_cost is         : 7.533138737477768 

 At row:60, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:60, column:193,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:193,the value of plot_cost is         : 7.478955401559121 

 At row:60, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:60, column:194,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:194,the value of plot_cost is         : 7.4255801260429894 

 At row:60, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:60, column:195,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:195,the value of plot_cost is         : 7.373012910929374 

 At row:60, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:60, column:196,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:196,the value of plot_cost is         : 7.321253756218274 

 At row:60, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:60, column:197,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:197,the value of plot_cost is         : 7.270302661909689 

 At row:60, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:60, column:198,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:198,the value of plot_cost is         : 7.2201596280036195 

 At row:60, column:199,the value of plot_t0 is           : 3.0
 At row:60, column:199,the value of plot_t1 is           : 0.20603015075376896
 At row:60, column:199,the value of plot_cost is         : 7.170824654500063 

 At row:61, column:0,the value of plot_t0 is           : -1.0
 At row:61, column:0,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:0,the value of plot_cost is         : 32.03177376473177 

 At row:61, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:61, column:1,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:1,the value of plot_cost is         : 31.825120974578557 

 At row:61, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:61, column:2,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:2,the value of plot_cost is         : 31.61927624482787 

 At row:61, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:61, column:3,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:3,the value of plot_cost is         : 31.414239575479687 

 At row:61, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:61, column:4,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:4,the value of plot_cost is         : 31.21001096653403 

 At row:61, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:61, column:5,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:5,the value of plot_cost is         : 31.006590417990886 

 At row:61, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:61, column:6,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:6,the value of plot_cost is         : 30.803977929850255 

 At row:61, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:61, column:7,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:7,the value of plot_cost is         : 30.60217350211214 

 At row:61, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:61, column:8,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:8,the value of plot_cost is         : 30.401177134776542 

 At row:61, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:61, column:9,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:9,the value of plot_cost is         : 30.200988827843446 

 At row:61, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:61, column:10,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:10,the value of plot_cost is         : 30.00160858131288 

 At row:61, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:61, column:11,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:11,the value of plot_cost is         : 29.803036395184826 

 At row:61, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:61, column:12,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:12,the value of plot_cost is         : 29.605272269459284 

 At row:61, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:61, column:13,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:13,the value of plot_cost is         : 29.408316204136252 

 At row:61, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:61, column:14,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:14,the value of plot_cost is         : 29.212168199215746 

 At row:61, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:61, column:15,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:15,the value of plot_cost is         : 29.01682825469775 

 At row:61, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:61, column:16,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:16,the value of plot_cost is         : 28.82229637058227 

 At row:61, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:61, column:17,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:17,the value of plot_cost is         : 28.628572546869307 

 At row:61, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:61, column:18,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:18,the value of plot_cost is         : 28.435656783558855 

 At row:61, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:61, column:19,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:19,the value of plot_cost is         : 28.243549080650915 

 At row:61, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:61, column:20,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:20,the value of plot_cost is         : 28.0522494381455 

 At row:61, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:61, column:21,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:21,the value of plot_cost is         : 27.861757856042594 

 At row:61, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:61, column:22,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:22,the value of plot_cost is         : 27.672074334342206 

 At row:61, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:61, column:23,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:23,the value of plot_cost is         : 27.483198873044323 

 At row:61, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:61, column:24,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:24,the value of plot_cost is         : 27.29513147214897 

 At row:61, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:61, column:25,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:25,the value of plot_cost is         : 27.107872131656123 

 At row:61, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:61, column:26,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:26,the value of plot_cost is         : 26.921420851565795 

 At row:61, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:61, column:27,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:27,the value of plot_cost is         : 26.73577763187798 

 At row:61, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:61, column:28,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:28,the value of plot_cost is         : 26.550942472592684 

 At row:61, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:61, column:29,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:29,the value of plot_cost is         : 26.36691537370989 

 At row:61, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:61, column:30,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:30,the value of plot_cost is         : 26.183696335229627 

 At row:61, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:61, column:31,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:31,the value of plot_cost is         : 26.001285357151875 

 At row:61, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:61, column:32,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:32,the value of plot_cost is         : 25.819682439476637 

 At row:61, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:61, column:33,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:33,the value of plot_cost is         : 25.63888758220391 

 At row:61, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:61, column:34,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:34,the value of plot_cost is         : 25.4589007853337 

 At row:61, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:61, column:35,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:35,the value of plot_cost is         : 25.279722048866006 

 At row:61, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:61, column:36,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:36,the value of plot_cost is         : 25.101351372800828 

 At row:61, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:61, column:37,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:37,the value of plot_cost is         : 24.92378875713817 

 At row:61, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:61, column:38,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:38,the value of plot_cost is         : 24.747034201878023 

 At row:61, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:61, column:39,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:39,the value of plot_cost is         : 24.571087707020386 

 At row:61, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:61, column:40,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:40,the value of plot_cost is         : 24.39594927256526 

 At row:61, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:61, column:41,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:41,the value of plot_cost is         : 24.221618898512663 

 At row:61, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:61, column:42,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:42,the value of plot_cost is         : 24.048096584862577 

 At row:61, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:61, column:43,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:43,the value of plot_cost is         : 23.875382331614997 

 At row:61, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:61, column:44,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:44,the value of plot_cost is         : 23.703476138769943 

 At row:61, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:61, column:45,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:45,the value of plot_cost is         : 23.532378006327395 

 At row:61, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:61, column:46,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:46,the value of plot_cost is         : 23.36208793428737 

 At row:61, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:61, column:47,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:47,the value of plot_cost is         : 23.19260592264986 

 At row:61, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:61, column:48,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:48,the value of plot_cost is         : 23.023931971414868 

 At row:61, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:61, column:49,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:49,the value of plot_cost is         : 22.856066080582377 

 At row:61, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:61, column:50,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:50,the value of plot_cost is         : 22.689008250152412 

 At row:61, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:61, column:51,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:51,the value of plot_cost is         : 22.52275848012496 

 At row:61, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:61, column:52,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:52,the value of plot_cost is         : 22.35731677050002 

 At row:61, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:61, column:53,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:53,the value of plot_cost is         : 22.192683121277597 

 At row:61, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:61, column:54,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:54,the value of plot_cost is         : 22.028857532457693 

 At row:61, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:61, column:55,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:55,the value of plot_cost is         : 21.865840004040297 

 At row:61, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:61, column:56,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:56,the value of plot_cost is         : 21.703630536025425 

 At row:61, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:61, column:57,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:57,the value of plot_cost is         : 21.54222912841306 

 At row:61, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:61, column:58,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:58,the value of plot_cost is         : 21.381635781203215 

 At row:61, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:61, column:59,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:59,the value of plot_cost is         : 21.221850494395884 

 At row:61, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:61, column:60,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:60,the value of plot_cost is         : 21.062873267991066 

 At row:61, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:61, column:61,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:61,the value of plot_cost is         : 20.904704101988763 

 At row:61, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:61, column:62,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:62,the value of plot_cost is         : 20.747342996388976 

 At row:61, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:61, column:63,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:63,the value of plot_cost is         : 20.59078995119171 

 At row:61, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:61, column:64,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:64,the value of plot_cost is         : 20.435044966396948 

 At row:61, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:61, column:65,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:65,the value of plot_cost is         : 20.280108042004713 

 At row:61, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:61, column:66,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:66,the value of plot_cost is         : 20.125979178014987 

 At row:61, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:61, column:67,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:67,the value of plot_cost is         : 19.97265837442777 

 At row:61, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:61, column:68,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:68,the value of plot_cost is         : 19.82014563124308 

 At row:61, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:61, column:69,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:69,the value of plot_cost is         : 19.668440948460898 

 At row:61, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:61, column:70,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:70,the value of plot_cost is         : 19.517544326081232 

 At row:61, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:61, column:71,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:71,the value of plot_cost is         : 19.367455764104083 

 At row:61, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:61, column:72,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:72,the value of plot_cost is         : 19.218175262529442 

 At row:61, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:61, column:73,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:73,the value of plot_cost is         : 19.069702821357325 

 At row:61, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:61, column:74,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:74,the value of plot_cost is         : 18.922038440587716 

 At row:61, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:61, column:75,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:75,the value of plot_cost is         : 18.775182120220627 

 At row:61, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:61, column:76,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:76,the value of plot_cost is         : 18.62913386025605 

 At row:61, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:61, column:77,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:77,the value of plot_cost is         : 18.48389366069399 

 At row:61, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:61, column:78,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:78,the value of plot_cost is         : 18.33946152153445 

 At row:61, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:61, column:79,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:79,the value of plot_cost is         : 18.195837442777417 

 At row:61, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:61, column:80,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:80,the value of plot_cost is         : 18.053021424422905 

 At row:61, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:61, column:81,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:81,the value of plot_cost is         : 17.911013466470905 

 At row:61, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:61, column:82,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:82,the value of plot_cost is         : 17.76981356892142 

 At row:61, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:61, column:83,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:83,the value of plot_cost is         : 17.62942173177445 

 At row:61, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:61, column:84,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:84,the value of plot_cost is         : 17.489837955029994 

 At row:61, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:61, column:85,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:85,the value of plot_cost is         : 17.351062238688055 

 At row:61, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:61, column:86,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:86,the value of plot_cost is         : 17.21309458274863 

 At row:61, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:61, column:87,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:87,the value of plot_cost is         : 17.07593498721172 

 At row:61, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:61, column:88,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:88,the value of plot_cost is         : 16.939583452077326 

 At row:61, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:61, column:89,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:89,the value of plot_cost is         : 16.80403997734545 

 At row:61, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:61, column:90,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:90,the value of plot_cost is         : 16.669304563016084 

 At row:61, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:61, column:91,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:91,the value of plot_cost is         : 16.535377209089237 

 At row:61, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:61, column:92,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:92,the value of plot_cost is         : 16.4022579155649 

 At row:61, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:61, column:93,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:93,the value of plot_cost is         : 16.26994668244308 

 At row:61, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:61, column:94,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:94,the value of plot_cost is         : 16.13844350972378 

 At row:61, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:61, column:95,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:95,the value of plot_cost is         : 16.00774839740699 

 At row:61, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:61, column:96,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:96,the value of plot_cost is         : 15.877861345492718 

 At row:61, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:61, column:97,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:97,the value of plot_cost is         : 15.748782353980959 

 At row:61, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:61, column:98,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:98,the value of plot_cost is         : 15.620511422871715 

 At row:61, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:61, column:99,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:99,the value of plot_cost is         : 15.493048552164987 

 At row:61, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:61, column:100,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:100,the value of plot_cost is         : 15.366393741860776 

 At row:61, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:61, column:101,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:101,the value of plot_cost is         : 15.240546991959079 

 At row:61, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:61, column:102,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:102,the value of plot_cost is         : 15.115508302459894 

 At row:61, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:61, column:103,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:103,the value of plot_cost is         : 14.991277673363225 

 At row:61, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:61, column:104,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:104,the value of plot_cost is         : 14.86785510466907 

 At row:61, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:61, column:105,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:105,the value of plot_cost is         : 14.745240596377435 

 At row:61, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:61, column:106,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:106,the value of plot_cost is         : 14.623434148488315 

 At row:61, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:61, column:107,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:107,the value of plot_cost is         : 14.502435761001703 

 At row:61, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:61, column:108,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:108,the value of plot_cost is         : 14.382245433917612 

 At row:61, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:61, column:109,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:109,the value of plot_cost is         : 14.262863167236036 

 At row:61, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:61, column:110,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:110,the value of plot_cost is         : 14.144288960956972 

 At row:61, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:61, column:111,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:111,the value of plot_cost is         : 14.026522815080426 

 At row:61, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:61, column:112,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:112,the value of plot_cost is         : 13.909564729606394 

 At row:61, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:61, column:113,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:113,the value of plot_cost is         : 13.793414704534875 

 At row:61, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:61, column:114,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:114,the value of plot_cost is         : 13.678072739865874 

 At row:61, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:61, column:115,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:115,the value of plot_cost is         : 13.563538835599385 

 At row:61, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:61, column:116,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:116,the value of plot_cost is         : 13.449812991735419 

 At row:61, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:61, column:117,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:117,the value of plot_cost is         : 13.33689520827396 

 At row:61, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:61, column:118,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:118,the value of plot_cost is         : 13.224785485215017 

 At row:61, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:61, column:119,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:119,the value of plot_cost is         : 13.113483822558592 

 At row:61, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:61, column:120,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:120,the value of plot_cost is         : 13.002990220304678 

 At row:61, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:61, column:121,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:121,the value of plot_cost is         : 12.893304678453285 

 At row:61, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:61, column:122,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:122,the value of plot_cost is         : 12.784427197004405 

 At row:61, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:61, column:123,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:123,the value of plot_cost is         : 12.676357775958039 

 At row:61, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:61, column:124,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:124,the value of plot_cost is         : 12.569096415314185 

 At row:61, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:61, column:125,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:125,the value of plot_cost is         : 12.462643115072847 

 At row:61, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:61, column:126,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:126,the value of plot_cost is         : 12.35699787523403 

 At row:61, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:61, column:127,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:127,the value of plot_cost is         : 12.252160695797723 

 At row:61, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:61, column:128,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:128,the value of plot_cost is         : 12.148131576763934 

 At row:61, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:61, column:129,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:129,the value of plot_cost is         : 12.044910518132657 

 At row:61, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:61, column:130,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:130,the value of plot_cost is         : 11.942497519903897 

 At row:61, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:61, column:131,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:131,the value of plot_cost is         : 11.840892582077652 

 At row:61, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:61, column:132,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:132,the value of plot_cost is         : 11.740095704653921 

 At row:61, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:61, column:133,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:133,the value of plot_cost is         : 11.640106887632706 

 At row:61, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:61, column:134,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:134,the value of plot_cost is         : 11.540926131014007 

 At row:61, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:61, column:135,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:135,the value of plot_cost is         : 11.44255343479782 

 At row:61, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:61, column:136,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:136,the value of plot_cost is         : 11.344988798984152 

 At row:61, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:61, column:137,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:137,the value of plot_cost is         : 11.248232223572998 

 At row:61, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:61, column:138,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:138,the value of plot_cost is         : 11.152283708564356 

 At row:61, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:61, column:139,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:139,the value of plot_cost is         : 11.057143253958232 

 At row:61, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:61, column:140,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:140,the value of plot_cost is         : 10.96281085975462 

 At row:61, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:61, column:141,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:141,the value of plot_cost is         : 10.86928652595353 

 At row:61, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:61, column:142,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:142,the value of plot_cost is         : 10.776570252554949 

 At row:61, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:61, column:143,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:143,the value of plot_cost is         : 10.684662039558885 

 At row:61, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:61, column:144,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:144,the value of plot_cost is         : 10.593561886965334 

 At row:61, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:61, column:145,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:145,the value of plot_cost is         : 10.503269794774301 

 At row:61, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:61, column:146,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:146,the value of plot_cost is         : 10.413785762985784 

 At row:61, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:61, column:147,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:147,the value of plot_cost is         : 10.325109791599779 

 At row:61, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:61, column:148,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:148,the value of plot_cost is         : 10.23724188061629 

 At row:61, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:61, column:149,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:149,the value of plot_cost is         : 10.150182030035316 

 At row:61, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:61, column:150,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:150,the value of plot_cost is         : 10.063930239856857 

 At row:61, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:61, column:151,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:151,the value of plot_cost is         : 9.978486510080913 

 At row:61, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:61, column:152,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:152,the value of plot_cost is         : 9.893850840707485 

 At row:61, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:61, column:153,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:153,the value of plot_cost is         : 9.81002323173657 

 At row:61, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:61, column:154,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:154,the value of plot_cost is         : 9.72700368316817 

 At row:61, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:61, column:155,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:155,the value of plot_cost is         : 9.644792195002289 

 At row:61, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:61, column:156,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:156,the value of plot_cost is         : 9.563388767238921 

 At row:61, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:61, column:157,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:157,the value of plot_cost is         : 9.48279339987807 

 At row:61, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:61, column:158,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:158,the value of plot_cost is         : 9.40300609291973 

 At row:61, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:61, column:159,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:159,the value of plot_cost is         : 9.324026846363909 

 At row:61, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:61, column:160,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:160,the value of plot_cost is         : 9.2458556602106 

 At row:61, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:61, column:161,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:161,the value of plot_cost is         : 9.168492534459805 

 At row:61, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:61, column:162,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:162,the value of plot_cost is         : 9.09193746911153 

 At row:61, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:61, column:163,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:163,the value of plot_cost is         : 9.016190464165767 

 At row:61, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:61, column:164,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:164,the value of plot_cost is         : 8.941251519622519 

 At row:61, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:61, column:165,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:165,the value of plot_cost is         : 8.867120635481786 

 At row:61, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:61, column:166,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:166,the value of plot_cost is         : 8.793797811743568 

 At row:61, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:61, column:167,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:167,the value of plot_cost is         : 8.721283048407868 

 At row:61, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:61, column:168,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:168,the value of plot_cost is         : 8.64957634547468 

 At row:61, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:61, column:169,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:169,the value of plot_cost is         : 8.578677702944008 

 At row:61, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:61, column:170,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:170,the value of plot_cost is         : 8.508587120815852 

 At row:61, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:61, column:171,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:171,the value of plot_cost is         : 8.439304599090208 

 At row:61, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:61, column:172,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:172,the value of plot_cost is         : 8.370830137767083 

 At row:61, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:61, column:173,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:173,the value of plot_cost is         : 8.303163736846471 

 At row:61, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:61, column:174,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:174,the value of plot_cost is         : 8.236305396328374 

 At row:61, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:61, column:175,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:175,the value of plot_cost is         : 8.170255116212793 

 At row:61, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:61, column:176,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:176,the value of plot_cost is         : 8.105012896499726 

 At row:61, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:61, column:177,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:177,the value of plot_cost is         : 8.040578737189175 

 At row:61, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:61, column:178,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:178,the value of plot_cost is         : 7.976952638281139 

 At row:61, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:61, column:179,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:179,the value of plot_cost is         : 7.914134599775618 

 At row:61, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:61, column:180,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:180,the value of plot_cost is         : 7.852124621672612 

 At row:61, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:61, column:181,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:181,the value of plot_cost is         : 7.79092270397212 

 At row:61, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:61, column:182,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:182,the value of plot_cost is         : 7.730528846674147 

 At row:61, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:61, column:183,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:183,the value of plot_cost is         : 7.6709430497786855 

 At row:61, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:61, column:184,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:184,the value of plot_cost is         : 7.612165313285739 

 At row:61, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:61, column:185,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:185,the value of plot_cost is         : 7.554195637195308 

 At row:61, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:61, column:186,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:186,the value of plot_cost is         : 7.4970340215073925 

 At row:61, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:61, column:187,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:187,the value of plot_cost is         : 7.440680466221993 

 At row:61, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:61, column:188,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:188,the value of plot_cost is         : 7.385134971339108 

 At row:61, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:61, column:189,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:189,the value of plot_cost is         : 7.330397536858736 

 At row:61, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:61, column:190,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:190,the value of plot_cost is         : 7.276468162780881 

 At row:61, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:61, column:191,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:191,the value of plot_cost is         : 7.223346849105541 

 At row:61, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:61, column:192,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:192,the value of plot_cost is         : 7.171033595832718 

 At row:61, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:61, column:193,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:193,the value of plot_cost is         : 7.119528402962407 

 At row:61, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:61, column:194,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:194,the value of plot_cost is         : 7.068831270494611 

 At row:61, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:61, column:195,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:195,the value of plot_cost is         : 7.0189421984293325 

 At row:61, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:61, column:196,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:196,the value of plot_cost is         : 6.969861186766567 

 At row:61, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:61, column:197,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:197,the value of plot_cost is         : 6.921588235506317 

 At row:61, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:61, column:198,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:198,the value of plot_cost is         : 6.874123344648584 

 At row:61, column:199,the value of plot_t0 is           : 3.0
 At row:61, column:199,the value of plot_t1 is           : 0.22613065326633164
 At row:61, column:199,the value of plot_cost is         : 6.827466514193365 

 At row:62, column:0,the value of plot_t0 is           : -1.0
 At row:62, column:0,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:0,the value of plot_cost is         : 31.16804781264542 

 At row:62, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:62, column:1,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:1,the value of plot_cost is         : 30.964073165540547 

 At row:62, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:62, column:2,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:2,the value of plot_cost is         : 30.760906578838192 

 At row:62, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:62, column:3,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:3,the value of plot_cost is         : 30.558548052538356 

 At row:62, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:62, column:4,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:4,the value of plot_cost is         : 30.35699758664103 

 At row:62, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:62, column:5,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:5,the value of plot_cost is         : 30.15625518114621 

 At row:62, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:62, column:6,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:6,the value of plot_cost is         : 29.95632083605392 

 At row:62, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:62, column:7,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:7,the value of plot_cost is         : 29.757194551364137 

 At row:62, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:62, column:8,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:8,the value of plot_cost is         : 29.55887632707687 

 At row:62, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:62, column:9,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:9,the value of plot_cost is         : 29.361366163192123 

 At row:62, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:62, column:10,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:10,the value of plot_cost is         : 29.16466405970989 

 At row:62, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:62, column:11,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:11,the value of plot_cost is         : 28.968770016630163 

 At row:62, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:62, column:12,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:12,the value of plot_cost is         : 28.77368403395296 

 At row:62, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:62, column:13,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:13,the value of plot_cost is         : 28.57940611167827 

 At row:62, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:62, column:14,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:14,the value of plot_cost is         : 28.3859362498061 

 At row:62, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:62, column:15,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:15,the value of plot_cost is         : 28.19327444833643 

 At row:62, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:62, column:16,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:16,the value of plot_cost is         : 28.001420707269293 

 At row:62, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:62, column:17,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:17,the value of plot_cost is         : 27.81037502660466 

 At row:62, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:62, column:18,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:18,the value of plot_cost is         : 27.62013740634255 

 At row:62, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:62, column:19,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:19,the value of plot_cost is         : 27.43070784648295 

 At row:62, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:62, column:20,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:20,the value of plot_cost is         : 27.24208634702586 

 At row:62, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:62, column:21,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:21,the value of plot_cost is         : 27.0542729079713 

 At row:62, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:62, column:22,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:22,the value of plot_cost is         : 26.86726752931924 

 At row:62, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:62, column:23,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:23,the value of plot_cost is         : 26.681070211069702 

 At row:62, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:62, column:24,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:24,the value of plot_cost is         : 26.495680953222678 

 At row:62, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:62, column:25,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:25,the value of plot_cost is         : 26.311099755778166 

 At row:62, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:62, column:26,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:26,the value of plot_cost is         : 26.127326618736173 

 At row:62, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:62, column:27,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:27,the value of plot_cost is         : 25.944361542096697 

 At row:62, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:62, column:28,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:28,the value of plot_cost is         : 25.762204525859733 

 At row:62, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:62, column:29,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:29,the value of plot_cost is         : 25.580855570025285 

 At row:62, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:62, column:30,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:30,the value of plot_cost is         : 25.400314674593346 

 At row:62, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:62, column:31,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:31,the value of plot_cost is         : 25.22058183956393 

 At row:62, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:62, column:32,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:32,the value of plot_cost is         : 25.041657064937027 

 At row:62, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:62, column:33,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:33,the value of plot_cost is         : 24.863540350712643 

 At row:62, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:62, column:34,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:34,the value of plot_cost is         : 24.686231696890765 

 At row:62, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:62, column:35,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:35,the value of plot_cost is         : 24.50973110347141 

 At row:62, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:62, column:36,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:36,the value of plot_cost is         : 24.33403857045456 

 At row:62, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:62, column:37,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:37,the value of plot_cost is         : 24.159154097840236 

 At row:62, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:62, column:38,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:38,the value of plot_cost is         : 23.985077685628426 

 At row:62, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:62, column:39,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:39,the value of plot_cost is         : 23.811809333819127 

 At row:62, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:62, column:40,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:40,the value of plot_cost is         : 23.63934904241234 

 At row:62, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:62, column:41,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:41,the value of plot_cost is         : 23.467696811408075 

 At row:62, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:62, column:42,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:42,the value of plot_cost is         : 23.296852640806325 

 At row:62, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:62, column:43,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:43,the value of plot_cost is         : 23.126816530607087 

 At row:62, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:62, column:44,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:44,the value of plot_cost is         : 22.95758848081036 

 At row:62, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:62, column:45,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:45,the value of plot_cost is         : 22.789168491416156 

 At row:62, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:62, column:46,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:46,the value of plot_cost is         : 22.621556562424463 

 At row:62, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:62, column:47,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:47,the value of plot_cost is         : 22.454752693835285 

 At row:62, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:62, column:48,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:48,the value of plot_cost is         : 22.288756885648628 

 At row:62, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:62, column:49,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:49,the value of plot_cost is         : 22.123569137864482 

 At row:62, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:62, column:50,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:50,the value of plot_cost is         : 21.95918945048285 

 At row:62, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:62, column:51,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:51,the value of plot_cost is         : 21.795617823503733 

 At row:62, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:62, column:52,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:52,the value of plot_cost is         : 21.632854256927125 

 At row:62, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:62, column:53,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:53,the value of plot_cost is         : 21.470898750753044 

 At row:62, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:62, column:54,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:54,the value of plot_cost is         : 21.30975130498147 

 At row:62, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:62, column:55,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:55,the value of plot_cost is         : 21.149411919612408 

 At row:62, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:62, column:56,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:56,the value of plot_cost is         : 20.98988059464587 

 At row:62, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:62, column:57,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:57,the value of plot_cost is         : 20.83115733008185 

 At row:62, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:62, column:58,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:58,the value of plot_cost is         : 20.67324212592034 

 At row:62, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:62, column:59,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:59,the value of plot_cost is         : 20.516134982161343 

 At row:62, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:62, column:60,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:60,the value of plot_cost is         : 20.359835898804857 

 At row:62, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:62, column:61,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:61,the value of plot_cost is         : 20.204344875850893 

 At row:62, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:62, column:62,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:62,the value of plot_cost is         : 20.049661913299442 

 At row:62, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:62, column:63,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:63,the value of plot_cost is         : 19.895787011150507 

 At row:62, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:62, column:64,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:64,the value of plot_cost is         : 19.742720169404084 

 At row:62, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:62, column:65,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:65,the value of plot_cost is         : 19.59046138806018 

 At row:62, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:62, column:66,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:66,the value of plot_cost is         : 19.439010667118794 

 At row:62, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:62, column:67,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:67,the value of plot_cost is         : 19.288368006579915 

 At row:62, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:62, column:68,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:68,the value of plot_cost is         : 19.138533406443557 

 At row:62, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:62, column:69,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:69,the value of plot_cost is         : 18.989506866709714 

 At row:62, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:62, column:70,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:70,the value of plot_cost is         : 18.841288387378377 

 At row:62, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:62, column:71,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:71,the value of plot_cost is         : 18.693877968449563 

 At row:62, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:62, column:72,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:72,the value of plot_cost is         : 18.547275609923265 

 At row:62, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:62, column:73,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:73,the value of plot_cost is         : 18.401481311799483 

 At row:62, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:62, column:74,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:74,the value of plot_cost is         : 18.256495074078213 

 At row:62, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:62, column:75,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:75,the value of plot_cost is         : 18.112316896759452 

 At row:62, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:62, column:76,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:76,the value of plot_cost is         : 17.96894677984322 

 At row:62, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:62, column:77,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:77,the value of plot_cost is         : 17.826384723329493 

 At row:62, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:62, column:78,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:78,the value of plot_cost is         : 17.684630727218284 

 At row:62, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:62, column:79,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:79,the value of plot_cost is         : 17.54368479150959 

 At row:62, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:62, column:80,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:80,the value of plot_cost is         : 17.40354691620341 

 At row:62, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:62, column:81,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:81,the value of plot_cost is         : 17.26421710129975 

 At row:62, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:62, column:82,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:82,the value of plot_cost is         : 17.125695346798597 

 At row:62, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:62, column:83,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:83,the value of plot_cost is         : 16.987981652699965 

 At row:62, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:62, column:84,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:84,the value of plot_cost is         : 16.851076019003845 

 At row:62, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:62, column:85,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:85,the value of plot_cost is         : 16.71497844571024 

 At row:62, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:62, column:86,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:86,the value of plot_cost is         : 16.579688932819153 

 At row:62, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:62, column:87,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:87,the value of plot_cost is         : 16.44520748033058 

 At row:62, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:62, column:88,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:88,the value of plot_cost is         : 16.31153408824452 

 At row:62, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:62, column:89,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:89,the value of plot_cost is         : 16.17866875656098 

 At row:62, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:62, column:90,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:90,the value of plot_cost is         : 16.04661148527995 

 At row:62, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:62, column:91,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:91,the value of plot_cost is         : 15.915362274401437 

 At row:62, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:62, column:92,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:92,the value of plot_cost is         : 15.784921123925438 

 At row:62, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:62, column:93,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:93,the value of plot_cost is         : 15.655288033851956 

 At row:62, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:62, column:94,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:94,the value of plot_cost is         : 15.52646300418099 

 At row:62, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:62, column:95,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:95,the value of plot_cost is         : 15.398446034912533 

 At row:62, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:62, column:96,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:96,the value of plot_cost is         : 15.271237126046596 

 At row:62, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:62, column:97,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:97,the value of plot_cost is         : 15.144836277583174 

 At row:62, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:62, column:98,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:98,the value of plot_cost is         : 15.019243489522268 

 At row:62, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:62, column:99,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:99,the value of plot_cost is         : 14.894458761863875 

 At row:62, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:62, column:100,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:100,the value of plot_cost is         : 14.770482094608 

 At row:62, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:62, column:101,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:101,the value of plot_cost is         : 14.647313487754635 

 At row:62, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:62, column:102,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:102,the value of plot_cost is         : 14.524952941303788 

 At row:62, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:62, column:103,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:103,the value of plot_cost is         : 14.403400455255454 

 At row:62, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:62, column:104,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:104,the value of plot_cost is         : 14.282656029609637 

 At row:62, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:62, column:105,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:105,the value of plot_cost is         : 14.162719664366339 

 At row:62, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:62, column:106,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:106,the value of plot_cost is         : 14.04359135952555 

 At row:62, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:62, column:107,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:107,the value of plot_cost is         : 13.925271115087277 

 At row:62, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:62, column:108,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:108,the value of plot_cost is         : 13.80775893105152 

 At row:62, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:62, column:109,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:109,the value of plot_cost is         : 13.69105480741828 

 At row:62, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:62, column:110,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:110,the value of plot_cost is         : 13.575158744187553 

 At row:62, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:62, column:111,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:111,the value of plot_cost is         : 13.460070741359342 

 At row:62, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:62, column:112,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:112,the value of plot_cost is         : 13.345790798933644 

 At row:62, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:62, column:113,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:113,the value of plot_cost is         : 13.232318916910463 

 At row:62, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:62, column:114,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:114,the value of plot_cost is         : 13.1196550952898 

 At row:62, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:62, column:115,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:115,the value of plot_cost is         : 13.007799334071645 

 At row:62, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:62, column:116,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:116,the value of plot_cost is         : 12.896751633256011 

 At row:62, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:62, column:117,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:117,the value of plot_cost is         : 12.78651199284289 

 At row:62, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:62, column:118,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:118,the value of plot_cost is         : 12.677080412832286 

 At row:62, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:62, column:119,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:119,the value of plot_cost is         : 12.568456893224196 

 At row:62, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:62, column:120,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:120,the value of plot_cost is         : 12.460641434018617 

 At row:62, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:62, column:121,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:121,the value of plot_cost is         : 12.353634035215556 

 At row:62, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:62, column:122,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:122,the value of plot_cost is         : 12.247434696815013 

 At row:62, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:62, column:123,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:123,the value of plot_cost is         : 12.142043418816982 

 At row:62, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:62, column:124,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:124,the value of plot_cost is         : 12.037460201221467 

 At row:62, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:62, column:125,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:125,the value of plot_cost is         : 11.933685044028467 

 At row:62, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:62, column:126,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:126,the value of plot_cost is         : 11.83071794723798 

 At row:62, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:62, column:127,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:127,the value of plot_cost is         : 11.728558910850012 

 At row:62, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:62, column:128,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:128,the value of plot_cost is         : 11.627207934864558 

 At row:62, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:62, column:129,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:129,the value of plot_cost is         : 11.526665019281616 

 At row:62, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:62, column:130,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:130,the value of plot_cost is         : 11.426930164101192 

 At row:62, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:62, column:131,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:131,the value of plot_cost is         : 11.328003369323284 

 At row:62, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:62, column:132,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:132,the value of plot_cost is         : 11.229884634947888 

 At row:62, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:62, column:133,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:133,the value of plot_cost is         : 11.132573960975009 

 At row:62, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:62, column:134,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:134,the value of plot_cost is         : 11.036071347404645 

 At row:62, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:62, column:135,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:135,the value of plot_cost is         : 10.940376794236792 

 At row:62, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:62, column:136,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:136,the value of plot_cost is         : 10.845490301471461 

 At row:62, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:62, column:137,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:137,the value of plot_cost is         : 10.751411869108642 

 At row:62, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:62, column:138,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:138,the value of plot_cost is         : 10.658141497148337 

 At row:62, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:62, column:139,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:139,the value of plot_cost is         : 10.565679185590549 

 At row:62, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:62, column:140,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:140,the value of plot_cost is         : 10.474024934435272 

 At row:62, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:62, column:141,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:141,the value of plot_cost is         : 10.383178743682516 

 At row:62, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:62, column:142,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:142,the value of plot_cost is         : 10.293140613332273 

 At row:62, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:62, column:143,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:143,the value of plot_cost is         : 10.203910543384543 

 At row:62, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:62, column:144,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:144,the value of plot_cost is         : 10.115488533839331 

 At row:62, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:62, column:145,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:145,the value of plot_cost is         : 10.027874584696633 

 At row:62, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:62, column:146,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:146,the value of plot_cost is         : 9.94106869595645 

 At row:62, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:62, column:147,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:147,the value of plot_cost is         : 9.85507086761878 

 At row:62, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:62, column:148,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:148,the value of plot_cost is         : 9.769881099683628 

 At row:62, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:62, column:149,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:149,the value of plot_cost is         : 9.68549939215099 

 At row:62, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:62, column:150,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:150,the value of plot_cost is         : 9.601925745020866 

 At row:62, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:62, column:151,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:151,the value of plot_cost is         : 9.519160158293255 

 At row:62, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:62, column:152,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:152,the value of plot_cost is         : 9.437202631968166 

 At row:62, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:62, column:153,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:153,the value of plot_cost is         : 9.356053166045589 

 At row:62, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:62, column:154,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:154,the value of plot_cost is         : 9.275711760525526 

 At row:62, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:62, column:155,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:155,the value of plot_cost is         : 9.196178415407976 

 At row:62, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:62, column:156,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:156,the value of plot_cost is         : 9.117453130692944 

 At row:62, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:62, column:157,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:157,the value of plot_cost is         : 9.039535906380427 

 At row:62, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:62, column:158,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:158,the value of plot_cost is         : 8.962426742470427 

 At row:62, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:62, column:159,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:159,the value of plot_cost is         : 8.88612563896294 

 At row:62, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:62, column:160,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:160,the value of plot_cost is         : 8.810632595857967 

 At row:62, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:62, column:161,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:161,the value of plot_cost is         : 8.735947613155508 

 At row:62, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:62, column:162,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:162,the value of plot_cost is         : 8.662070690855566 

 At row:62, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:62, column:163,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:163,the value of plot_cost is         : 8.589001828958141 

 At row:62, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:62, column:164,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:164,the value of plot_cost is         : 8.51674102746323 

 At row:62, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:62, column:165,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:165,the value of plot_cost is         : 8.445288286370833 

 At row:62, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:62, column:166,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:166,the value of plot_cost is         : 8.37464360568095 

 At row:62, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:62, column:167,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:167,the value of plot_cost is         : 8.304806985393585 

 At row:62, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:62, column:168,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:168,the value of plot_cost is         : 8.235778425508732 

 At row:62, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:62, column:169,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:169,the value of plot_cost is         : 8.167557926026397 

 At row:62, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:62, column:170,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:170,the value of plot_cost is         : 8.100145486946575 

 At row:62, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:62, column:171,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:171,the value of plot_cost is         : 8.033541108269269 

 At row:62, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:62, column:172,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:172,the value of plot_cost is         : 7.967744789994479 

 At row:62, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:62, column:173,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:173,the value of plot_cost is         : 7.902756532122202 

 At row:62, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:62, column:174,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:174,the value of plot_cost is         : 7.8385763346524415 

 At row:62, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:62, column:175,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:175,the value of plot_cost is         : 7.775204197585197 

 At row:62, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:62, column:176,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:176,the value of plot_cost is         : 7.712640120920464 

 At row:62, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:62, column:177,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:177,the value of plot_cost is         : 7.65088410465825 

 At row:62, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:62, column:178,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:178,the value of plot_cost is         : 7.589936148798548 

 At row:62, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:62, column:179,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:179,the value of plot_cost is         : 7.529796253341364 

 At row:62, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:62, column:180,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:180,the value of plot_cost is         : 7.470464418286693 

 At row:62, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:62, column:181,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:181,the value of plot_cost is         : 7.411940643634537 

 At row:62, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:62, column:182,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:182,the value of plot_cost is         : 7.354224929384898 

 At row:62, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:62, column:183,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:183,the value of plot_cost is         : 7.2973172755377735 

 At row:62, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:62, column:184,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:184,the value of plot_cost is         : 7.241217682093165 

 At row:62, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:62, column:185,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:185,the value of plot_cost is         : 7.185926149051068 

 At row:62, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:62, column:186,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:186,the value of plot_cost is         : 7.131442676411488 

 At row:62, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:62, column:187,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:187,the value of plot_cost is         : 7.077767264174423 

 At row:62, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:62, column:188,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:188,the value of plot_cost is         : 7.024899912339873 

 At row:62, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:62, column:189,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:189,the value of plot_cost is         : 6.9728406209078395 

 At row:62, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:62, column:190,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:190,the value of plot_cost is         : 6.921589389878321 

 At row:62, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:62, column:191,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:191,the value of plot_cost is         : 6.871146219251315 

 At row:62, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:62, column:192,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:192,the value of plot_cost is         : 6.821511109026827 

 At row:62, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:62, column:193,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:193,the value of plot_cost is         : 6.7726840592048525 

 At row:62, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:62, column:194,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:194,the value of plot_cost is         : 6.724665069785393 

 At row:62, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:62, column:195,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:195,the value of plot_cost is         : 6.6774541407684485 

 At row:62, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:62, column:196,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:196,the value of plot_cost is         : 6.63105127215402 

 At row:62, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:62, column:197,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:197,the value of plot_cost is         : 6.585456463942106 

 At row:62, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:62, column:198,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:198,the value of plot_cost is         : 6.540669716132708 

 At row:62, column:199,the value of plot_t0 is           : 3.0
 At row:62, column:199,the value of plot_t1 is           : 0.24623115577889454
 At row:62, column:199,the value of plot_cost is         : 6.496691028725825 

 At row:63, column:0,the value of plot_t0 is           : -1.0
 At row:63, column:0,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:0,the value of plot_cost is         : 30.316904515398242 

 At row:63, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:63, column:1,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:1,the value of plot_cost is         : 30.115608011341706 

 At row:63, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:63, column:2,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:2,the value of plot_cost is         : 29.915119567687686 

 At row:63, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:63, column:3,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:3,the value of plot_cost is         : 29.715439184436182 

 At row:63, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:63, column:4,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:4,the value of plot_cost is         : 29.516566861587183 

 At row:63, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:63, column:5,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:5,the value of plot_cost is         : 29.318502599140714 

 At row:63, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:63, column:6,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:6,the value of plot_cost is         : 29.121246397096755 

 At row:63, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:63, column:7,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:7,the value of plot_cost is         : 28.92479825545531 

 At row:63, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:63, column:8,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:8,the value of plot_cost is         : 28.72915817421638 

 At row:63, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:63, column:9,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:9,the value of plot_cost is         : 28.534326153379965 

 At row:63, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:63, column:10,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:10,the value of plot_cost is         : 28.340302192946062 

 At row:63, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:63, column:11,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:11,the value of plot_cost is         : 28.147086292914683 

 At row:63, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:63, column:12,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:12,the value of plot_cost is         : 27.95467845328581 

 At row:63, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:63, column:13,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:13,the value of plot_cost is         : 27.763078674059457 

 At row:63, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:63, column:14,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:14,the value of plot_cost is         : 27.572286955235615 

 At row:63, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:63, column:15,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:15,the value of plot_cost is         : 27.382303296814296 

 At row:63, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:63, column:16,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:16,the value of plot_cost is         : 27.193127698795486 

 At row:63, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:63, column:17,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:17,the value of plot_cost is         : 27.00476016117919 

 At row:63, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:63, column:18,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:18,the value of plot_cost is         : 26.817200683965414 

 At row:63, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:63, column:19,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:19,the value of plot_cost is         : 26.630449267154148 

 At row:63, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:63, column:20,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:20,the value of plot_cost is         : 26.4445059107454 

 At row:63, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:63, column:21,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:21,the value of plot_cost is         : 26.25937061473917 

 At row:63, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:63, column:22,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:22,the value of plot_cost is         : 26.075043379135444 

 At row:63, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:63, column:23,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:23,the value of plot_cost is         : 25.891524203934246 

 At row:63, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:63, column:24,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:24,the value of plot_cost is         : 25.708813089135564 

 At row:63, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:63, column:25,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:25,the value of plot_cost is         : 25.52691003473938 

 At row:63, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:63, column:26,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:26,the value of plot_cost is         : 25.345815040745727 

 At row:63, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:63, column:27,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:27,the value of plot_cost is         : 25.16552810715458 

 At row:63, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:63, column:28,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:28,the value of plot_cost is         : 24.986049233965957 

 At row:63, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:63, column:29,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:29,the value of plot_cost is         : 24.807378421179838 

 At row:63, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:63, column:30,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:30,the value of plot_cost is         : 24.629515668796245 

 At row:63, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:63, column:31,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:31,the value of plot_cost is         : 24.452460976815164 

 At row:63, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:63, column:32,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:32,the value of plot_cost is         : 24.276214345236593 

 At row:63, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:63, column:33,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:33,the value of plot_cost is         : 24.100775774060544 

 At row:63, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:63, column:34,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:34,the value of plot_cost is         : 23.926145263287005 

 At row:63, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:63, column:35,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:35,the value of plot_cost is         : 23.752322812915978 

 At row:63, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:63, column:36,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:36,the value of plot_cost is         : 23.57930842294747 

 At row:63, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:63, column:37,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:37,the value of plot_cost is         : 23.40710209338148 

 At row:63, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:63, column:38,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:38,the value of plot_cost is         : 23.235703824218007 

 At row:63, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:63, column:39,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:39,the value of plot_cost is         : 23.065113615457037 

 At row:63, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:63, column:40,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:40,the value of plot_cost is         : 22.895331467098593 

 At row:63, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:63, column:41,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:41,the value of plot_cost is         : 22.726357379142662 

 At row:63, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:63, column:42,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:42,the value of plot_cost is         : 22.558191351589247 

 At row:63, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:63, column:43,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:43,the value of plot_cost is         : 22.39083338443835 

 At row:63, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:63, column:44,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:44,the value of plot_cost is         : 22.224283477689955 

 At row:63, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:63, column:45,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:45,the value of plot_cost is         : 22.058541631344085 

 At row:63, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:63, column:46,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:46,the value of plot_cost is         : 21.893607845400734 

 At row:63, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:63, column:47,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:47,the value of plot_cost is         : 21.729482119859888 

 At row:63, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:63, column:48,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:48,the value of plot_cost is         : 21.566164454721562 

 At row:63, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:63, column:49,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:49,the value of plot_cost is         : 21.40365484998575 

 At row:63, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:63, column:50,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:50,the value of plot_cost is         : 21.241953305652455 

 At row:63, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:63, column:51,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:51,the value of plot_cost is         : 21.08105982172167 

 At row:63, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:63, column:52,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:52,the value of plot_cost is         : 20.920974398193408 

 At row:63, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:63, column:53,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:53,the value of plot_cost is         : 20.761697035067655 

 At row:63, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:63, column:54,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:54,the value of plot_cost is         : 20.603227732344422 

 At row:63, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:63, column:55,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:55,the value of plot_cost is         : 20.445566490023705 

 At row:63, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:63, column:56,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:56,the value of plot_cost is         : 20.288713308105496 

 At row:63, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:63, column:57,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:57,the value of plot_cost is         : 20.132668186589804 

 At row:63, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:63, column:58,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:58,the value of plot_cost is         : 19.977431125476627 

 At row:63, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:63, column:59,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:59,the value of plot_cost is         : 19.82300212476597 

 At row:63, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:63, column:60,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:60,the value of plot_cost is         : 19.669381184457823 

 At row:63, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:63, column:61,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:61,the value of plot_cost is         : 19.51656830455219 

 At row:63, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:63, column:62,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:62,the value of plot_cost is         : 19.36456348504908 

 At row:63, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:63, column:63,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:63,the value of plot_cost is         : 19.21336672594848 

 At row:63, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:63, column:64,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:64,the value of plot_cost is         : 19.062978027250395 

 At row:63, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:63, column:65,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:65,the value of plot_cost is         : 18.913397388954824 

 At row:63, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:63, column:66,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:66,the value of plot_cost is         : 18.764624811061772 

 At row:63, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:63, column:67,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:67,the value of plot_cost is         : 18.61666029357123 

 At row:63, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:63, column:68,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:68,the value of plot_cost is         : 18.469503836483206 

 At row:63, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:63, column:69,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:69,the value of plot_cost is         : 18.323155439797695 

 At row:63, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:63, column:70,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:70,the value of plot_cost is         : 18.1776151035147 

 At row:63, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:63, column:71,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:71,the value of plot_cost is         : 18.032882827634225 

 At row:63, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:63, column:72,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:72,the value of plot_cost is         : 17.88895861215626 

 At row:63, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:63, column:73,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:73,the value of plot_cost is         : 17.745842457080812 

 At row:63, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:63, column:74,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:74,the value of plot_cost is         : 17.603534362407874 

 At row:63, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:63, column:75,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:75,the value of plot_cost is         : 17.462034328137452 

 At row:63, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:63, column:76,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:76,the value of plot_cost is         : 17.321342354269554 

 At row:63, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:63, column:77,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:77,the value of plot_cost is         : 17.181458440804168 

 At row:63, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:63, column:78,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:78,the value of plot_cost is         : 17.04238258774129 

 At row:63, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:63, column:79,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:79,the value of plot_cost is         : 16.904114795080933 

 At row:63, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:63, column:80,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:80,the value of plot_cost is         : 16.766655062823087 

 At row:63, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:63, column:81,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:81,the value of plot_cost is         : 16.63000339096776 

 At row:63, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:63, column:82,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:82,the value of plot_cost is         : 16.49415977951495 

 At row:63, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:63, column:83,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:83,the value of plot_cost is         : 16.359124228464648 

 At row:63, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:63, column:84,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:84,the value of plot_cost is         : 16.224896737816866 

 At row:63, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:63, column:85,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:85,the value of plot_cost is         : 16.091477307571598 

 At row:63, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:63, column:86,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:86,the value of plot_cost is         : 15.958865937728849 

 At row:63, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:63, column:87,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:87,the value of plot_cost is         : 15.827062628288607 

 At row:63, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:63, column:88,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:88,the value of plot_cost is         : 15.696067379250884 

 At row:63, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:63, column:89,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:89,the value of plot_cost is         : 15.565880190615676 

 At row:63, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:63, column:90,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:90,the value of plot_cost is         : 15.436501062382987 

 At row:63, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:63, column:91,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:91,the value of plot_cost is         : 15.30792999455281 

 At row:63, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:63, column:92,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:92,the value of plot_cost is         : 15.180166987125144 

 At row:63, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:63, column:93,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:93,the value of plot_cost is         : 15.053212040099996 

 At row:63, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:63, column:94,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:94,the value of plot_cost is         : 14.927065153477367 

 At row:63, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:63, column:95,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:95,the value of plot_cost is         : 14.80172632725725 

 At row:63, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:63, column:96,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:96,the value of plot_cost is         : 14.67719556143965 

 At row:63, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:63, column:97,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:97,the value of plot_cost is         : 14.55347285602456 

 At row:63, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:63, column:98,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:98,the value of plot_cost is         : 14.430558211011986 

 At row:63, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:63, column:99,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:99,the value of plot_cost is         : 14.308451626401933 

 At row:63, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:63, column:100,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:100,the value of plot_cost is         : 14.18715310219439 

 At row:63, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:63, column:101,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:101,the value of plot_cost is         : 14.066662638389365 

 At row:63, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:63, column:102,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:102,the value of plot_cost is         : 13.946980234986853 

 At row:63, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:63, column:103,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:103,the value of plot_cost is         : 13.828105891986853 

 At row:63, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:63, column:104,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:104,the value of plot_cost is         : 13.710039609389371 

 At row:63, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:63, column:105,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:105,the value of plot_cost is         : 13.592781387194409 

 At row:63, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:63, column:106,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:106,the value of plot_cost is         : 13.476331225401958 

 At row:63, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:63, column:107,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:107,the value of plot_cost is         : 13.360689124012021 

 At row:63, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:63, column:108,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:108,the value of plot_cost is         : 13.245855083024598 

 At row:63, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:63, column:109,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:109,the value of plot_cost is         : 13.13182910243969 

 At row:63, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:63, column:110,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:110,the value of plot_cost is         : 13.018611182257303 

 At row:63, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:63, column:111,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:111,the value of plot_cost is         : 12.906201322477429 

 At row:63, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:63, column:112,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:112,the value of plot_cost is         : 12.794599523100068 

 At row:63, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:63, column:113,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:113,the value of plot_cost is         : 12.68380578412522 

 At row:63, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:63, column:114,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:114,the value of plot_cost is         : 12.573820105552889 

 At row:63, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:63, column:115,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:115,the value of plot_cost is         : 12.464642487383076 

 At row:63, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:63, column:116,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:116,the value of plot_cost is         : 12.356272929615777 

 At row:63, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:63, column:117,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:117,the value of plot_cost is         : 12.24871143225099 

 At row:63, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:63, column:118,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:118,the value of plot_cost is         : 12.141957995288717 

 At row:63, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:63, column:119,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:119,the value of plot_cost is         : 12.036012618728964 

 At row:63, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:63, column:120,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:120,the value of plot_cost is         : 11.930875302571726 

 At row:63, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:63, column:121,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:121,the value of plot_cost is         : 11.826546046817002 

 At row:63, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:63, column:122,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:122,the value of plot_cost is         : 11.72302485146479 

 At row:63, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:63, column:123,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:123,the value of plot_cost is         : 11.620311716515094 

 At row:63, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:63, column:124,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:124,the value of plot_cost is         : 11.518406641967916 

 At row:63, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:63, column:125,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:125,the value of plot_cost is         : 11.41730962782325 

 At row:63, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:63, column:126,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:126,the value of plot_cost is         : 11.317020674081105 

 At row:63, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:63, column:127,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:127,the value of plot_cost is         : 11.217539780741468 

 At row:63, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:63, column:128,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:128,the value of plot_cost is         : 11.11886694780435 

 At row:63, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:63, column:129,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:129,the value of plot_cost is         : 11.021002175269745 

 At row:63, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:63, column:130,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:130,the value of plot_cost is         : 10.923945463137656 

 At row:63, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:63, column:131,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:131,the value of plot_cost is         : 10.827696811408082 

 At row:63, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:63, column:132,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:132,the value of plot_cost is         : 10.732256220081025 

 At row:63, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:63, column:133,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:133,the value of plot_cost is         : 10.637623689156477 

 At row:63, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:63, column:134,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:134,the value of plot_cost is         : 10.54379921863445 

 At row:63, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:63, column:135,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:135,the value of plot_cost is         : 10.450782808514937 

 At row:63, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:63, column:136,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:136,the value of plot_cost is         : 10.35857445879794 

 At row:63, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:63, column:137,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:137,the value of plot_cost is         : 10.267174169483456 

 At row:63, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:63, column:138,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:138,the value of plot_cost is         : 10.176581940571486 

 At row:63, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:63, column:139,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:139,the value of plot_cost is         : 10.086797772062033 

 At row:63, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:63, column:140,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:140,the value of plot_cost is         : 9.997821663955095 

 At row:63, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:63, column:141,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:141,the value of plot_cost is         : 9.909653616250672 

 At row:63, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:63, column:142,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:142,the value of plot_cost is         : 9.822293628948765 

 At row:63, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:63, column:143,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:143,the value of plot_cost is         : 9.73574170204937 

 At row:63, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:63, column:144,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:144,the value of plot_cost is         : 9.649997835552492 

 At row:63, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:63, column:145,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:145,the value of plot_cost is         : 9.565062029458131 

 At row:63, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:63, column:146,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:146,the value of plot_cost is         : 9.480934283766283 

 At row:63, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:63, column:147,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:147,the value of plot_cost is         : 9.397614598476952 

 At row:63, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:63, column:148,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:148,the value of plot_cost is         : 9.315102973590134 

 At row:63, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:63, column:149,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:149,the value of plot_cost is         : 9.23339940910583 

 At row:63, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:63, column:150,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:150,the value of plot_cost is         : 9.152503905024043 

 At row:63, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:63, column:151,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:151,the value of plot_cost is         : 9.07241646134477 

 At row:63, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:63, column:152,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:152,the value of plot_cost is         : 8.993137078068017 

 At row:63, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:63, column:153,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:153,the value of plot_cost is         : 8.914665755193772 

 At row:63, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:63, column:154,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:154,the value of plot_cost is         : 8.837002492722045 

 At row:63, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:63, column:155,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:155,the value of plot_cost is         : 8.760147290652833 

 At row:63, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:63, column:156,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:156,the value of plot_cost is         : 8.684100148986138 

 At row:63, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:63, column:157,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:157,the value of plot_cost is         : 8.608861067721957 

 At row:63, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:63, column:158,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:158,the value of plot_cost is         : 8.534430046860287 

 At row:63, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:63, column:159,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:159,the value of plot_cost is         : 8.460807086401138 

 At row:63, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:63, column:160,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:160,the value of plot_cost is         : 8.387992186344503 

 At row:63, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:63, column:161,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:161,the value of plot_cost is         : 8.31598534669038 

 At row:63, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:63, column:162,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:162,the value of plot_cost is         : 8.244786567438775 

 At row:63, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:63, column:163,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:163,the value of plot_cost is         : 8.174395848589683 

 At row:63, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:63, column:164,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:164,the value of plot_cost is         : 8.104813190143105 

 At row:63, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:63, column:165,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:165,the value of plot_cost is         : 8.036038592099047 

 At row:63, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:63, column:166,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:166,the value of plot_cost is         : 7.968072054457499 

 At row:63, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:63, column:167,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:167,the value of plot_cost is         : 7.90091357721847 

 At row:63, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:63, column:168,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:168,the value of plot_cost is         : 7.834563160381952 

 At row:63, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:63, column:169,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:169,the value of plot_cost is         : 7.769020803947953 

 At row:63, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:63, column:170,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:170,the value of plot_cost is         : 7.704286507916468 

 At row:63, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:63, column:171,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:171,the value of plot_cost is         : 7.640360272287497 

 At row:63, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:63, column:172,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:172,the value of plot_cost is         : 7.577242097061043 

 At row:63, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:63, column:173,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:173,the value of plot_cost is         : 7.514931982237101 

 At row:63, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:63, column:174,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:174,the value of plot_cost is         : 7.453429927815677 

 At row:63, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:63, column:175,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:175,the value of plot_cost is         : 7.392735933796766 

 At row:63, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:63, column:176,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:176,the value of plot_cost is         : 7.332850000180372 

 At row:63, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:63, column:177,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:177,the value of plot_cost is         : 7.273772126966493 

 At row:63, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:63, column:178,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:178,the value of plot_cost is         : 7.215502314155127 

 At row:63, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:63, column:179,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:179,the value of plot_cost is         : 7.158040561746277 

 At row:63, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:63, column:180,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:180,the value of plot_cost is         : 7.101386869739943 

 At row:63, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:63, column:181,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:181,the value of plot_cost is         : 7.045541238136122 

 At row:63, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:63, column:182,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:182,the value of plot_cost is         : 6.990503666934821 

 At row:63, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:63, column:183,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:183,the value of plot_cost is         : 6.9362741561360295 

 At row:63, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:63, column:184,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:184,the value of plot_cost is         : 6.882852705739754 

 At row:63, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:63, column:185,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:185,the value of plot_cost is         : 6.830239315745995 

 At row:63, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:63, column:186,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:186,the value of plot_cost is         : 6.778433986154752 

 At row:63, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:63, column:187,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:187,the value of plot_cost is         : 6.7274367169660225 

 At row:63, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:63, column:188,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:188,the value of plot_cost is         : 6.677247508179808 

 At row:63, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:63, column:189,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:189,the value of plot_cost is         : 6.6278663597961085 

 At row:63, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:63, column:190,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:190,the value of plot_cost is         : 6.579293271814926 

 At row:63, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:63, column:191,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:191,the value of plot_cost is         : 6.531528244236258 

 At row:63, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:63, column:192,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:192,the value of plot_cost is         : 6.484571277060105 

 At row:63, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:63, column:193,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:193,the value of plot_cost is         : 6.438422370286465 

 At row:63, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:63, column:194,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:194,the value of plot_cost is         : 6.393081523915342 

 At row:63, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:63, column:195,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:195,the value of plot_cost is         : 6.348548737946733 

 At row:63, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:63, column:196,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:196,the value of plot_cost is         : 6.3048240123806405 

 At row:63, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:63, column:197,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:197,the value of plot_cost is         : 6.261907347217061 

 At row:63, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:63, column:198,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:198,the value of plot_cost is         : 6.219798742456 

 At row:63, column:199,the value of plot_t0 is           : 3.0
 At row:63, column:199,the value of plot_t1 is           : 0.2663316582914572
 At row:63, column:199,the value of plot_cost is         : 6.178498198097451 

 At row:64, column:0,the value of plot_t0 is           : -1.0
 At row:64, column:0,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:0,the value of plot_cost is         : 29.478343872990212 

 At row:64, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:64, column:1,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:1,the value of plot_cost is         : 29.279725511982015 

 At row:64, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:64, column:2,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:2,the value of plot_cost is         : 29.081915211376334 

 At row:64, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:64, column:3,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:3,the value of plot_cost is         : 28.884912971173165 

 At row:64, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:64, column:4,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:4,the value of plot_cost is         : 28.688718791372512 

 At row:64, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:64, column:5,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:5,the value of plot_cost is         : 28.493332671974365 

 At row:64, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:64, column:6,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:6,the value of plot_cost is         : 28.298754612978744 

 At row:64, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:64, column:7,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:7,the value of plot_cost is         : 28.104984614385636 

 At row:64, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:64, column:8,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:8,the value of plot_cost is         : 27.912022676195043 

 At row:64, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:64, column:9,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:9,the value of plot_cost is         : 27.719868798406964 

 At row:64, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:64, column:10,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:10,the value of plot_cost is         : 27.528522981021396 

 At row:64, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:64, column:11,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:11,the value of plot_cost is         : 27.337985224038345 

 At row:64, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:64, column:12,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:12,the value of plot_cost is         : 27.148255527457813 

 At row:64, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:64, column:13,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:13,the value of plot_cost is         : 26.959333891279798 

 At row:64, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:64, column:14,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:14,the value of plot_cost is         : 26.771220315504298 

 At row:64, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:64, column:15,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:15,the value of plot_cost is         : 26.583914800131303 

 At row:64, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:64, column:16,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:16,the value of plot_cost is         : 26.397417345160832 

 At row:64, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:64, column:17,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:17,the value of plot_cost is         : 26.211727950592874 

 At row:64, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:64, column:18,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:18,the value of plot_cost is         : 26.026846616427434 

 At row:64, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:64, column:19,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:19,the value of plot_cost is         : 25.8427733426645 

 At row:64, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:64, column:20,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:20,the value of plot_cost is         : 25.65950812930409 

 At row:64, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:64, column:21,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:21,the value of plot_cost is         : 25.47705097634619 

 At row:64, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:64, column:22,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:22,the value of plot_cost is         : 25.29540188379081 

 At row:64, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:64, column:23,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:23,the value of plot_cost is         : 25.11456085163794 

 At row:64, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:64, column:24,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:24,the value of plot_cost is         : 24.934527879887593 

 At row:64, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:64, column:25,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:25,the value of plot_cost is         : 24.755302968539752 

 At row:64, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:64, column:26,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:26,the value of plot_cost is         : 24.576886117594427 

 At row:64, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:64, column:27,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:27,the value of plot_cost is         : 24.39927732705162 

 At row:64, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:64, column:28,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:28,the value of plot_cost is         : 24.22247659691133 

 At row:64, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:64, column:29,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:29,the value of plot_cost is         : 24.04648392717355 

 At row:64, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:64, column:30,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:30,the value of plot_cost is         : 23.871299317838286 

 At row:64, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:64, column:31,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:31,the value of plot_cost is         : 23.69692276890554 

 At row:64, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:64, column:32,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:32,the value of plot_cost is         : 23.523354280375315 

 At row:64, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:64, column:33,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:33,the value of plot_cost is         : 23.350593852247595 

 At row:64, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:64, column:34,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:34,the value of plot_cost is         : 23.178641484522398 

 At row:64, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:64, column:35,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:35,the value of plot_cost is         : 23.007497177199703 

 At row:64, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:64, column:36,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:36,the value of plot_cost is         : 22.837160930279534 

 At row:64, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:64, column:37,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:37,the value of plot_cost is         : 22.667632743761875 

 At row:64, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:64, column:38,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:38,the value of plot_cost is         : 22.498912617646738 

 At row:64, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:64, column:39,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:39,the value of plot_cost is         : 22.33100055193411 

 At row:64, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:64, column:40,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:40,the value of plot_cost is         : 22.163896546624 

 At row:64, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:64, column:41,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:41,the value of plot_cost is         : 21.9976006017164 

 At row:64, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:64, column:42,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:42,the value of plot_cost is         : 21.832112717211324 

 At row:64, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:64, column:43,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:43,the value of plot_cost is         : 21.667432893108757 

 At row:64, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:64, column:44,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:44,the value of plot_cost is         : 21.503561129408705 

 At row:64, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:64, column:45,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:45,the value of plot_cost is         : 21.34049742611117 

 At row:64, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:64, column:46,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:46,the value of plot_cost is         : 21.17824178321615 

 At row:64, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:64, column:47,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:47,the value of plot_cost is         : 21.016794200723645 

 At row:64, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:64, column:48,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:48,the value of plot_cost is         : 20.856154678633654 

 At row:64, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:64, column:49,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:49,the value of plot_cost is         : 20.69632321694618 

 At row:64, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:64, column:50,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:50,the value of plot_cost is         : 20.537299815661218 

 At row:64, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:64, column:51,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:51,the value of plot_cost is         : 20.379084474778768 

 At row:64, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:64, column:52,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:52,the value of plot_cost is         : 20.221677194298845 

 At row:64, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:64, column:53,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:53,the value of plot_cost is         : 20.065077974221428 

 At row:64, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:64, column:54,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:54,the value of plot_cost is         : 19.90928681454653 

 At row:64, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:64, column:55,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:55,the value of plot_cost is         : 19.754303715274137 

 At row:64, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:64, column:56,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:56,the value of plot_cost is         : 19.60012867640427 

 At row:64, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:64, column:57,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:57,the value of plot_cost is         : 19.446761697936918 

 At row:64, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:64, column:58,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:58,the value of plot_cost is         : 19.29420277987208 

 At row:64, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:64, column:59,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:59,the value of plot_cost is         : 19.142451922209755 

 At row:64, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:64, column:60,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:60,the value of plot_cost is         : 18.991509124949943 

 At row:64, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:64, column:61,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:61,the value of plot_cost is         : 18.84137438809265 

 At row:64, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:64, column:62,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:62,the value of plot_cost is         : 18.69204771163787 

 At row:64, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:64, column:63,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:63,the value of plot_cost is         : 18.543529095585605 

 At row:64, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:64, column:64,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:64,the value of plot_cost is         : 18.395818539935856 

 At row:64, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:64, column:65,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:65,the value of plot_cost is         : 18.24891604468862 

 At row:64, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:64, column:66,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:66,the value of plot_cost is         : 18.102821609843904 

 At row:64, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:64, column:67,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:67,the value of plot_cost is         : 17.957535235401703 

 At row:64, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:64, column:68,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:68,the value of plot_cost is         : 17.813056921362012 

 At row:64, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:64, column:69,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:69,the value of plot_cost is         : 17.66938666772484 

 At row:64, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:64, column:70,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:70,the value of plot_cost is         : 17.526524474490177 

 At row:64, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:64, column:71,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:71,the value of plot_cost is         : 17.384470341658034 

 At row:64, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:64, column:72,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:72,the value of plot_cost is         : 17.243224269228406 

 At row:64, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:64, column:73,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:73,the value of plot_cost is         : 17.1027862572013 

 At row:64, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:64, column:74,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:74,the value of plot_cost is         : 16.963156305576696 

 At row:64, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:64, column:75,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:75,the value of plot_cost is         : 16.824334414354613 

 At row:64, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:64, column:76,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:76,the value of plot_cost is         : 16.686320583535046 

 At row:64, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:64, column:77,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:77,the value of plot_cost is         : 16.549114813117992 

 At row:64, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:64, column:78,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:78,the value of plot_cost is         : 16.412717103103454 

 At row:64, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:64, column:79,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:79,the value of plot_cost is         : 16.27712745349143 

 At row:64, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:64, column:80,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:80,the value of plot_cost is         : 16.14234586428192 

 At row:64, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:64, column:81,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:81,the value of plot_cost is         : 16.00837233547493 

 At row:64, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:64, column:82,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:82,the value of plot_cost is         : 15.875206867070455 

 At row:64, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:64, column:83,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:83,the value of plot_cost is         : 15.74284945906849 

 At row:64, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:64, column:84,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:84,the value of plot_cost is         : 15.611300111469046 

 At row:64, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:64, column:85,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:85,the value of plot_cost is         : 15.48055882427211 

 At row:64, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:64, column:86,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:86,the value of plot_cost is         : 15.350625597477695 

 At row:64, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:64, column:87,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:87,the value of plot_cost is         : 15.221500431085794 

 At row:64, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:64, column:88,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:88,the value of plot_cost is         : 15.093183325096405 

 At row:64, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:64, column:89,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:89,the value of plot_cost is         : 14.965674279509535 

 At row:64, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:64, column:90,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:90,the value of plot_cost is         : 14.838973294325175 

 At row:64, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:64, column:91,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:91,the value of plot_cost is         : 14.713080369543336 

 At row:64, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:64, column:92,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:92,the value of plot_cost is         : 14.58799550516401 

 At row:64, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:64, column:93,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:93,the value of plot_cost is         : 14.463718701187197 

 At row:64, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:64, column:94,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:94,the value of plot_cost is         : 14.340249957612901 

 At row:64, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:64, column:95,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:95,the value of plot_cost is         : 14.217589274441117 

 At row:64, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:64, column:96,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:96,the value of plot_cost is         : 14.095736651671853 

 At row:64, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:64, column:97,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:97,the value of plot_cost is         : 13.974692089305103 

 At row:64, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:64, column:98,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:98,the value of plot_cost is         : 13.854455587340865 

 At row:64, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:64, column:99,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:99,the value of plot_cost is         : 13.735027145779146 

 At row:64, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:64, column:100,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:100,the value of plot_cost is         : 13.616406764619938 

 At row:64, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:64, column:101,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:101,the value of plot_cost is         : 13.498594443863249 

 At row:64, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:64, column:102,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:102,the value of plot_cost is         : 13.381590183509076 

 At row:64, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:64, column:103,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:103,the value of plot_cost is         : 13.265393983557411 

 At row:64, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:64, column:104,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:104,the value of plot_cost is         : 13.150005844008266 

 At row:64, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:64, column:105,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:105,the value of plot_cost is         : 13.035425764861635 

 At row:64, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:64, column:106,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:106,the value of plot_cost is         : 12.921653746117519 

 At row:64, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:64, column:107,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:107,the value of plot_cost is         : 12.80868978777592 

 At row:64, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:64, column:108,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:108,the value of plot_cost is         : 12.696533889836834 

 At row:64, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:64, column:109,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:109,the value of plot_cost is         : 12.585186052300262 

 At row:64, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:64, column:110,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:110,the value of plot_cost is         : 12.474646275166208 

 At row:64, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:64, column:111,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:111,the value of plot_cost is         : 12.36491455843467 

 At row:64, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:64, column:112,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:112,the value of plot_cost is         : 12.255990902105644 

 At row:64, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:64, column:113,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:113,the value of plot_cost is         : 12.147875306179134 

 At row:64, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:64, column:114,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:114,the value of plot_cost is         : 12.040567770655139 

 At row:64, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:64, column:115,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:115,the value of plot_cost is         : 11.93406829553366 

 At row:64, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:64, column:116,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:116,the value of plot_cost is         : 11.828376880814695 

 At row:64, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:64, column:117,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:117,the value of plot_cost is         : 11.723493526498247 

 At row:64, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:64, column:118,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:118,the value of plot_cost is         : 11.619418232584312 

 At row:64, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:64, column:119,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:119,the value of plot_cost is         : 11.516150999072892 

 At row:64, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:64, column:120,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:120,the value of plot_cost is         : 11.413691825963987 

 At row:64, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:64, column:121,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:121,the value of plot_cost is         : 11.312040713257602 

 At row:64, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:64, column:122,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:122,the value of plot_cost is         : 11.211197660953728 

 At row:64, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:64, column:123,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:123,the value of plot_cost is         : 11.111162669052366 

 At row:64, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:64, column:124,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:124,the value of plot_cost is         : 11.011935737553522 

 At row:64, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:64, column:125,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:125,the value of plot_cost is         : 10.913516866457192 

 At row:64, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:64, column:126,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:126,the value of plot_cost is         : 10.815906055763381 

 At row:64, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:64, column:127,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:127,the value of plot_cost is         : 10.719103305472082 

 At row:64, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:64, column:128,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:128,the value of plot_cost is         : 10.623108615583298 

 At row:64, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:64, column:129,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:129,the value of plot_cost is         : 10.527921986097029 

 At row:64, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:64, column:130,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:130,the value of plot_cost is         : 10.433543417013274 

 At row:64, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:64, column:131,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:131,the value of plot_cost is         : 10.339972908332038 

 At row:64, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:64, column:132,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:132,the value of plot_cost is         : 10.247210460053317 

 At row:64, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:64, column:133,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:133,the value of plot_cost is         : 10.155256072177108 

 At row:64, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:64, column:134,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:134,the value of plot_cost is         : 10.064109744703416 

 At row:64, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:64, column:135,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:135,the value of plot_cost is         : 9.973771477632235 

 At row:64, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:64, column:136,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:136,the value of plot_cost is         : 9.884241270963575 

 At row:64, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:64, column:137,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:137,the value of plot_cost is         : 9.795519124697428 

 At row:64, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:64, column:138,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:138,the value of plot_cost is         : 9.707605038833792 

 At row:64, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:64, column:139,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:139,the value of plot_cost is         : 9.620499013372678 

 At row:64, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:64, column:140,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:140,the value of plot_cost is         : 9.534201048314074 

 At row:64, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:64, column:141,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:141,the value of plot_cost is         : 9.448711143657988 

 At row:64, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:64, column:142,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:142,the value of plot_cost is         : 9.364029299404415 

 At row:64, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:64, column:143,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:143,the value of plot_cost is         : 9.280155515553355 

 At row:64, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:64, column:144,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:144,the value of plot_cost is         : 9.197089792104814 

 At row:64, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:64, column:145,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:145,the value of plot_cost is         : 9.114832129058787 

 At row:64, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:64, column:146,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:146,the value of plot_cost is         : 9.033382526415277 

 At row:64, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:64, column:147,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:147,the value of plot_cost is         : 8.952740984174282 

 At row:64, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:64, column:148,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:148,the value of plot_cost is         : 8.872907502335798 

 At row:64, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:64, column:149,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:149,the value of plot_cost is         : 8.793882080899829 

 At row:64, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:64, column:150,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:150,the value of plot_cost is         : 8.71566471986638 

 At row:64, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:64, column:151,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:151,the value of plot_cost is         : 8.638255419235442 

 At row:64, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:64, column:152,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:152,the value of plot_cost is         : 8.561654179007023 

 At row:64, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:64, column:153,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:153,the value of plot_cost is         : 8.485860999181115 

 At row:64, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:64, column:154,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:154,the value of plot_cost is         : 8.410875879757723 

 At row:64, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:64, column:155,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:155,the value of plot_cost is         : 8.336698820736848 

 At row:64, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:64, column:156,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:156,the value of plot_cost is         : 8.263329822118486 

 At row:64, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:64, column:157,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:157,the value of plot_cost is         : 8.190768883902642 

 At row:64, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:64, column:158,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:158,the value of plot_cost is         : 8.11901600608931 

 At row:64, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:64, column:159,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:159,the value of plot_cost is         : 8.048071188678495 

 At row:64, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:64, column:160,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:160,the value of plot_cost is         : 7.977934431670194 

 At row:64, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:64, column:161,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:161,the value of plot_cost is         : 7.908605735064408 

 At row:64, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:64, column:162,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:162,the value of plot_cost is         : 7.84008509886114 

 At row:64, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:64, column:163,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:163,the value of plot_cost is         : 7.772372523060383 

 At row:64, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:64, column:164,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:164,the value of plot_cost is         : 7.705468007662143 

 At row:64, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:64, column:165,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:165,the value of plot_cost is         : 7.639371552666418 

 At row:64, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:64, column:166,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:166,the value of plot_cost is         : 7.574083158073208 

 At row:64, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:64, column:167,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:167,the value of plot_cost is         : 7.509602823882513 

 At row:64, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:64, column:168,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:168,the value of plot_cost is         : 7.445930550094333 

 At row:64, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:64, column:169,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:169,the value of plot_cost is         : 7.3830663367086675 

 At row:64, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:64, column:170,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:170,the value of plot_cost is         : 7.321010183725517 

 At row:64, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:64, column:171,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:171,the value of plot_cost is         : 7.259762091144883 

 At row:64, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:64, column:172,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:172,the value of plot_cost is         : 7.199322058966765 

 At row:64, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:64, column:173,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:173,the value of plot_cost is         : 7.139690087191159 

 At row:64, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:64, column:174,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:174,the value of plot_cost is         : 7.080866175818069 

 At row:64, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:64, column:175,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:175,the value of plot_cost is         : 7.022850324847494 

 At row:64, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:64, column:176,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:176,the value of plot_cost is         : 6.965642534279437 

 At row:64, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:64, column:177,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:177,the value of plot_cost is         : 6.909242804113893 

 At row:64, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:64, column:178,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:178,the value of plot_cost is         : 6.853651134350863 

 At row:64, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:64, column:179,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:179,the value of plot_cost is         : 6.798867524990349 

 At row:64, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:64, column:180,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:180,the value of plot_cost is         : 6.744891976032351 

 At row:64, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:64, column:181,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:181,the value of plot_cost is         : 6.691724487476867 

 At row:64, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:64, column:182,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:182,the value of plot_cost is         : 6.639365059323898 

 At row:64, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:64, column:183,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:183,the value of plot_cost is         : 6.587813691573444 

 At row:64, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:64, column:184,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:184,the value of plot_cost is         : 6.537070384225505 

 At row:64, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:64, column:185,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:185,the value of plot_cost is         : 6.487135137280081 

 At row:64, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:64, column:186,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:186,the value of plot_cost is         : 6.438007950737174 

 At row:64, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:64, column:187,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:187,the value of plot_cost is         : 6.389688824596782 

 At row:64, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:64, column:188,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:188,the value of plot_cost is         : 6.342177758858903 

 At row:64, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:64, column:189,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:189,the value of plot_cost is         : 6.295474753523539 

 At row:64, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:64, column:190,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:190,the value of plot_cost is         : 6.249579808590691 

 At row:64, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:64, column:191,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:191,the value of plot_cost is         : 6.204492924060358 

 At row:64, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:64, column:192,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:192,the value of plot_cost is         : 6.160214099932541 

 At row:64, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:64, column:193,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:193,the value of plot_cost is         : 6.116743336207238 

 At row:64, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:64, column:194,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:194,the value of plot_cost is         : 6.074080632884449 

 At row:64, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:64, column:195,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:195,the value of plot_cost is         : 6.032225989964177 

 At row:64, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:64, column:196,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:196,the value of plot_cost is         : 5.9911794074464195 

 At row:64, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:64, column:197,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:197,the value of plot_cost is         : 5.9509408853311765 

 At row:64, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:64, column:198,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:198,the value of plot_cost is         : 5.9115104236184495 

 At row:64, column:199,the value of plot_t0 is           : 3.0
 At row:64, column:199,the value of plot_t1 is           : 0.2864321608040201
 At row:64, column:199,the value of plot_cost is         : 5.872888022308237 

 At row:65, column:0,the value of plot_t0 is           : -1.0
 At row:65, column:0,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:0,the value of plot_cost is         : 28.652365885421357 

 At row:65, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:65, column:1,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:1,the value of plot_cost is         : 28.45642566746149 

 At row:65, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:65, column:2,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:2,the value of plot_cost is         : 28.261293509904142 

 At row:65, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:65, column:3,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:3,the value of plot_cost is         : 28.06696941274931 

 At row:65, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:65, column:4,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:4,the value of plot_cost is         : 27.87345337599699 

 At row:65, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:65, column:5,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:5,the value of plot_cost is         : 27.680745399647193 

 At row:65, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:65, column:6,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:6,the value of plot_cost is         : 27.4888454836999 

 At row:65, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:65, column:7,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:7,the value of plot_cost is         : 27.297753628155125 

 At row:65, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:65, column:8,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:8,the value of plot_cost is         : 27.107469833012868 

 At row:65, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:65, column:9,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:9,the value of plot_cost is         : 26.917994098273123 

 At row:65, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:65, column:10,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:10,the value of plot_cost is         : 26.729326423935895 

 At row:65, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:65, column:11,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:11,the value of plot_cost is         : 26.541466810001182 

 At row:65, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:65, column:12,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:12,the value of plot_cost is         : 26.354415256468982 

 At row:65, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:65, column:13,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:13,the value of plot_cost is         : 26.168171763339306 

 At row:65, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:65, column:14,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:14,the value of plot_cost is         : 25.982736330612134 

 At row:65, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:65, column:15,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:15,the value of plot_cost is         : 25.79810895828749 

 At row:65, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:65, column:16,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:16,the value of plot_cost is         : 25.614289646365346 

 At row:65, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:65, column:17,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:17,the value of plot_cost is         : 25.43127839484572 

 At row:65, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:65, column:18,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:18,the value of plot_cost is         : 25.249075203728616 

 At row:65, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:65, column:19,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:19,the value of plot_cost is         : 25.067680073014024 

 At row:65, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:65, column:20,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:20,the value of plot_cost is         : 24.887093002701942 

 At row:65, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:65, column:21,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:21,the value of plot_cost is         : 24.70731399279238 

 At row:65, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:65, column:22,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:22,the value of plot_cost is         : 24.528343043285336 

 At row:65, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:65, column:23,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:23,the value of plot_cost is         : 24.35018015418081 

 At row:65, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:65, column:24,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:24,the value of plot_cost is         : 24.17282532547879 

 At row:65, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:65, column:25,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:25,the value of plot_cost is         : 23.996278557179288 

 At row:65, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:65, column:26,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:26,the value of plot_cost is         : 23.820539849282298 

 At row:65, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:65, column:27,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:27,the value of plot_cost is         : 23.645609201787824 

 At row:65, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:65, column:28,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:28,the value of plot_cost is         : 23.47148661469587 

 At row:65, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:65, column:29,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:29,the value of plot_cost is         : 23.29817208800643 

 At row:65, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:65, column:30,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:30,the value of plot_cost is         : 23.125665621719502 

 At row:65, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:65, column:31,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:31,the value of plot_cost is         : 22.953967215835092 

 At row:65, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:65, column:32,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:32,the value of plot_cost is         : 22.783076870353195 

 At row:65, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:65, column:33,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:33,the value of plot_cost is         : 22.612994585273814 

 At row:65, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:65, column:34,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:34,the value of plot_cost is         : 22.443720360596952 

 At row:65, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:65, column:35,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:35,the value of plot_cost is         : 22.275254196322603 

 At row:65, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:65, column:36,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:36,the value of plot_cost is         : 22.107596092450763 

 At row:65, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:65, column:37,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:37,the value of plot_cost is         : 21.940746048981442 

 At row:65, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:65, column:38,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:38,the value of plot_cost is         : 21.774704065914637 

 At row:65, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:65, column:39,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:39,the value of plot_cost is         : 21.609470143250345 

 At row:65, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:65, column:40,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:40,the value of plot_cost is         : 21.44504428098857 

 At row:65, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:65, column:41,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:41,the value of plot_cost is         : 21.281426479129305 

 At row:65, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:65, column:42,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:42,the value of plot_cost is         : 21.118616737672564 

 At row:65, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:65, column:43,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:43,the value of plot_cost is         : 20.956615056618332 

 At row:65, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:65, column:44,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:44,the value of plot_cost is         : 20.795421435966617 

 At row:65, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:65, column:45,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:45,the value of plot_cost is         : 20.63503587571742 

 At row:65, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:65, column:46,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:46,the value of plot_cost is         : 20.47545837587073 

 At row:65, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:65, column:47,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:47,the value of plot_cost is         : 20.31668893642656 

 At row:65, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:65, column:48,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:48,the value of plot_cost is         : 20.15872755738491 

 At row:65, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:65, column:49,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:49,the value of plot_cost is         : 20.001574238745764 

 At row:65, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:65, column:50,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:50,the value of plot_cost is         : 19.845228980509148 

 At row:65, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:65, column:51,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:51,the value of plot_cost is         : 19.689691782675034 

 At row:65, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:65, column:52,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:52,the value of plot_cost is         : 19.534962645243443 

 At row:65, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:65, column:53,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:53,the value of plot_cost is         : 19.381041568214364 

 At row:65, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:65, column:54,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:54,the value of plot_cost is         : 19.227928551587794 

 At row:65, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:65, column:55,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:55,the value of plot_cost is         : 19.075623595363748 

 At row:65, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:65, column:56,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:56,the value of plot_cost is         : 18.92412669954221 

 At row:65, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:65, column:57,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:57,the value of plot_cost is         : 18.773437864123192 

 At row:65, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:65, column:58,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:58,the value of plot_cost is         : 18.623557089106693 

 At row:65, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:65, column:59,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:59,the value of plot_cost is         : 18.474484374492704 

 At row:65, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:65, column:60,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:60,the value of plot_cost is         : 18.326219720281227 

 At row:65, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:65, column:61,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:61,the value of plot_cost is         : 18.17876312647227 

 At row:65, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:65, column:62,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:62,the value of plot_cost is         : 18.032114593065824 

 At row:65, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:65, column:63,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:63,the value of plot_cost is         : 17.8862741200619 

 At row:65, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:65, column:64,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:64,the value of plot_cost is         : 17.741241707460485 

 At row:65, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:65, column:65,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:65,the value of plot_cost is         : 17.597017355261585 

 At row:65, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:65, column:66,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:66,the value of plot_cost is         : 17.4536010634652 

 At row:65, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:65, column:67,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:67,the value of plot_cost is         : 17.310992832071335 

 At row:65, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:65, column:68,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:68,the value of plot_cost is         : 17.169192661079983 

 At row:65, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:65, column:69,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:69,the value of plot_cost is         : 17.028200550491142 

 At row:65, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:65, column:70,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:70,the value of plot_cost is         : 16.88801650030482 

 At row:65, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:65, column:71,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:71,the value of plot_cost is         : 16.748640510521014 

 At row:65, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:65, column:72,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:72,the value of plot_cost is         : 16.610072581139722 

 At row:65, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:65, column:73,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:73,the value of plot_cost is         : 16.472312712160946 

 At row:65, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:65, column:74,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:74,the value of plot_cost is         : 16.33536090358468 

 At row:65, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:65, column:75,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:75,the value of plot_cost is         : 16.199217155410935 

 At row:65, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:65, column:76,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:76,the value of plot_cost is         : 16.0638814676397 

 At row:65, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:65, column:77,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:77,the value of plot_cost is         : 15.929353840270984 

 At row:65, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:65, column:78,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:78,the value of plot_cost is         : 15.795634273304781 

 At row:65, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:65, column:79,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:79,the value of plot_cost is         : 15.662722766741092 

 At row:65, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:65, column:80,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:80,the value of plot_cost is         : 15.530619320579923 

 At row:65, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:65, column:81,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:81,the value of plot_cost is         : 15.399323934821263 

 At row:65, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:65, column:82,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:82,the value of plot_cost is         : 15.268836609465126 

 At row:65, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:65, column:83,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:83,the value of plot_cost is         : 15.139157344511498 

 At row:65, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:65, column:84,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:84,the value of plot_cost is         : 15.010286139960385 

 At row:65, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:65, column:85,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:85,the value of plot_cost is         : 14.88222299581179 

 At row:65, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:65, column:86,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:86,the value of plot_cost is         : 14.754967912065705 

 At row:65, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:65, column:87,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:87,the value of plot_cost is         : 14.628520888722141 

 At row:65, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:65, column:88,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:88,the value of plot_cost is         : 14.50288192578109 

 At row:65, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:65, column:89,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:89,the value of plot_cost is         : 14.378051023242554 

 At row:65, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:65, column:90,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:90,the value of plot_cost is         : 14.254028181106534 

 At row:65, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:65, column:91,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:91,the value of plot_cost is         : 14.130813399373027 

 At row:65, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:65, column:92,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:92,the value of plot_cost is         : 14.008406678042036 

 At row:65, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:65, column:93,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:93,the value of plot_cost is         : 13.886808017113559 

 At row:65, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:65, column:94,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:94,the value of plot_cost is         : 13.766017416587598 

 At row:65, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:65, column:95,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:95,the value of plot_cost is         : 13.646034876464153 

 At row:65, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:65, column:96,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:96,the value of plot_cost is         : 13.526860396743224 

 At row:65, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:65, column:97,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:97,the value of plot_cost is         : 13.408493977424806 

 At row:65, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:65, column:98,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:98,the value of plot_cost is         : 13.290935618508907 

 At row:65, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:65, column:99,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:99,the value of plot_cost is         : 13.174185319995521 

 At row:65, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:65, column:100,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:100,the value of plot_cost is         : 13.058243081884655 

 At row:65, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:65, column:101,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:101,the value of plot_cost is         : 12.943108904176299 

 At row:65, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:65, column:102,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:102,the value of plot_cost is         : 12.828782786870455 

 At row:65, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:65, column:103,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:103,the value of plot_cost is         : 12.715264729967133 

 At row:65, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:65, column:104,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:104,the value of plot_cost is         : 12.602554733466322 

 At row:65, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:65, column:105,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:105,the value of plot_cost is         : 12.490652797368028 

 At row:65, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:65, column:106,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:106,the value of plot_cost is         : 12.379558921672247 

 At row:65, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:65, column:107,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:107,the value of plot_cost is         : 12.269273106378982 

 At row:65, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:65, column:108,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:108,the value of plot_cost is         : 12.159795351488235 

 At row:65, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:65, column:109,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:109,the value of plot_cost is         : 12.051125657 

 At row:65, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:65, column:110,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:110,the value of plot_cost is         : 11.94326402291428 

 At row:65, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:65, column:111,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:111,the value of plot_cost is         : 11.836210449231077 

 At row:65, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:65, column:112,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:112,the value of plot_cost is         : 11.729964935950385 

 At row:65, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:65, column:113,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:113,the value of plot_cost is         : 11.624527483072214 

 At row:65, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:65, column:114,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:114,the value of plot_cost is         : 11.519898090596552 

 At row:65, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:65, column:115,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:115,the value of plot_cost is         : 11.416076758523408 

 At row:65, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:65, column:116,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:116,the value of plot_cost is         : 11.313063486852782 

 At row:65, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:65, column:117,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:117,the value of plot_cost is         : 11.210858275584668 

 At row:65, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:65, column:118,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:118,the value of plot_cost is         : 11.109461124719068 

 At row:65, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:65, column:119,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:119,the value of plot_cost is         : 11.008872034255985 

 At row:65, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:65, column:120,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:120,the value of plot_cost is         : 10.909091004195416 

 At row:65, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:65, column:121,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:121,the value of plot_cost is         : 10.810118034537362 

 At row:65, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:65, column:122,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:122,the value of plot_cost is         : 10.711953125281825 

 At row:65, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:65, column:123,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:123,the value of plot_cost is         : 10.614596276428804 

 At row:65, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:65, column:124,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:124,the value of plot_cost is         : 10.518047487978295 

 At row:65, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:65, column:125,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:125,the value of plot_cost is         : 10.422306759930299 

 At row:65, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:65, column:126,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:126,the value of plot_cost is         : 10.327374092284822 

 At row:65, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:65, column:127,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:127,the value of plot_cost is         : 10.23324948504186 

 At row:65, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:65, column:128,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:128,the value of plot_cost is         : 10.139932938201413 

 At row:65, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:65, column:129,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:129,the value of plot_cost is         : 10.04742445176348 

 At row:65, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:65, column:130,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:130,the value of plot_cost is         : 9.955724025728061 

 At row:65, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:65, column:131,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:131,the value of plot_cost is         : 9.864831660095161 

 At row:65, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:65, column:132,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:132,the value of plot_cost is         : 9.774747354864774 

 At row:65, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:65, column:133,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:133,the value of plot_cost is         : 9.6854711100369 

 At row:65, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:65, column:134,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:134,the value of plot_cost is         : 9.597002925611543 

 At row:65, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:65, column:135,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:135,the value of plot_cost is         : 9.5093428015887 

 At row:65, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:65, column:136,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:136,the value of plot_cost is         : 9.422490737968374 

 At row:65, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:65, column:137,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:137,the value of plot_cost is         : 9.336446734750561 

 At row:65, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:65, column:138,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:138,the value of plot_cost is         : 9.251210791935266 

 At row:65, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:65, column:139,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:139,the value of plot_cost is         : 9.166782909522484 

 At row:65, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:65, column:140,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:140,the value of plot_cost is         : 9.083163087512217 

 At row:65, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:65, column:141,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:141,the value of plot_cost is         : 9.000351325904465 

 At row:65, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:65, column:142,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:142,the value of plot_cost is         : 8.918347624699228 

 At row:65, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:65, column:143,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:143,the value of plot_cost is         : 8.837151983896508 

 At row:65, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:65, column:144,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:144,the value of plot_cost is         : 8.7567644034963 

 At row:65, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:65, column:145,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:145,the value of plot_cost is         : 8.677184883498606 

 At row:65, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:65, column:146,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:146,the value of plot_cost is         : 8.598413423903432 

 At row:65, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:65, column:147,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:147,the value of plot_cost is         : 8.520450024710772 

 At row:65, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:65, column:148,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:148,the value of plot_cost is         : 8.443294685920627 

 At row:65, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:65, column:149,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:149,the value of plot_cost is         : 8.366947407532995 

 At row:65, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:65, column:150,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:150,the value of plot_cost is         : 8.291408189547878 

 At row:65, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:65, column:151,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:151,the value of plot_cost is         : 8.216677031965277 

 At row:65, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:65, column:152,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:152,the value of plot_cost is         : 8.142753934785194 

 At row:65, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:65, column:153,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:153,the value of plot_cost is         : 8.069638898007623 

 At row:65, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:65, column:154,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:154,the value of plot_cost is         : 7.997331921632568 

 At row:65, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:65, column:155,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:155,the value of plot_cost is         : 7.925833005660026 

 At row:65, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:65, column:156,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:156,the value of plot_cost is         : 7.855142150090001 

 At row:65, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:65, column:157,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:157,the value of plot_cost is         : 7.785259354922491 

 At row:65, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:65, column:158,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:158,the value of plot_cost is         : 7.716184620157497 

 At row:65, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:65, column:159,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:159,the value of plot_cost is         : 7.647917945795017 

 At row:65, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:65, column:160,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:160,the value of plot_cost is         : 7.5804593318350495 

 At row:65, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:65, column:161,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:161,the value of plot_cost is         : 7.513808778277601 

 At row:65, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:65, column:162,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:162,the value of plot_cost is         : 7.447966285122668 

 At row:65, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:65, column:163,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:163,the value of plot_cost is         : 7.382931852370248 

 At row:65, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:65, column:164,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:164,the value of plot_cost is         : 7.318705480020343 

 At row:65, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:65, column:165,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:165,the value of plot_cost is         : 7.255287168072951 

 At row:65, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:65, column:166,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:166,the value of plot_cost is         : 7.192676916528077 

 At row:65, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:65, column:167,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:167,the value of plot_cost is         : 7.13087472538572 

 At row:65, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:65, column:168,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:168,the value of plot_cost is         : 7.069880594645876 

 At row:65, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:65, column:169,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:169,the value of plot_cost is         : 7.0096945243085464 

 At row:65, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:65, column:170,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:170,the value of plot_cost is         : 6.950316514373732 

 At row:65, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:65, column:171,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:171,the value of plot_cost is         : 6.891746564841432 

 At row:65, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:65, column:172,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:172,the value of plot_cost is         : 6.83398467571165 

 At row:65, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:65, column:173,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:173,the value of plot_cost is         : 6.777030846984382 

 At row:65, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:65, column:174,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:174,the value of plot_cost is         : 6.720885078659627 

 At row:65, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:65, column:175,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:175,the value of plot_cost is         : 6.665547370737388 

 At row:65, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:65, column:176,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:176,the value of plot_cost is         : 6.611017723217665 

 At row:65, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:65, column:177,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:177,the value of plot_cost is         : 6.557296136100456 

 At row:65, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:65, column:178,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:178,the value of plot_cost is         : 6.504382609385765 

 At row:65, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:65, column:179,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:179,the value of plot_cost is         : 6.452277143073585 

 At row:65, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:65, column:180,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:180,the value of plot_cost is         : 6.4009797371639205 

 At row:65, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:65, column:181,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:181,the value of plot_cost is         : 6.3504903916567725 

 At row:65, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:65, column:182,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:182,the value of plot_cost is         : 6.3008091065521405 

 At row:65, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:65, column:183,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:183,the value of plot_cost is         : 6.251935881850024 

 At row:65, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:65, column:184,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:184,the value of plot_cost is         : 6.20387071755042 

 At row:65, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:65, column:185,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:185,the value of plot_cost is         : 6.156613613653332 

 At row:65, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:65, column:186,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:186,the value of plot_cost is         : 6.1101645701587595 

 At row:65, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:65, column:187,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:187,the value of plot_cost is         : 6.064523587066702 

 At row:65, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:65, column:188,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:188,the value of plot_cost is         : 6.019690664377161 

 At row:65, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:65, column:189,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:189,the value of plot_cost is         : 5.975665802090131 

 At row:65, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:65, column:190,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:190,the value of plot_cost is         : 5.932449000205619 

 At row:65, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:65, column:191,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:191,the value of plot_cost is         : 5.890040258723623 

 At row:65, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:65, column:192,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:192,the value of plot_cost is         : 5.8484395776441405 

 At row:65, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:65, column:193,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:193,the value of plot_cost is         : 5.807646956967174 

 At row:65, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:65, column:194,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:194,the value of plot_cost is         : 5.767662396692723 

 At row:65, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:65, column:195,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:195,the value of plot_cost is         : 5.728485896820783 

 At row:65, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:65, column:196,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:196,the value of plot_cost is         : 5.690117457351363 

 At row:65, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:65, column:197,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:197,the value of plot_cost is         : 5.652557078284457 

 At row:65, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:65, column:198,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:198,the value of plot_cost is         : 5.615804759620065 

 At row:65, column:199,the value of plot_t0 is           : 3.0
 At row:65, column:199,the value of plot_t1 is           : 0.306532663316583
 At row:65, column:199,the value of plot_cost is         : 5.57986050135819 

 At row:66, column:0,the value of plot_t0 is           : -1.0
 At row:66, column:0,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:0,the value of plot_cost is         : 27.83897055269167 

 At row:66, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:66, column:1,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:1,the value of plot_cost is         : 27.64570847778014 

 At row:66, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:66, column:2,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:2,the value of plot_cost is         : 27.45325446327113 

 At row:66, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:66, column:3,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:3,the value of plot_cost is         : 27.26160850916463 

 At row:66, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:66, column:4,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:4,the value of plot_cost is         : 27.07077061546065 

 At row:66, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:66, column:5,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:5,the value of plot_cost is         : 26.88074078215918 

 At row:66, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:66, column:6,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:6,the value of plot_cost is         : 26.691519009260226 

 At row:66, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:66, column:7,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:7,the value of plot_cost is         : 26.50310529676379 

 At row:66, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:66, column:8,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:8,the value of plot_cost is         : 26.31549964466987 

 At row:66, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:66, column:9,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:9,the value of plot_cost is         : 26.128702052978458 

 At row:66, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:66, column:10,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:10,the value of plot_cost is         : 25.942712521689565 

 At row:66, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:66, column:11,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:11,the value of plot_cost is         : 25.75753105080319 

 At row:66, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:66, column:12,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:12,the value of plot_cost is         : 25.573157640319327 

 At row:66, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:66, column:13,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:13,the value of plot_cost is         : 25.38959229023798 

 At row:66, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:66, column:14,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:14,the value of plot_cost is         : 25.206835000559145 

 At row:66, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:66, column:15,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:15,the value of plot_cost is         : 25.024885771282825 

 At row:66, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:66, column:16,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:16,the value of plot_cost is         : 24.843744602409025 

 At row:66, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:66, column:17,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:17,the value of plot_cost is         : 24.66341149393774 

 At row:66, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:66, column:18,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:18,the value of plot_cost is         : 24.483886445868972 

 At row:66, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:66, column:19,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:19,the value of plot_cost is         : 24.305169458202712 

 At row:66, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:66, column:20,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:20,the value of plot_cost is         : 24.127260530938976 

 At row:66, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:66, column:21,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:21,the value of plot_cost is         : 23.95015966407775 

 At row:66, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:66, column:22,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:22,the value of plot_cost is         : 23.773866857619037 

 At row:66, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:66, column:23,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:23,the value of plot_cost is         : 23.59838211156284 

 At row:66, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:66, column:24,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:24,the value of plot_cost is         : 23.423705425909155 

 At row:66, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:66, column:25,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:25,the value of plot_cost is         : 23.249836800657988 

 At row:66, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:66, column:26,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:26,the value of plot_cost is         : 23.07677623580934 

 At row:66, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:66, column:27,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:27,the value of plot_cost is         : 22.904523731363202 

 At row:66, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:66, column:28,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:28,the value of plot_cost is         : 22.733079287319587 

 At row:66, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:66, column:29,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:29,the value of plot_cost is         : 22.562442903678484 

 At row:66, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:66, column:30,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:30,the value of plot_cost is         : 22.392614580439886 

 At row:66, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:66, column:31,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:31,the value of plot_cost is         : 22.223594317603816 

 At row:66, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:66, column:32,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:32,the value of plot_cost is         : 22.05538211517025 

 At row:66, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:66, column:33,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:33,the value of plot_cost is         : 21.88797797313921 

 At row:66, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:66, column:34,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:34,the value of plot_cost is         : 21.721381891510678 

 At row:66, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:66, column:35,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:35,the value of plot_cost is         : 21.555593870284657 

 At row:66, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:66, column:36,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:36,the value of plot_cost is         : 21.390613909461155 

 At row:66, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:66, column:37,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:37,the value of plot_cost is         : 21.226442009040174 

 At row:66, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:66, column:38,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:38,the value of plot_cost is         : 21.063078169021708 

 At row:66, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:66, column:39,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:39,the value of plot_cost is         : 20.90052238940575 

 At row:66, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:66, column:40,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:40,the value of plot_cost is         : 20.73877467019231 

 At row:66, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:66, column:41,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:41,the value of plot_cost is         : 20.577835011381385 

 At row:66, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:66, column:42,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:42,the value of plot_cost is         : 20.417703412972976 

 At row:66, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:66, column:43,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:43,the value of plot_cost is         : 20.25837987496708 

 At row:66, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:66, column:44,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:44,the value of plot_cost is         : 20.0998643973637 

 At row:66, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:66, column:45,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:45,the value of plot_cost is         : 19.94215698016284 

 At row:66, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:66, column:46,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:46,the value of plot_cost is         : 19.78525762336449 

 At row:66, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:66, column:47,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:47,the value of plot_cost is         : 19.629166326968654 

 At row:66, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:66, column:48,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:48,the value of plot_cost is         : 19.473883090975338 

 At row:66, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:66, column:49,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:49,the value of plot_cost is         : 19.31940791538453 

 At row:66, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:66, column:50,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:50,the value of plot_cost is         : 19.165740800196243 

 At row:66, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:66, column:51,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:51,the value of plot_cost is         : 19.012881745410468 

 At row:66, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:66, column:52,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:52,the value of plot_cost is         : 18.86083075102721 

 At row:66, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:66, column:53,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:53,the value of plot_cost is         : 18.70958781704647 

 At row:66, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:66, column:54,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:54,the value of plot_cost is         : 18.559152943468238 

 At row:66, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:66, column:55,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:55,the value of plot_cost is         : 18.409526130292523 

 At row:66, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:66, column:56,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:56,the value of plot_cost is         : 18.260707377519324 

 At row:66, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:66, column:57,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:57,the value of plot_cost is         : 18.112696685148645 

 At row:66, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:66, column:58,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:58,the value of plot_cost is         : 17.965494053180475 

 At row:66, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:66, column:59,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:59,the value of plot_cost is         : 17.81909948161482 

 At row:66, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:66, column:60,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:60,the value of plot_cost is         : 17.673512970451682 

 At row:66, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:66, column:61,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:61,the value of plot_cost is         : 17.52873451969106 

 At row:66, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:66, column:62,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:62,the value of plot_cost is         : 17.384764129332954 

 At row:66, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:66, column:63,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:63,the value of plot_cost is         : 17.24160179937736 

 At row:66, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:66, column:64,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:64,the value of plot_cost is         : 17.099247529824282 

 At row:66, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:66, column:65,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:65,the value of plot_cost is         : 16.95770132067372 

 At row:66, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:66, column:66,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:66,the value of plot_cost is         : 16.816963171925675 

 At row:66, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:66, column:67,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:67,the value of plot_cost is         : 16.677033083580138 

 At row:66, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:66, column:68,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:68,the value of plot_cost is         : 16.537911055637124 

 At row:66, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:66, column:69,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:69,the value of plot_cost is         : 16.39959708809662 

 At row:66, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:66, column:70,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:70,the value of plot_cost is         : 16.262091180958635 

 At row:66, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:66, column:71,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:71,the value of plot_cost is         : 16.125393334223162 

 At row:66, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:66, column:72,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:72,the value of plot_cost is         : 15.989503547890203 

 At row:66, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:66, column:73,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:73,the value of plot_cost is         : 15.854421821959765 

 At row:66, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:66, column:74,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:74,the value of plot_cost is         : 15.720148156431836 

 At row:66, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:66, column:75,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:75,the value of plot_cost is         : 15.586682551306424 

 At row:66, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:66, column:76,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:76,the value of plot_cost is         : 15.454025006583526 

 At row:66, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:66, column:77,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:77,the value of plot_cost is         : 15.322175522263144 

 At row:66, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:66, column:78,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:78,the value of plot_cost is         : 15.191134098345279 

 At row:66, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:66, column:79,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:79,the value of plot_cost is         : 15.06090073482993 

 At row:66, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:66, column:80,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:80,the value of plot_cost is         : 14.931475431717093 

 At row:66, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:66, column:81,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:81,the value of plot_cost is         : 14.802858189006772 

 At row:66, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:66, column:82,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:82,the value of plot_cost is         : 14.675049006698965 

 At row:66, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:66, column:83,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:83,the value of plot_cost is         : 14.548047884793675 

 At row:66, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:66, column:84,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:84,the value of plot_cost is         : 14.421854823290897 

 At row:66, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:66, column:85,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:85,the value of plot_cost is         : 14.296469822190637 

 At row:66, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:66, column:86,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:86,the value of plot_cost is         : 14.17189288149289 

 At row:66, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:66, column:87,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:87,the value of plot_cost is         : 14.04812400119766 

 At row:66, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:66, column:88,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:88,the value of plot_cost is         : 13.925163181304944 

 At row:66, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:66, column:89,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:89,the value of plot_cost is         : 13.803010421814744 

 At row:66, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:66, column:90,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:90,the value of plot_cost is         : 13.681665722727063 

 At row:66, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:66, column:91,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:91,the value of plot_cost is         : 13.56112908404189 

 At row:66, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:66, column:92,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:92,the value of plot_cost is         : 13.441400505759233 

 At row:66, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:66, column:93,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:93,the value of plot_cost is         : 13.322479987879095 

 At row:66, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:66, column:94,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:94,the value of plot_cost is         : 13.20436753040147 

 At row:66, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:66, column:95,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:95,the value of plot_cost is         : 13.087063133326359 

 At row:66, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:66, column:96,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:96,the value of plot_cost is         : 12.970566796653765 

 At row:66, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:66, column:97,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:97,the value of plot_cost is         : 12.854878520383684 

 At row:66, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:66, column:98,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:98,the value of plot_cost is         : 12.73999830451612 

 At row:66, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:66, column:99,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:99,the value of plot_cost is         : 12.62592614905107 

 At row:66, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:66, column:100,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:100,the value of plot_cost is         : 12.512662053988537 

 At row:66, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:66, column:101,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:101,the value of plot_cost is         : 12.400206019328516 

 At row:66, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:66, column:102,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:102,the value of plot_cost is         : 12.28855804507101 

 At row:66, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:66, column:103,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:103,the value of plot_cost is         : 12.177718131216022 

 At row:66, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:66, column:104,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:104,the value of plot_cost is         : 12.067686277763547 

 At row:66, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:66, column:105,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:105,the value of plot_cost is         : 11.95846248471359 

 At row:66, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:66, column:106,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:106,the value of plot_cost is         : 11.850046752066145 

 At row:66, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:66, column:107,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:107,the value of plot_cost is         : 11.742439079821215 

 At row:66, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:66, column:108,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:108,the value of plot_cost is         : 11.635639467978802 

 At row:66, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:66, column:109,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:109,the value of plot_cost is         : 11.529647916538902 

 At row:66, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:66, column:110,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:110,the value of plot_cost is         : 11.424464425501519 

 At row:66, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:66, column:111,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:111,the value of plot_cost is         : 11.320088994866653 

 At row:66, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:66, column:112,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:112,the value of plot_cost is         : 11.216521624634298 

 At row:66, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:66, column:113,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:113,the value of plot_cost is         : 11.113762314804461 

 At row:66, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:66, column:114,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:114,the value of plot_cost is         : 11.011811065377136 

 At row:66, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:66, column:115,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:115,the value of plot_cost is         : 10.910667876352326 

 At row:66, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:66, column:116,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:116,the value of plot_cost is         : 10.810332747730037 

 At row:66, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:66, column:117,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:117,the value of plot_cost is         : 10.710805679510258 

 At row:66, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:66, column:118,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:118,the value of plot_cost is         : 10.612086671692996 

 At row:66, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:66, column:119,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:119,the value of plot_cost is         : 10.514175724278246 

 At row:66, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:66, column:120,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:120,the value of plot_cost is         : 10.417072837266012 

 At row:66, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:66, column:121,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:121,the value of plot_cost is         : 10.320778010656298 

 At row:66, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:66, column:122,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:122,the value of plot_cost is         : 10.225291244449094 

 At row:66, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:66, column:123,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:123,the value of plot_cost is         : 10.130612538644407 

 At row:66, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:66, column:124,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:124,the value of plot_cost is         : 10.036741893242235 

 At row:66, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:66, column:125,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:125,the value of plot_cost is         : 9.943679308242574 

 At row:66, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:66, column:126,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:126,the value of plot_cost is         : 9.851424783645435 

 At row:66, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:66, column:127,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:127,the value of plot_cost is         : 9.759978319450807 

 At row:66, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:66, column:128,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:128,the value of plot_cost is         : 9.669339915658696 

 At row:66, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:66, column:129,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:129,the value of plot_cost is         : 9.579509572269098 

 At row:66, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:66, column:130,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:130,the value of plot_cost is         : 9.490487289282017 

 At row:66, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:66, column:131,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:131,the value of plot_cost is         : 9.40227306669745 

 At row:66, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:66, column:132,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:132,the value of plot_cost is         : 9.314866904515398 

 At row:66, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:66, column:133,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:133,the value of plot_cost is         : 9.228268802735862 

 At row:66, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:66, column:134,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:134,the value of plot_cost is         : 9.14247876135884 

 At row:66, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:66, column:135,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:135,the value of plot_cost is         : 9.057496780384332 

 At row:66, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:66, column:136,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:136,the value of plot_cost is         : 8.973322859812344 

 At row:66, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:66, column:137,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:137,the value of plot_cost is         : 8.889956999642866 

 At row:66, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:66, column:138,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:138,the value of plot_cost is         : 8.807399199875906 

 At row:66, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:66, column:139,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:139,the value of plot_cost is         : 8.725649460511459 

 At row:66, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:66, column:140,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:140,the value of plot_cost is         : 8.644707781549528 

 At row:66, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:66, column:141,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:141,the value of plot_cost is         : 8.564574162990112 

 At row:66, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:66, column:142,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:142,the value of plot_cost is         : 8.485248604833211 

 At row:66, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:66, column:143,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:143,the value of plot_cost is         : 8.406731107078826 

 At row:66, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:66, column:144,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:144,the value of plot_cost is         : 8.329021669726956 

 At row:66, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:66, column:145,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:145,the value of plot_cost is         : 8.252120292777597 

 At row:66, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:66, column:146,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:146,the value of plot_cost is         : 8.17602697623076 

 At row:66, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:66, column:147,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:147,the value of plot_cost is         : 8.100741720086434 

 At row:66, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:66, column:148,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:148,the value of plot_cost is         : 8.026264524344624 

 At row:66, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:66, column:149,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:149,the value of plot_cost is         : 7.952595389005328 

 At row:66, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:66, column:150,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:150,the value of plot_cost is         : 7.879734314068546 

 At row:66, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:66, column:151,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:151,the value of plot_cost is         : 7.807681299534282 

 At row:66, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:66, column:152,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:152,the value of plot_cost is         : 7.7364363454025336 

 At row:66, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:66, column:153,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:153,the value of plot_cost is         : 7.665999451673298 

 At row:66, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:66, column:154,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:154,the value of plot_cost is         : 7.596370618346579 

 At row:66, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:66, column:155,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:155,the value of plot_cost is         : 7.527549845422373 

 At row:66, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:66, column:156,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:156,the value of plot_cost is         : 7.459537132900683 

 At row:66, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:66, column:157,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:157,the value of plot_cost is         : 7.39233248078151 

 At row:66, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:66, column:158,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:158,the value of plot_cost is         : 7.325935889064851 

 At row:66, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:66, column:159,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:159,the value of plot_cost is         : 7.260347357750707 

 At row:66, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:66, column:160,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:160,the value of plot_cost is         : 7.195566886839077 

 At row:66, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:66, column:161,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:161,the value of plot_cost is         : 7.131594476329962 

 At row:66, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:66, column:162,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:162,the value of plot_cost is         : 7.068430126223364 

 At row:66, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:66, column:163,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:163,the value of plot_cost is         : 7.006073836519279 

 At row:66, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:66, column:164,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:164,the value of plot_cost is         : 6.94452560721771 

 At row:66, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:66, column:165,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:165,the value of plot_cost is         : 6.8837854383186565 

 At row:66, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:66, column:166,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:166,the value of plot_cost is         : 6.823853329822118 

 At row:66, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:66, column:167,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:167,the value of plot_cost is         : 6.764729281728096 

 At row:66, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:66, column:168,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:168,the value of plot_cost is         : 6.7064132940365875 

 At row:66, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:66, column:169,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:169,the value of plot_cost is         : 6.648905366747593 

 At row:66, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:66, column:170,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:170,the value of plot_cost is         : 6.592205499861114 

 At row:66, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:66, column:171,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:171,the value of plot_cost is         : 6.53631369337715 

 At row:66, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:66, column:172,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:172,the value of plot_cost is         : 6.481229947295704 

 At row:66, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:66, column:173,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:173,the value of plot_cost is         : 6.426954261616771 

 At row:66, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:66, column:174,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:174,the value of plot_cost is         : 6.373486636340353 

 At row:66, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:66, column:175,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:175,the value of plot_cost is         : 6.320827071466449 

 At row:66, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:66, column:176,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:176,the value of plot_cost is         : 6.268975566995061 

 At row:66, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:66, column:177,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:177,the value of plot_cost is         : 6.2179321229261895 

 At row:66, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:66, column:178,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:178,the value of plot_cost is         : 6.167696739259831 

 At row:66, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:66, column:179,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:179,the value of plot_cost is         : 6.118269415995988 

 At row:66, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:66, column:180,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:180,the value of plot_cost is         : 6.069650153134661 

 At row:66, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:66, column:181,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:181,the value of plot_cost is         : 6.021838950675848 

 At row:66, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:66, column:182,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:182,the value of plot_cost is         : 5.974835808619552 

 At row:66, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:66, column:183,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:183,the value of plot_cost is         : 5.928640726965769 

 At row:66, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:66, column:184,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:184,the value of plot_cost is         : 5.883253705714503 

 At row:66, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:66, column:185,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:185,the value of plot_cost is         : 5.83867474486575 

 At row:66, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:66, column:186,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:186,the value of plot_cost is         : 5.794903844419513 

 At row:66, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:66, column:187,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:187,the value of plot_cost is         : 5.751941004375792 

 At row:66, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:66, column:188,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:188,the value of plot_cost is         : 5.709786224734586 

 At row:66, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:66, column:189,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:189,the value of plot_cost is         : 5.668439505495893 

 At row:66, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:66, column:190,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:190,the value of plot_cost is         : 5.627900846659716 

 At row:66, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:66, column:191,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:191,the value of plot_cost is         : 5.588170248226056 

 At row:66, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:66, column:192,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:192,the value of plot_cost is         : 5.5492477101949085 

 At row:66, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:66, column:193,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:193,the value of plot_cost is         : 5.511133232566277 

 At row:66, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:66, column:194,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:194,the value of plot_cost is         : 5.4738268153401615 

 At row:66, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:66, column:195,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:195,the value of plot_cost is         : 5.43732845851656 

 At row:66, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:66, column:196,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:196,the value of plot_cost is         : 5.401638162095474 

 At row:66, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:66, column:197,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:197,the value of plot_cost is         : 5.366755926076903 

 At row:66, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:66, column:198,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:198,the value of plot_cost is         : 5.332681750460847 

 At row:66, column:199,the value of plot_t0 is           : 3.0
 At row:66, column:199,the value of plot_t1 is           : 0.3266331658291457
 At row:66, column:199,the value of plot_cost is         : 5.299415635247306 

 At row:67, column:0,the value of plot_t0 is           : -1.0
 At row:67, column:0,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:0,the value of plot_cost is         : 27.038157874801136 

 At row:67, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:67, column:1,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:1,the value of plot_cost is         : 26.847573942937945 

 At row:67, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:67, column:2,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:2,the value of plot_cost is         : 26.657798071477266 

 At row:67, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:67, column:3,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:3,the value of plot_cost is         : 26.468830260419104 

 At row:67, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:67, column:4,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:4,the value of plot_cost is         : 26.280670509763457 

 At row:67, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:67, column:5,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:5,the value of plot_cost is         : 26.093318819510323 

 At row:67, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:67, column:6,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:6,the value of plot_cost is         : 25.906775189659704 

 At row:67, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:67, column:7,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:7,the value of plot_cost is         : 25.721039620211606 

 At row:67, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:67, column:8,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:8,the value of plot_cost is         : 25.53611211116602 

 At row:67, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:67, column:9,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:9,the value of plot_cost is         : 25.351992662522946 

 At row:67, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:67, column:10,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:10,the value of plot_cost is         : 25.16868127428239 

 At row:67, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:67, column:11,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:11,the value of plot_cost is         : 24.986177946444347 

 At row:67, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:67, column:12,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:12,the value of plot_cost is         : 24.80448267900882 

 At row:67, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:67, column:13,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:13,the value of plot_cost is         : 24.623595471975808 

 At row:67, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:67, column:14,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:14,the value of plot_cost is         : 24.443516325345318 

 At row:67, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:67, column:15,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:15,the value of plot_cost is         : 24.264245239117333 

 At row:67, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:67, column:16,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:16,the value of plot_cost is         : 24.085782213291864 

 At row:67, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:67, column:17,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:17,the value of plot_cost is         : 23.90812724786892 

 At row:67, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:67, column:18,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:18,the value of plot_cost is         : 23.73128034284848 

 At row:67, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:67, column:19,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:19,the value of plot_cost is         : 23.55524149823056 

 At row:67, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:67, column:20,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:20,the value of plot_cost is         : 23.380010714015157 

 At row:67, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:67, column:21,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:21,the value of plot_cost is         : 23.20558799020226 

 At row:67, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:67, column:22,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:22,the value of plot_cost is         : 23.031973326791885 

 At row:67, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:67, column:23,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:23,the value of plot_cost is         : 22.85916672378403 

 At row:67, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:67, column:24,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:24,the value of plot_cost is         : 22.68716818117868 

 At row:67, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:67, column:25,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:25,the value of plot_cost is         : 22.51597769897585 

 At row:67, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:67, column:26,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:26,the value of plot_cost is         : 22.345595277175537 

 At row:67, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:67, column:27,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:27,the value of plot_cost is         : 22.176020915777737 

 At row:67, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:67, column:28,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:28,the value of plot_cost is         : 22.007254614782454 

 At row:67, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:67, column:29,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:29,the value of plot_cost is         : 21.839296374189683 

 At row:67, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:67, column:30,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:30,the value of plot_cost is         : 21.672146193999424 

 At row:67, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:67, column:31,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:31,the value of plot_cost is         : 21.505804074211685 

 At row:67, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:67, column:32,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:32,the value of plot_cost is         : 21.340270014826462 

 At row:67, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:67, column:33,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:33,the value of plot_cost is         : 21.17554401584375 

 At row:67, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:67, column:34,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:34,the value of plot_cost is         : 21.011626077263557 

 At row:67, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:67, column:35,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:35,the value of plot_cost is         : 20.84851619908588 

 At row:67, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:67, column:36,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:36,the value of plot_cost is         : 20.68621438131071 

 At row:67, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:67, column:37,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:37,the value of plot_cost is         : 20.524720623938062 

 At row:67, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:67, column:38,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:38,the value of plot_cost is         : 20.36403492696793 

 At row:67, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:67, column:39,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:39,the value of plot_cost is         : 20.20415729040031 

 At row:67, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:67, column:40,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:40,the value of plot_cost is         : 20.045087714235205 

 At row:67, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:67, column:41,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:41,the value of plot_cost is         : 19.88682619847262 

 At row:67, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:67, column:42,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:42,the value of plot_cost is         : 19.729372743112545 

 At row:67, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:67, column:43,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:43,the value of plot_cost is         : 19.572727348154984 

 At row:67, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:67, column:44,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:44,the value of plot_cost is         : 19.41689001359994 

 At row:67, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:67, column:45,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:45,the value of plot_cost is         : 19.26186073944741 

 At row:67, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:67, column:46,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:46,the value of plot_cost is         : 19.107639525697397 

 At row:67, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:67, column:47,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:47,the value of plot_cost is         : 18.9542263723499 

 At row:67, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:67, column:48,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:48,the value of plot_cost is         : 18.80162127940492 

 At row:67, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:67, column:49,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:49,the value of plot_cost is         : 18.649824246862448 

 At row:67, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:67, column:50,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:50,the value of plot_cost is         : 18.498835274722495 

 At row:67, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:67, column:51,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:51,the value of plot_cost is         : 18.34865436298506 

 At row:67, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:67, column:52,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:52,the value of plot_cost is         : 18.199281511650135 

 At row:67, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:67, column:53,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:53,the value of plot_cost is         : 18.050716720717727 

 At row:67, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:67, column:54,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:54,the value of plot_cost is         : 17.902959990187835 

 At row:67, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:67, column:55,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:55,the value of plot_cost is         : 17.756011320060455 

 At row:67, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:67, column:56,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:56,the value of plot_cost is         : 17.609870710335596 

 At row:67, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:67, column:57,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:57,the value of plot_cost is         : 17.464538161013248 

 At row:67, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:67, column:58,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:58,the value of plot_cost is         : 17.320013672093417 

 At row:67, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:67, column:59,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:59,the value of plot_cost is         : 17.176297243576098 

 At row:67, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:67, column:60,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:60,the value of plot_cost is         : 17.033388875461295 

 At row:67, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:67, column:61,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:61,the value of plot_cost is         : 16.891288567749008 

 At row:67, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:67, column:62,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:62,the value of plot_cost is         : 16.749996320439234 

 At row:67, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:67, column:63,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:63,the value of plot_cost is         : 16.60951213353198 

 At row:67, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:67, column:64,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:64,the value of plot_cost is         : 16.469836007027236 

 At row:67, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:67, column:65,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:65,the value of plot_cost is         : 16.330967940925007 

 At row:67, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:67, column:66,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:66,the value of plot_cost is         : 16.192907935225296 

 At row:67, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:67, column:67,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:67,the value of plot_cost is         : 16.055655989928102 

 At row:67, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:67, column:68,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:68,the value of plot_cost is         : 15.91921210503342 

 At row:67, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:67, column:69,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:69,the value of plot_cost is         : 15.783576280541254 

 At row:67, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:67, column:70,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:70,the value of plot_cost is         : 15.648748516451601 

 At row:67, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:67, column:71,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:71,the value of plot_cost is         : 15.514728812764465 

 At row:67, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:67, column:72,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:72,the value of plot_cost is         : 15.381517169479844 

 At row:67, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:67, column:73,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:73,the value of plot_cost is         : 15.249113586597737 

 At row:67, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:67, column:74,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:74,the value of plot_cost is         : 15.117518064118146 

 At row:67, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:67, column:75,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:75,the value of plot_cost is         : 14.98673060204107 

 At row:67, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:67, column:76,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:76,the value of plot_cost is         : 14.85675120036651 

 At row:67, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:67, column:77,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:77,the value of plot_cost is         : 14.727579859094464 

 At row:67, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:67, column:78,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:78,the value of plot_cost is         : 14.599216578224933 

 At row:67, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:67, column:79,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:79,the value of plot_cost is         : 14.471661357757917 

 At row:67, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:67, column:80,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:80,the value of plot_cost is         : 14.344914197693416 

 At row:67, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:67, column:81,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:81,the value of plot_cost is         : 14.21897509803143 

 At row:67, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:67, column:82,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:82,the value of plot_cost is         : 14.09384405877196 

 At row:67, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:67, column:83,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:83,the value of plot_cost is         : 13.969521079915005 

 At row:67, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:67, column:84,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:84,the value of plot_cost is         : 13.846006161460567 

 At row:67, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:67, column:85,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:85,the value of plot_cost is         : 13.723299303408641 

 At row:67, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:67, column:86,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:86,the value of plot_cost is         : 13.601400505759232 

 At row:67, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:67, column:87,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:87,the value of plot_cost is         : 13.480309768512337 

 At row:67, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:67, column:88,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:88,the value of plot_cost is         : 13.360027091667956 

 At row:67, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:67, column:89,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:89,the value of plot_cost is         : 13.240552475226092 

 At row:67, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:67, column:90,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:90,the value of plot_cost is         : 13.121885919186742 

 At row:67, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:67, column:91,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:91,the value of plot_cost is         : 13.004027423549909 

 At row:67, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:67, column:92,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:92,the value of plot_cost is         : 12.886976988315586 

 At row:67, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:67, column:93,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:93,the value of plot_cost is         : 12.770734613483784 

 At row:67, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:67, column:94,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:94,the value of plot_cost is         : 12.655300299054495 

 At row:67, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:67, column:95,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:95,the value of plot_cost is         : 12.54067404502772 

 At row:67, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:67, column:96,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:96,the value of plot_cost is         : 12.426855851403461 

 At row:67, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:67, column:97,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:97,the value of plot_cost is         : 12.313845718181717 

 At row:67, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:67, column:98,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:98,the value of plot_cost is         : 12.201643645362488 

 At row:67, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:67, column:99,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:99,the value of plot_cost is         : 12.090249632945776 

 At row:67, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:67, column:100,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:100,the value of plot_cost is         : 11.979663680931575 

 At row:67, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:67, column:101,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:101,the value of plot_cost is         : 11.869885789319891 

 At row:67, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:67, column:102,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:102,the value of plot_cost is         : 11.760915958110724 

 At row:67, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:67, column:103,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:103,the value of plot_cost is         : 11.65275418730407 

 At row:67, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:67, column:104,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:104,the value of plot_cost is         : 11.54540047689993 

 At row:67, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:67, column:105,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:105,the value of plot_cost is         : 11.438854826898307 

 At row:67, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:67, column:106,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:106,the value of plot_cost is         : 11.3331172372992 

 At row:67, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:67, column:107,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:107,the value of plot_cost is         : 11.228187708102608 

 At row:67, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:67, column:108,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:108,the value of plot_cost is         : 11.124066239308528 

 At row:67, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:67, column:109,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:109,the value of plot_cost is         : 11.020752830916965 

 At row:67, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:67, column:110,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:110,the value of plot_cost is         : 10.918247482927917 

 At row:67, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:67, column:111,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:111,the value of plot_cost is         : 10.816550195341387 

 At row:67, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:67, column:112,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:112,the value of plot_cost is         : 10.715660968157367 

 At row:67, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:67, column:113,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:113,the value of plot_cost is         : 10.615579801375864 

 At row:67, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:67, column:114,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:114,the value of plot_cost is         : 10.516306694996874 

 At row:67, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:67, column:115,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:115,the value of plot_cost is         : 10.417841649020405 

 At row:67, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:67, column:116,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:116,the value of plot_cost is         : 10.320184663446447 

 At row:67, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:67, column:117,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:117,the value of plot_cost is         : 10.223335738275004 

 At row:67, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:67, column:118,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:118,the value of plot_cost is         : 10.127294873506077 

 At row:67, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:67, column:119,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:119,the value of plot_cost is         : 10.032062069139664 

 At row:67, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:67, column:120,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:120,the value of plot_cost is         : 9.93763732517577 

 At row:67, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:67, column:121,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:121,the value of plot_cost is         : 9.844020641614387 

 At row:67, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:67, column:122,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:122,the value of plot_cost is         : 9.75121201845552 

 At row:67, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:67, column:123,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:123,the value of plot_cost is         : 9.659211455699168 

 At row:67, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:67, column:124,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:124,the value of plot_cost is         : 9.56801895334533 

 At row:67, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:67, column:125,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:125,the value of plot_cost is         : 9.477634511394008 

 At row:67, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:67, column:126,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:126,the value of plot_cost is         : 9.388058129845206 

 At row:67, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:67, column:127,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:127,the value of plot_cost is         : 9.299289808698914 

 At row:67, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:67, column:128,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:128,the value of plot_cost is         : 9.211329547955136 

 At row:67, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:67, column:129,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:129,the value of plot_cost is         : 9.124177347613873 

 At row:67, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:67, column:130,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:130,the value of plot_cost is         : 9.037833207675128 

 At row:67, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:67, column:131,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:131,the value of plot_cost is         : 8.952297128138898 

 At row:67, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:67, column:132,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:132,the value of plot_cost is         : 8.867569109005181 

 At row:67, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:67, column:133,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:133,the value of plot_cost is         : 8.78364915027398 

 At row:67, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:67, column:134,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:134,the value of plot_cost is         : 8.700537251945292 

 At row:67, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:67, column:135,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:135,the value of plot_cost is         : 8.618233414019123 

 At row:67, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:67, column:136,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:136,the value of plot_cost is         : 8.536737636495468 

 At row:67, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:67, column:137,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:137,the value of plot_cost is         : 8.456049919374328 

 At row:67, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:67, column:138,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:138,the value of plot_cost is         : 8.376170262655704 

 At row:67, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:67, column:139,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:139,the value of plot_cost is         : 8.297098666339592 

 At row:67, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:67, column:140,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:140,the value of plot_cost is         : 8.218835130425996 

 At row:67, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:67, column:141,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:141,the value of plot_cost is         : 8.141379654914918 

 At row:67, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:67, column:142,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:142,the value of plot_cost is         : 8.064732239806352 

 At row:67, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:67, column:143,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:143,the value of plot_cost is         : 7.988892885100302 

 At row:67, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:67, column:144,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:144,the value of plot_cost is         : 7.913861590796766 

 At row:67, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:67, column:145,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:145,the value of plot_cost is         : 7.839638356895746 

 At row:67, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:67, column:146,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:146,the value of plot_cost is         : 7.766223183397244 

 At row:67, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:67, column:147,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:147,the value of plot_cost is         : 7.693616070301254 

 At row:67, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:67, column:148,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:148,the value of plot_cost is         : 7.621817017607778 

 At row:67, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:67, column:149,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:149,the value of plot_cost is         : 7.550826025316818 

 At row:67, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:67, column:150,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:150,the value of plot_cost is         : 7.480643093428375 

 At row:67, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:67, column:151,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:151,the value of plot_cost is         : 7.411268221942445 

 At row:67, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:67, column:152,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:152,the value of plot_cost is         : 7.342701410859031 

 At row:67, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:67, column:153,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:153,the value of plot_cost is         : 7.274942660178132 

 At row:67, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:67, column:154,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:154,the value of plot_cost is         : 7.207991969899747 

 At row:67, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:67, column:155,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:155,the value of plot_cost is         : 7.141849340023879 

 At row:67, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:67, column:156,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:156,the value of plot_cost is         : 7.076514770550525 

 At row:67, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:67, column:157,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:157,the value of plot_cost is         : 7.011988261479687 

 At row:67, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:67, column:158,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:158,the value of plot_cost is         : 6.948269812811363 

 At row:67, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:67, column:159,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:159,the value of plot_cost is         : 6.885359424545553 

 At row:67, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:67, column:160,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:160,the value of plot_cost is         : 6.82325709668226 

 At row:67, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:67, column:161,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:161,the value of plot_cost is         : 6.761962829221482 

 At row:67, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:67, column:162,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:162,the value of plot_cost is         : 6.70147662216322 

 At row:67, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:67, column:163,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:163,the value of plot_cost is         : 6.641798475507471 

 At row:67, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:67, column:164,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:164,the value of plot_cost is         : 6.582928389254237 

 At row:67, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:67, column:165,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:165,the value of plot_cost is         : 6.52486636340352 

 At row:67, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:67, column:166,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:166,the value of plot_cost is         : 6.467612397955316 

 At row:67, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:67, column:167,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:167,the value of plot_cost is         : 6.41116649290963 

 At row:67, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:67, column:168,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:168,the value of plot_cost is         : 6.355528648266457 

 At row:67, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:67, column:169,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:169,the value of plot_cost is         : 6.300698864025798 

 At row:67, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:67, column:170,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:170,the value of plot_cost is         : 6.246677140187655 

 At row:67, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:67, column:171,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:171,the value of plot_cost is         : 6.193463476752027 

 At row:67, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:67, column:172,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:172,the value of plot_cost is         : 6.141057873718916 

 At row:67, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:67, column:173,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:173,the value of plot_cost is         : 6.089460331088319 

 At row:67, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:67, column:174,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:174,the value of plot_cost is         : 6.038670848860235 

 At row:67, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:67, column:175,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:175,the value of plot_cost is         : 5.988689427034669 

 At row:67, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:67, column:176,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:176,the value of plot_cost is         : 5.939516065611617 

 At row:67, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:67, column:177,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:177,the value of plot_cost is         : 5.89115076459108 

 At row:67, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:67, column:178,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:178,the value of plot_cost is         : 5.843593523973059 

 At row:67, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:67, column:179,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:179,the value of plot_cost is         : 5.7968443437575505 

 At row:67, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:67, column:180,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:180,the value of plot_cost is         : 5.750903223944559 

 At row:67, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:67, column:181,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:181,the value of plot_cost is         : 5.705770164534083 

 At row:67, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:67, column:182,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:182,the value of plot_cost is         : 5.661445165526121 

 At row:67, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:67, column:183,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:183,the value of plot_cost is         : 5.617928226920676 

 At row:67, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:67, column:184,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:184,the value of plot_cost is         : 5.575219348717742 

 At row:67, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:67, column:185,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:185,the value of plot_cost is         : 5.533318530917327 

 At row:67, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:67, column:186,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:186,the value of plot_cost is         : 5.492225773519426 

 At row:67, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:67, column:187,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:187,the value of plot_cost is         : 5.45194107652404 

 At row:67, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:67, column:188,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:188,the value of plot_cost is         : 5.4124644399311705 

 At row:67, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:67, column:189,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:189,the value of plot_cost is         : 5.3737958637408125 

 At row:67, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:67, column:190,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:190,the value of plot_cost is         : 5.335935347952972 

 At row:67, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:67, column:191,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:191,the value of plot_cost is         : 5.298882892567646 

 At row:67, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:67, column:192,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:192,the value of plot_cost is         : 5.262638497584837 

 At row:67, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:67, column:193,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:193,the value of plot_cost is         : 5.227202163004541 

 At row:67, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:67, column:194,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:194,the value of plot_cost is         : 5.192573888826759 

 At row:67, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:67, column:195,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:195,the value of plot_cost is         : 5.158753675051495 

 At row:67, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:67, column:196,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:196,the value of plot_cost is         : 5.125741521678743 

 At row:67, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:67, column:197,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:197,the value of plot_cost is         : 5.093537428708509 

 At row:67, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:67, column:198,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:198,the value of plot_cost is         : 5.06214139614079 

 At row:67, column:199,the value of plot_t0 is           : 3.0
 At row:67, column:199,the value of plot_t1 is           : 0.3467336683417086
 At row:67, column:199,the value of plot_cost is         : 5.031553423975582 

 At row:68, column:0,the value of plot_t0 is           : -1.0
 At row:68, column:0,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:0,the value of plot_cost is         : 26.249927851749774 

 At row:68, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:68, column:1,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:1,the value of plot_cost is         : 26.06202206293492 

 At row:68, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:68, column:2,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:2,the value of plot_cost is         : 25.874924334522575 

 At row:68, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:68, column:3,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:3,the value of plot_cost is         : 25.688634666512748 

 At row:68, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:68, column:4,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:4,the value of plot_cost is         : 25.503153058905443 

 At row:68, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:68, column:5,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:5,the value of plot_cost is         : 25.318479511700644 

 At row:68, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:68, column:6,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:6,the value of plot_cost is         : 25.134614024898358 

 At row:68, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:68, column:7,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:7,the value of plot_cost is         : 24.95155659849859 

 At row:68, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:68, column:8,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:8,the value of plot_cost is         : 24.76930723250134 

 At row:68, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:68, column:9,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:9,the value of plot_cost is         : 24.58786592690661 

 At row:68, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:68, column:10,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:10,the value of plot_cost is         : 24.407232681714383 

 At row:68, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:68, column:11,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:11,the value of plot_cost is         : 24.227407496924677 

 At row:68, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:68, column:12,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:12,the value of plot_cost is         : 24.04839037253749 

 At row:68, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:68, column:13,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:13,the value of plot_cost is         : 23.870181308552816 

 At row:68, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:68, column:14,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:14,the value of plot_cost is         : 23.692780304970658 

 At row:68, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:68, column:15,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:15,the value of plot_cost is         : 23.51618736179101 

 At row:68, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:68, column:16,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:16,the value of plot_cost is         : 23.34040247901388 

 At row:68, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:68, column:17,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:17,the value of plot_cost is         : 23.165425656639265 

 At row:68, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:68, column:18,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:18,the value of plot_cost is         : 22.991256894667163 

 At row:68, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:68, column:19,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:19,the value of plot_cost is         : 22.81789619309758 

 At row:68, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:68, column:20,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:20,the value of plot_cost is         : 22.645343551930505 

 At row:68, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:68, column:21,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:21,the value of plot_cost is         : 22.473598971165952 

 At row:68, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:68, column:22,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:22,the value of plot_cost is         : 22.30266245080391 

 At row:68, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:68, column:23,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:23,the value of plot_cost is         : 22.13253399084439 

 At row:68, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:68, column:24,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:24,the value of plot_cost is         : 21.963213591287378 

 At row:68, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:68, column:25,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:25,the value of plot_cost is         : 21.794701252132885 

 At row:68, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:68, column:26,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:26,the value of plot_cost is         : 21.6269969733809 

 At row:68, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:68, column:27,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:27,the value of plot_cost is         : 21.460100755031437 

 At row:68, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:68, column:28,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:28,the value of plot_cost is         : 21.29401259708449 

 At row:68, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:68, column:29,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:29,the value of plot_cost is         : 21.128732499540053 

 At row:68, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:68, column:30,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:30,the value of plot_cost is         : 20.964260462398137 

 At row:68, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:68, column:31,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:31,the value of plot_cost is         : 20.80059648565873 

 At row:68, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:68, column:32,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:32,the value of plot_cost is         : 20.637740569321842 

 At row:68, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:68, column:33,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:33,the value of plot_cost is         : 20.47569271338747 

 At row:68, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:68, column:34,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:34,the value of plot_cost is         : 20.314452917855615 

 At row:68, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:68, column:35,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:35,the value of plot_cost is         : 20.154021182726268 

 At row:68, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:68, column:36,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:36,the value of plot_cost is         : 19.994397507999437 

 At row:68, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:68, column:37,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:37,the value of plot_cost is         : 19.835581893675123 

 At row:68, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:68, column:38,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:38,the value of plot_cost is         : 19.677574339753324 

 At row:68, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:68, column:39,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:39,the value of plot_cost is         : 19.52037484623404 

 At row:68, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:68, column:40,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:40,the value of plot_cost is         : 19.363983413117275 

 At row:68, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:68, column:41,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:41,the value of plot_cost is         : 19.208400040403017 

 At row:68, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:68, column:42,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:42,the value of plot_cost is         : 19.053624728091282 

 At row:68, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:68, column:43,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:43,the value of plot_cost is         : 18.89965747618206 

 At row:68, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:68, column:44,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:44,the value of plot_cost is         : 18.74649828467535 

 At row:68, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:68, column:45,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:45,the value of plot_cost is         : 18.59414715357116 

 At row:68, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:68, column:46,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:46,the value of plot_cost is         : 18.44260408286948 

 At row:68, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:68, column:47,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:47,the value of plot_cost is         : 18.291869072570318 

 At row:68, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:68, column:48,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:48,the value of plot_cost is         : 18.141942122673672 

 At row:68, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:68, column:49,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:49,the value of plot_cost is         : 17.99282323317954 

 At row:68, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:68, column:50,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:50,the value of plot_cost is         : 17.844512404087922 

 At row:68, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:68, column:51,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:51,the value of plot_cost is         : 17.697009635398814 

 At row:68, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:68, column:52,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:52,the value of plot_cost is         : 17.55031492711223 

 At row:68, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:68, column:53,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:53,the value of plot_cost is         : 17.40442827922816 

 At row:68, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:68, column:54,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:54,the value of plot_cost is         : 17.2593496917466 

 At row:68, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:68, column:55,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:55,the value of plot_cost is         : 17.11507916466756 

 At row:68, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:68, column:56,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:56,the value of plot_cost is         : 16.971616697991035 

 At row:68, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:68, column:57,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:57,the value of plot_cost is         : 16.82896229171702 

 At row:68, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:68, column:58,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:58,the value of plot_cost is         : 16.687115945845523 

 At row:68, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:68, column:59,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:59,the value of plot_cost is         : 16.54607766037654 

 At row:68, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:68, column:60,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:60,the value of plot_cost is         : 16.405847435310076 

 At row:68, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:68, column:61,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:61,the value of plot_cost is         : 16.266425270646124 

 At row:68, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:68, column:62,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:62,the value of plot_cost is         : 16.12781116638469 

 At row:68, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:68, column:63,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:63,the value of plot_cost is         : 15.990005122525767 

 At row:68, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:68, column:64,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:64,the value of plot_cost is         : 15.853007139069359 

 At row:68, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:68, column:65,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:65,the value of plot_cost is         : 15.716817216015468 

 At row:68, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:68, column:66,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:66,the value of plot_cost is         : 15.58143535336409 

 At row:68, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:68, column:67,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:67,the value of plot_cost is         : 15.44686155111523 

 At row:68, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:68, column:68,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:68,the value of plot_cost is         : 15.313095809268887 

 At row:68, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:68, column:69,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:69,the value of plot_cost is         : 15.180138127825053 

 At row:68, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:68, column:70,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:70,the value of plot_cost is         : 15.04798850678374 

 At row:68, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:68, column:71,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:71,the value of plot_cost is         : 14.916646946144937 

 At row:68, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:68, column:72,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:72,the value of plot_cost is         : 14.786113445908654 

 At row:68, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:68, column:73,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:73,the value of plot_cost is         : 14.656388006074884 

 At row:68, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:68, column:74,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:74,the value of plot_cost is         : 14.527470626643627 

 At row:68, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:68, column:75,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:75,the value of plot_cost is         : 14.399361307614887 

 At row:68, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:68, column:76,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:76,the value of plot_cost is         : 14.272060048988664 

 At row:68, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:68, column:77,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:77,the value of plot_cost is         : 14.145566850764952 

 At row:68, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:68, column:78,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:78,the value of plot_cost is         : 14.019881712943759 

 At row:68, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:68, column:79,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:79,the value of plot_cost is         : 13.895004635525076 

 At row:68, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:68, column:80,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:80,the value of plot_cost is         : 13.770935618508911 

 At row:68, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:68, column:81,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:81,the value of plot_cost is         : 13.647674661895262 

 At row:68, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:68, column:82,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:82,the value of plot_cost is         : 13.525221765684128 

 At row:68, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:68, column:83,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:83,the value of plot_cost is         : 13.40357692987551 

 At row:68, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:68, column:84,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:84,the value of plot_cost is         : 13.282740154469403 

 At row:68, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:68, column:85,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:85,the value of plot_cost is         : 13.162711439465815 

 At row:68, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:68, column:86,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:86,the value of plot_cost is         : 13.043490784864739 

 At row:68, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:68, column:87,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:87,the value of plot_cost is         : 12.92507819066618 

 At row:68, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:68, column:88,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:88,the value of plot_cost is         : 12.807473656870137 

 At row:68, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:68, column:89,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:89,the value of plot_cost is         : 12.690677183476605 

 At row:68, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:68, column:90,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:90,the value of plot_cost is         : 12.574688770485595 

 At row:68, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:68, column:91,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:91,the value of plot_cost is         : 12.459508417897094 

 At row:68, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:68, column:92,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:92,the value of plot_cost is         : 12.345136125711113 

 At row:68, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:68, column:93,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:93,the value of plot_cost is         : 12.231571893927644 

 At row:68, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:68, column:94,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:94,the value of plot_cost is         : 12.118815722546689 

 At row:68, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:68, column:95,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:95,the value of plot_cost is         : 12.00686761156825 

 At row:68, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:68, column:96,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:96,the value of plot_cost is         : 11.895727560992327 

 At row:68, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:68, column:97,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:97,the value of plot_cost is         : 11.78539557081892 

 At row:68, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:68, column:98,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:98,the value of plot_cost is         : 11.675871641048026 

 At row:68, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:68, column:99,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:99,the value of plot_cost is         : 11.567155771679648 

 At row:68, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:68, column:100,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:100,the value of plot_cost is         : 11.459247962713786 

 At row:68, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:68, column:101,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:101,the value of plot_cost is         : 11.352148214150436 

 At row:68, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:68, column:102,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:102,the value of plot_cost is         : 11.245856525989604 

 At row:68, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:68, column:103,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:103,the value of plot_cost is         : 11.14037289823129 

 At row:68, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:68, column:104,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:104,the value of plot_cost is         : 11.035697330875482 

 At row:68, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:68, column:105,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:105,the value of plot_cost is         : 10.931829823922198 

 At row:68, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:68, column:106,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:106,the value of plot_cost is         : 10.828770377371422 

 At row:68, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:68, column:107,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:107,the value of plot_cost is         : 10.726518991223166 

 At row:68, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:68, column:108,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:108,the value of plot_cost is         : 10.625075665477425 

 At row:68, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:68, column:109,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:109,the value of plot_cost is         : 10.524440400134196 

 At row:68, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:68, column:110,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:110,the value of plot_cost is         : 10.424613195193482 

 At row:68, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:68, column:111,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:111,the value of plot_cost is         : 10.325594050655287 

 At row:68, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:68, column:112,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:112,the value of plot_cost is         : 10.227382966519604 

 At row:68, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:68, column:113,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:113,the value of plot_cost is         : 10.12997994278644 

 At row:68, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:68, column:114,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:114,the value of plot_cost is         : 10.033384979455787 

 At row:68, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:68, column:115,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:115,the value of plot_cost is         : 9.93759807652765 

 At row:68, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:68, column:116,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:116,the value of plot_cost is         : 9.842619234002028 

 At row:68, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:68, column:117,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:117,the value of plot_cost is         : 9.748448451878922 

 At row:68, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:68, column:118,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:118,the value of plot_cost is         : 9.655085730158332 

 At row:68, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:68, column:119,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:119,the value of plot_cost is         : 9.562531068840253 

 At row:68, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:68, column:120,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:120,the value of plot_cost is         : 9.470784467924691 

 At row:68, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:68, column:121,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:121,the value of plot_cost is         : 9.379845927411644 

 At row:68, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:68, column:122,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:122,the value of plot_cost is         : 9.289715447301115 

 At row:68, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:68, column:123,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:123,the value of plot_cost is         : 9.200393027593101 

 At row:68, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:68, column:124,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:124,the value of plot_cost is         : 9.111878668287597 

 At row:68, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:68, column:125,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:125,the value of plot_cost is         : 9.02417236938461 

 At row:68, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:68, column:126,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:126,the value of plot_cost is         : 8.937274130884141 

 At row:68, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:68, column:127,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:127,the value of plot_cost is         : 8.851183952786187 

 At row:68, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:68, column:128,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:128,the value of plot_cost is         : 8.765901835090746 

 At row:68, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:68, column:129,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:129,the value of plot_cost is         : 8.68142777779782 

 At row:68, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:68, column:130,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:130,the value of plot_cost is         : 8.597761780907407 

 At row:68, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:68, column:131,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:131,the value of plot_cost is         : 8.514903844419512 

 At row:68, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:68, column:132,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:132,the value of plot_cost is         : 8.432853968334133 

 At row:68, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:68, column:133,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:133,the value of plot_cost is         : 8.35161215265127 

 At row:68, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:68, column:134,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:134,the value of plot_cost is         : 8.271178397370917 

 At row:68, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:68, column:135,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:135,the value of plot_cost is         : 8.191552702493082 

 At row:68, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:68, column:136,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:136,the value of plot_cost is         : 8.112735068017763 

 At row:68, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:68, column:137,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:137,the value of plot_cost is         : 8.03472549394496 

 At row:68, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:68, column:138,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:138,the value of plot_cost is         : 7.95752398027467 

 At row:68, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:68, column:139,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:139,the value of plot_cost is         : 7.881130527006894 

 At row:68, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:68, column:140,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:140,the value of plot_cost is         : 7.805545134141633 

 At row:68, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:68, column:141,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:141,the value of plot_cost is         : 7.73076780167889 

 At row:68, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:68, column:142,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:142,the value of plot_cost is         : 7.65679852961866 

 At row:68, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:68, column:143,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:143,the value of plot_cost is         : 7.583637317960947 

 At row:68, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:68, column:144,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:144,the value of plot_cost is         : 7.511284166705747 

 At row:68, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:68, column:145,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:145,the value of plot_cost is         : 7.439739075853062 

 At row:68, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:68, column:146,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:146,the value of plot_cost is         : 7.369002045402894 

 At row:68, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:68, column:147,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:147,the value of plot_cost is         : 7.299073075355241 

 At row:68, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:68, column:148,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:148,the value of plot_cost is         : 7.229952165710103 

 At row:68, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:68, column:149,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:149,the value of plot_cost is         : 7.161639316467477 

 At row:68, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:68, column:150,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:150,the value of plot_cost is         : 7.094134527627369 

 At row:68, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:68, column:151,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:151,the value of plot_cost is         : 7.027437799189774 

 At row:68, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:68, column:152,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:152,the value of plot_cost is         : 6.9615491311546975 

 At row:68, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:68, column:153,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:153,the value of plot_cost is         : 6.896468523522135 

 At row:68, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:68, column:154,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:154,the value of plot_cost is         : 6.832195976292086 

 At row:68, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:68, column:155,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:155,the value of plot_cost is         : 6.7687314894645505 

 At row:68, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:68, column:156,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:156,the value of plot_cost is         : 6.706075063039533 

 At row:68, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:68, column:157,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:157,the value of plot_cost is         : 6.644226697017032 

 At row:68, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:68, column:158,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:158,the value of plot_cost is         : 6.583186391397044 

 At row:68, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:68, column:159,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:159,the value of plot_cost is         : 6.52295414617957 

 At row:68, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:68, column:160,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:160,the value of plot_cost is         : 6.46352996136461 

 At row:68, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:68, column:161,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:161,the value of plot_cost is         : 6.404913836952169 

 At row:68, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:68, column:162,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:162,the value of plot_cost is         : 6.347105772942243 

 At row:68, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:68, column:163,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:163,the value of plot_cost is         : 6.290105769334831 

 At row:68, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:68, column:164,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:164,the value of plot_cost is         : 6.233913826129933 

 At row:68, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:68, column:165,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:165,the value of plot_cost is         : 6.178529943327549 

 At row:68, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:68, column:166,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:166,the value of plot_cost is         : 6.1239541209276815 

 At row:68, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:68, column:167,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:167,the value of plot_cost is         : 6.070186358930331 

 At row:68, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:68, column:168,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:168,the value of plot_cost is         : 6.0172266573354944 

 At row:68, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:68, column:169,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:169,the value of plot_cost is         : 5.965075016143171 

 At row:68, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:68, column:170,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:170,the value of plot_cost is         : 5.913731435353363 

 At row:68, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:68, column:171,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:171,the value of plot_cost is         : 5.863195914966072 

 At row:68, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:68, column:172,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:172,the value of plot_cost is         : 5.813468454981296 

 At row:68, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:68, column:173,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:173,the value of plot_cost is         : 5.764549055399035 

 At row:68, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:68, column:174,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:174,the value of plot_cost is         : 5.716437716219289 

 At row:68, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:68, column:175,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:175,the value of plot_cost is         : 5.669134437442056 

 At row:68, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:68, column:176,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:176,the value of plot_cost is         : 5.62263921906734 

 At row:68, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:68, column:177,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:177,the value of plot_cost is         : 5.576952061095139 

 At row:68, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:68, column:178,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:178,the value of plot_cost is         : 5.532072963525454 

 At row:68, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:68, column:179,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:179,the value of plot_cost is         : 5.488001926358281 

 At row:68, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:68, column:180,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:180,the value of plot_cost is         : 5.444738949593624 

 At row:68, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:68, column:181,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:181,the value of plot_cost is         : 5.402284033231484 

 At row:68, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:68, column:182,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:182,the value of plot_cost is         : 5.360637177271858 

 At row:68, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:68, column:183,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:183,the value of plot_cost is         : 5.319798381714749 

 At row:68, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:68, column:184,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:184,the value of plot_cost is         : 5.279767646560153 

 At row:68, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:68, column:185,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:185,the value of plot_cost is         : 5.240544971808071 

 At row:68, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:68, column:186,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:186,the value of plot_cost is         : 5.202130357458505 

 At row:68, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:68, column:187,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:187,the value of plot_cost is         : 5.1645238035114565 

 At row:68, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:68, column:188,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:188,the value of plot_cost is         : 5.127725309966921 

 At row:68, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:68, column:189,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:189,the value of plot_cost is         : 5.091734876824901 

 At row:68, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:68, column:190,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:190,the value of plot_cost is         : 5.056552504085395 

 At row:68, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:68, column:191,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:191,the value of plot_cost is         : 5.022178191748405 

 At row:68, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:68, column:192,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:192,the value of plot_cost is         : 4.98861193981393 

 At row:68, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:68, column:193,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:193,the value of plot_cost is         : 4.955853748281971 

 At row:68, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:68, column:194,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:194,the value of plot_cost is         : 4.923903617152526 

 At row:68, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:68, column:195,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:195,the value of plot_cost is         : 4.892761546425596 

 At row:68, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:68, column:196,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:196,the value of plot_cost is         : 4.862427536101181 

 At row:68, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:68, column:197,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:197,the value of plot_cost is         : 4.832901586179283 

 At row:68, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:68, column:198,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:198,the value of plot_cost is         : 4.804183696659899 

 At row:68, column:199,the value of plot_t0 is           : 3.0
 At row:68, column:199,the value of plot_t1 is           : 0.3668341708542713
 At row:68, column:199,the value of plot_cost is         : 4.776273867543028 

 At row:69, column:0,the value of plot_t0 is           : -1.0
 At row:69, column:0,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:0,the value of plot_cost is         : 25.474280483537573 

 At row:69, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:69, column:1,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:1,the value of plot_cost is         : 25.289052837771045 

 At row:69, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:69, column:2,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:2,the value of plot_cost is         : 25.10463325240704 

 At row:69, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:69, column:3,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:3,the value of plot_cost is         : 24.921021727445552 

 At row:69, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:69, column:4,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:4,the value of plot_cost is         : 24.73821826288658 

 At row:69, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:69, column:5,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:5,the value of plot_cost is         : 24.556222858730116 

 At row:69, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:69, column:6,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:6,the value of plot_cost is         : 24.375035514976172 

 At row:69, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:69, column:7,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:7,the value of plot_cost is         : 24.194656231624737 

 At row:69, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:69, column:8,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:8,the value of plot_cost is         : 24.015085008675822 

 At row:69, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:69, column:9,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:9,the value of plot_cost is         : 23.836321846129422 

 At row:69, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:69, column:10,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:10,the value of plot_cost is         : 23.658366743985543 

 At row:69, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:69, column:11,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:11,the value of plot_cost is         : 23.481219702244168 

 At row:69, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:69, column:12,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:12,the value of plot_cost is         : 23.304880720905317 

 At row:69, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:69, column:13,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:13,the value of plot_cost is         : 23.12934979996897 

 At row:69, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:69, column:14,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:14,the value of plot_cost is         : 22.954626939435148 

 At row:69, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:69, column:15,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:15,the value of plot_cost is         : 22.78071213930384 

 At row:69, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:69, column:16,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:16,the value of plot_cost is         : 22.607605399575046 

 At row:69, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:69, column:17,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:17,the value of plot_cost is         : 22.435306720248764 

 At row:69, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:69, column:18,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:18,the value of plot_cost is         : 22.263816101325002 

 At row:69, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:69, column:19,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:19,the value of plot_cost is         : 22.093133542803752 

 At row:69, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:69, column:20,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:20,the value of plot_cost is         : 21.923259044685018 

 At row:69, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:69, column:21,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:21,the value of plot_cost is         : 21.754192606968797 

 At row:69, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:69, column:22,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:22,the value of plot_cost is         : 21.58593422965509 

 At row:69, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:69, column:23,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:23,the value of plot_cost is         : 21.418483912743906 

 At row:69, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:69, column:24,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:24,the value of plot_cost is         : 21.251841656235232 

 At row:69, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:69, column:25,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:25,the value of plot_cost is         : 21.08600746012907 

 At row:69, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:69, column:26,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:26,the value of plot_cost is         : 20.920981324425426 

 At row:69, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:69, column:27,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:27,the value of plot_cost is         : 20.756763249124294 

 At row:69, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:69, column:28,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:28,the value of plot_cost is         : 20.593353234225685 

 At row:69, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:69, column:29,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:29,the value of plot_cost is         : 20.430751279729588 

 At row:69, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:69, column:30,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:30,the value of plot_cost is         : 20.268957385636003 

 At row:69, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:69, column:31,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:31,the value of plot_cost is         : 20.107971551944935 

 At row:69, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:69, column:32,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:32,the value of plot_cost is         : 19.94779377865638 

 At row:69, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:69, column:33,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:33,the value of plot_cost is         : 19.78842406577034 

 At row:69, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:69, column:34,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:34,the value of plot_cost is         : 19.62986241328682 

 At row:69, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:69, column:35,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:35,the value of plot_cost is         : 19.47210882120581 

 At row:69, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:69, column:36,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:36,the value of plot_cost is         : 19.315163289527316 

 At row:69, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:69, column:37,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:37,the value of plot_cost is         : 19.15902581825134 

 At row:69, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:69, column:38,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:38,the value of plot_cost is         : 19.003696407377877 

 At row:69, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:69, column:39,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:39,the value of plot_cost is         : 18.84917505690693 

 At row:69, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:69, column:40,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:40,the value of plot_cost is         : 18.6954617668385 

 At row:69, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:69, column:41,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:41,the value of plot_cost is         : 18.54255653717258 

 At row:69, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:69, column:42,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:42,the value of plot_cost is         : 18.390459367909173 

 At row:69, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:69, column:43,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:43,the value of plot_cost is         : 18.23917025904829 

 At row:69, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:69, column:44,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:44,the value of plot_cost is         : 18.08868921058992 

 At row:69, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:69, column:45,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:45,the value of plot_cost is         : 17.939016222534065 

 At row:69, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:69, column:46,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:46,the value of plot_cost is         : 17.79015129488072 

 At row:69, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:69, column:47,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:47,the value of plot_cost is         : 17.64209442762989 

 At row:69, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:69, column:48,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:48,the value of plot_cost is         : 17.49484562078158 

 At row:69, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:69, column:49,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:49,the value of plot_cost is         : 17.348404874335785 

 At row:69, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:69, column:50,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:50,the value of plot_cost is         : 17.202772188292503 

 At row:69, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:69, column:51,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:51,the value of plot_cost is         : 17.057947562651734 

 At row:69, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:69, column:52,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:52,the value of plot_cost is         : 16.913930997413484 

 At row:69, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:69, column:53,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:53,the value of plot_cost is         : 16.770722492577747 

 At row:69, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:69, column:54,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:54,the value of plot_cost is         : 16.628322048144526 

 At row:69, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:69, column:55,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:55,the value of plot_cost is         : 16.48672966411382 

 At row:69, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:69, column:56,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:56,the value of plot_cost is         : 16.345945340485628 

 At row:69, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:69, column:57,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:57,the value of plot_cost is         : 16.20596907725995 

 At row:69, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:69, column:58,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:58,the value of plot_cost is         : 16.06680087443679 

 At row:69, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:69, column:59,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:59,the value of plot_cost is         : 15.928440732016147 

 At row:69, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:69, column:60,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:60,the value of plot_cost is         : 15.790888649998013 

 At row:69, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:69, column:61,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:61,the value of plot_cost is         : 15.654144628382399 

 At row:69, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:69, column:62,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:62,the value of plot_cost is         : 15.518208667169294 

 At row:69, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:69, column:63,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:63,the value of plot_cost is         : 15.383080766358711 

 At row:69, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:69, column:64,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:64,the value of plot_cost is         : 15.248760925950643 

 At row:69, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:69, column:65,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:65,the value of plot_cost is         : 15.115249145945086 

 At row:69, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:69, column:66,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:66,the value of plot_cost is         : 14.982545426342048 

 At row:69, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:69, column:67,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:67,the value of plot_cost is         : 14.850649767141519 

 At row:69, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:69, column:68,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:68,the value of plot_cost is         : 14.719562168343508 

 At row:69, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:69, column:69,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:69,the value of plot_cost is         : 14.589282629948018 

 At row:69, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:69, column:70,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:70,the value of plot_cost is         : 14.459811151955034 

 At row:69, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:69, column:71,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:71,the value of plot_cost is         : 14.33114773436457 

 At row:69, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:69, column:72,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:72,the value of plot_cost is         : 14.203292377176618 

 At row:69, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:69, column:73,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:73,the value of plot_cost is         : 14.076245080391185 

 At row:69, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:69, column:74,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:74,the value of plot_cost is         : 13.950005844008269 

 At row:69, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:69, column:75,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:75,the value of plot_cost is         : 13.82457466802786 

 At row:69, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:69, column:76,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:76,the value of plot_cost is         : 13.699951552449974 

 At row:69, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:69, column:77,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:77,the value of plot_cost is         : 13.576136497274597 

 At row:69, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:69, column:78,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:78,the value of plot_cost is         : 13.453129502501739 

 At row:69, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:69, column:79,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:79,the value of plot_cost is         : 13.330930568131395 

 At row:69, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:69, column:80,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:80,the value of plot_cost is         : 13.209539694163563 

 At row:69, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:69, column:81,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:81,the value of plot_cost is         : 13.088956880598253 

 At row:69, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:69, column:82,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:82,the value of plot_cost is         : 12.96918212743545 

 At row:69, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:69, column:83,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:83,the value of plot_cost is         : 12.850215434675167 

 At row:69, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:69, column:84,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:84,the value of plot_cost is         : 12.732056802317402 

 At row:69, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:69, column:85,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:85,the value of plot_cost is         : 12.614706230362145 

 At row:69, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:69, column:86,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:86,the value of plot_cost is         : 12.49816371880941 

 At row:69, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:69, column:87,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:87,the value of plot_cost is         : 12.382429267659184 

 At row:69, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:69, column:88,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:88,the value of plot_cost is         : 12.267502876911475 

 At row:69, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:69, column:89,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:89,the value of plot_cost is         : 12.153384546566283 

 At row:69, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:69, column:90,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:90,the value of plot_cost is         : 12.040074276623605 

 At row:69, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:69, column:91,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:91,the value of plot_cost is         : 11.92757206708344 

 At row:69, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:69, column:92,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:92,the value of plot_cost is         : 11.815877917945791 

 At row:69, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:69, column:93,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:93,the value of plot_cost is         : 11.70499182921066 

 At row:69, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:69, column:94,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:94,the value of plot_cost is         : 11.594913800878043 

 At row:69, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:69, column:95,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:95,the value of plot_cost is         : 11.485643832947938 

 At row:69, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:69, column:96,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:96,the value of plot_cost is         : 11.377181925420352 

 At row:69, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:69, column:97,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:97,the value of plot_cost is         : 11.26952807829528 

 At row:69, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:69, column:98,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:98,the value of plot_cost is         : 11.162682291572724 

 At row:69, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:69, column:99,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:99,the value of plot_cost is         : 11.056644565252682 

 At row:69, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:69, column:100,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:100,the value of plot_cost is         : 10.951414899335154 

 At row:69, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:69, column:101,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:101,the value of plot_cost is         : 10.846993293820141 

 At row:69, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:69, column:102,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:102,the value of plot_cost is         : 10.743379748707643 

 At row:69, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:69, column:103,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:103,the value of plot_cost is         : 10.640574263997662 

 At row:69, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:69, column:104,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:104,the value of plot_cost is         : 10.538576839690194 

 At row:69, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:69, column:105,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:105,the value of plot_cost is         : 10.437387475785245 

 At row:69, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:69, column:106,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:106,the value of plot_cost is         : 10.337006172282805 

 At row:69, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:69, column:107,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:107,the value of plot_cost is         : 10.237432929182882 

 At row:69, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:69, column:108,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:108,the value of plot_cost is         : 10.138667746485476 

 At row:69, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:69, column:109,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:109,the value of plot_cost is         : 10.040710624190586 

 At row:69, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:69, column:110,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:110,the value of plot_cost is         : 9.943561562298207 

 At row:69, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:69, column:111,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:111,the value of plot_cost is         : 9.847220560808347 

 At row:69, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:69, column:112,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:112,the value of plot_cost is         : 9.751687619721 

 At row:69, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:69, column:113,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:113,the value of plot_cost is         : 9.65696273903617 

 At row:69, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:69, column:114,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:114,the value of plot_cost is         : 9.563045918753856 

 At row:69, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:69, column:115,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:115,the value of plot_cost is         : 9.469937158874052 

 At row:69, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:69, column:116,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:116,the value of plot_cost is         : 9.377636459396768 

 At row:69, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:69, column:117,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:117,the value of plot_cost is         : 9.286143820321996 

 At row:69, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:69, column:118,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:118,the value of plot_cost is         : 9.195459241649742 

 At row:69, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:69, column:119,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:119,the value of plot_cost is         : 9.105582723380001 

 At row:69, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:69, column:120,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:120,the value of plot_cost is         : 9.016514265512773 

 At row:69, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:69, column:121,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:121,the value of plot_cost is         : 8.928253868048065 

 At row:69, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:69, column:122,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:122,the value of plot_cost is         : 8.840801530985868 

 At row:69, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:69, column:123,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:123,the value of plot_cost is         : 8.754157254326188 

 At row:69, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:69, column:124,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:124,the value of plot_cost is         : 8.668321038069024 

 At row:69, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:69, column:125,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:125,the value of plot_cost is         : 8.583292882214373 

 At row:69, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:69, column:126,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:126,the value of plot_cost is         : 8.49907278676224 

 At row:69, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:69, column:127,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:127,the value of plot_cost is         : 8.415660751712617 

 At row:69, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:69, column:128,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:128,the value of plot_cost is         : 8.333056777065513 

 At row:69, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:69, column:129,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:129,the value of plot_cost is         : 8.251260862820923 

 At row:69, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:69, column:130,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:130,the value of plot_cost is         : 8.170273008978848 

 At row:69, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:69, column:131,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:131,the value of plot_cost is         : 8.090093215539289 

 At row:69, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:69, column:132,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:132,the value of plot_cost is         : 8.010721482502243 

 At row:69, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:69, column:133,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:133,the value of plot_cost is         : 7.932157809867715 

 At row:69, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:69, column:134,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:134,the value of plot_cost is         : 7.854402197635701 

 At row:69, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:69, column:135,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:135,the value of plot_cost is         : 7.7774546458062 

 At row:69, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:69, column:136,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:136,the value of plot_cost is         : 7.701315154379218 

 At row:69, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:69, column:137,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:137,the value of plot_cost is         : 7.625983723354747 

 At row:69, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:69, column:138,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:138,the value of plot_cost is         : 7.551460352732794 

 At row:69, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:69, column:139,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:139,the value of plot_cost is         : 7.477745042513356 

 At row:69, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:69, column:140,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:140,the value of plot_cost is         : 7.404837792696431 

 At row:69, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:69, column:141,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:141,the value of plot_cost is         : 7.332738603282024 

 At row:69, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:69, column:142,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:142,the value of plot_cost is         : 7.2614474742701285 

 At row:69, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:69, column:143,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:143,the value of plot_cost is         : 7.190964405660751 

 At row:69, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:69, column:144,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:144,the value of plot_cost is         : 7.1212893974538884 

 At row:69, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:69, column:145,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:145,the value of plot_cost is         : 7.052422449649538 

 At row:69, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:69, column:146,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:146,the value of plot_cost is         : 6.984363562247706 

 At row:69, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:69, column:147,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:147,the value of plot_cost is         : 6.917112735248386 

 At row:69, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:69, column:148,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:148,the value of plot_cost is         : 6.850669968651584 

 At row:69, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:69, column:149,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:149,the value of plot_cost is         : 6.7850352624572965 

 At row:69, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:69, column:150,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:150,the value of plot_cost is         : 6.720208616665524 

 At row:69, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:69, column:151,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:151,the value of plot_cost is         : 6.656190031276263 

 At row:69, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:69, column:152,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:152,the value of plot_cost is         : 6.592979506289521 

 At row:69, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:69, column:153,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:153,the value of plot_cost is         : 6.530577041705295 

 At row:69, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:69, column:154,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:154,the value of plot_cost is         : 6.468982637523583 

 At row:69, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:69, column:155,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:155,the value of plot_cost is         : 6.408196293744385 

 At row:69, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:69, column:156,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:156,the value of plot_cost is         : 6.3482180103677 

 At row:69, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:69, column:157,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:157,the value of plot_cost is         : 6.289047787393535 

 At row:69, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:69, column:158,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:158,the value of plot_cost is         : 6.230685624821883 

 At row:69, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:69, column:159,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:159,the value of plot_cost is         : 6.173131522652747 

 At row:69, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:69, column:160,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:160,the value of plot_cost is         : 6.116385480886124 

 At row:69, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:69, column:161,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:161,the value of plot_cost is         : 6.060447499522015 

 At row:69, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:69, column:162,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:162,the value of plot_cost is         : 6.005317578560424 

 At row:69, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:69, column:163,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:163,the value of plot_cost is         : 5.950995718001349 

 At row:69, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:69, column:164,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:164,the value of plot_cost is         : 5.897481917844788 

 At row:69, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:69, column:165,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:165,the value of plot_cost is         : 5.84477617809074 

 At row:69, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:69, column:166,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:166,the value of plot_cost is         : 5.792878498739207 

 At row:69, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:69, column:167,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:167,the value of plot_cost is         : 5.741788879790191 

 At row:69, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:69, column:168,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:168,the value of plot_cost is         : 5.691507321243692 

 At row:69, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:69, column:169,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:169,the value of plot_cost is         : 5.642033823099705 

 At row:69, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:69, column:170,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:170,the value of plot_cost is         : 5.593368385358233 

 At row:69, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:69, column:171,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:171,the value of plot_cost is         : 5.545511008019275 

 At row:69, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:69, column:172,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:172,the value of plot_cost is         : 5.498461691082835 

 At row:69, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:69, column:173,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:173,the value of plot_cost is         : 5.45222043454891 

 At row:69, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:69, column:174,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:174,the value of plot_cost is         : 5.4067872384175 

 At row:69, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:69, column:175,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:175,the value of plot_cost is         : 5.362162102688604 

 At row:69, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:69, column:176,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:176,the value of plot_cost is         : 5.318345027362222 

 At row:69, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:69, column:177,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:177,the value of plot_cost is         : 5.275336012438356 

 At row:69, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:69, column:178,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:178,the value of plot_cost is         : 5.233135057917007 

 At row:69, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:69, column:179,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:179,the value of plot_cost is         : 5.191742163798174 

 At row:69, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:69, column:180,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:180,the value of plot_cost is         : 5.151157330081852 

 At row:69, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:69, column:181,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:181,the value of plot_cost is         : 5.111380556768045 

 At row:69, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:69, column:182,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:182,the value of plot_cost is         : 5.072411843856756 

 At row:69, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:69, column:183,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:183,the value of plot_cost is         : 5.034251191347981 

 At row:69, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:69, column:184,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:184,the value of plot_cost is         : 4.996898599241722 

 At row:69, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:69, column:185,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:185,the value of plot_cost is         : 4.960354067537977 

 At row:69, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:69, column:186,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:186,the value of plot_cost is         : 4.924617596236745 

 At row:69, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:69, column:187,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:187,the value of plot_cost is         : 4.889689185338031 

 At row:69, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:69, column:188,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:188,the value of plot_cost is         : 4.855568834841833 

 At row:69, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:69, column:189,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:189,the value of plot_cost is         : 4.822256544748149 

 At row:69, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:69, column:190,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:190,the value of plot_cost is         : 4.789752315056979 

 At row:69, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:69, column:191,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:191,the value of plot_cost is         : 4.7580561457683235 

 At row:69, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:69, column:192,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:192,the value of plot_cost is         : 4.727168036882184 

 At row:69, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:69, column:193,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:193,the value of plot_cost is         : 4.697087988398561 

 At row:69, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:69, column:194,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:194,the value of plot_cost is         : 4.667816000317452 

 At row:69, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:69, column:195,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:195,the value of plot_cost is         : 4.639352072638857 

 At row:69, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:69, column:196,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:196,the value of plot_cost is         : 4.611696205362778 

 At row:69, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:69, column:197,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:197,the value of plot_cost is         : 4.584848398489215 

 At row:69, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:69, column:198,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:198,the value of plot_cost is         : 4.5588086520181665 

 At row:69, column:199,the value of plot_t0 is           : 3.0
 At row:69, column:199,the value of plot_t1 is           : 0.3869346733668342
 At row:69, column:199,the value of plot_cost is         : 4.533576965949633 

 At row:70, column:0,the value of plot_t0 is           : -1.0
 At row:70, column:0,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:0,the value of plot_cost is         : 24.71121577016453 

 At row:70, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:70, column:1,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:1,the value of plot_cost is         : 24.52866626744634 

 At row:70, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:70, column:2,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:2,the value of plot_cost is         : 24.34692482513067 

 At row:70, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:70, column:3,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:3,the value of plot_cost is         : 24.165991443217518 

 At row:70, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:70, column:4,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:4,the value of plot_cost is         : 23.985866121706877 

 At row:70, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:70, column:5,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:5,the value of plot_cost is         : 23.806548860598753 

 At row:70, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:70, column:6,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:6,the value of plot_cost is         : 23.62803965989314 

 At row:70, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:70, column:7,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:7,the value of plot_cost is         : 23.450338519590048 

 At row:70, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:70, column:8,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:8,the value of plot_cost is         : 23.273445439689468 

 At row:70, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:70, column:9,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:9,the value of plot_cost is         : 23.097360420191404 

 At row:70, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:70, column:10,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:10,the value of plot_cost is         : 22.922083461095852 

 At row:70, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:70, column:11,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:11,the value of plot_cost is         : 22.74761456240282 

 At row:70, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:70, column:12,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:12,the value of plot_cost is         : 22.5739537241123 

 At row:70, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:70, column:13,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:13,the value of plot_cost is         : 22.401100946224297 

 At row:70, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:70, column:14,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:14,the value of plot_cost is         : 22.22905622873881 

 At row:70, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:70, column:15,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:15,the value of plot_cost is         : 22.05781957165583 

 At row:70, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:70, column:16,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:16,the value of plot_cost is         : 21.887390974975375 

 At row:70, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:70, column:17,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:17,the value of plot_cost is         : 21.71777043869743 

 At row:70, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:70, column:18,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:18,the value of plot_cost is         : 21.548957962822 

 At row:70, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:70, column:19,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:19,the value of plot_cost is         : 21.38095354734909 

 At row:70, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:70, column:20,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:20,the value of plot_cost is         : 21.21375719227869 

 At row:70, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:70, column:21,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:21,the value of plot_cost is         : 21.047368897610802 

 At row:70, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:70, column:22,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:22,the value of plot_cost is         : 20.881788663345436 

 At row:70, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:70, column:23,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:23,the value of plot_cost is         : 20.71701648948258 

 At row:70, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:70, column:24,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:24,the value of plot_cost is         : 20.553052376022247 

 At row:70, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:70, column:25,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:25,the value of plot_cost is         : 20.38989632296442 

 At row:70, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:70, column:26,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:26,the value of plot_cost is         : 20.227548330309112 

 At row:70, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:70, column:27,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:27,the value of plot_cost is         : 20.06600839805632 

 At row:70, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:70, column:28,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:28,the value of plot_cost is         : 19.90527652620604 

 At row:70, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:70, column:29,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:29,the value of plot_cost is         : 19.74535271475828 

 At row:70, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:70, column:30,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:30,the value of plot_cost is         : 19.58623696371303 

 At row:70, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:70, column:31,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:31,the value of plot_cost is         : 19.4279292730703 

 At row:70, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:70, column:32,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:32,the value of plot_cost is         : 19.27042964283008 

 At row:70, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:70, column:33,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:33,the value of plot_cost is         : 19.113738072992376 

 At row:70, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:70, column:34,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:34,the value of plot_cost is         : 18.95785456355719 

 At row:70, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:70, column:35,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:35,the value of plot_cost is         : 18.802779114524515 

 At row:70, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:70, column:36,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:36,the value of plot_cost is         : 18.648511725894362 

 At row:70, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:70, column:37,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:37,the value of plot_cost is         : 18.49505239766672 

 At row:70, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:70, column:38,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:38,the value of plot_cost is         : 18.342401129841594 

 At row:70, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:70, column:39,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:39,the value of plot_cost is         : 18.190557922418982 

 At row:70, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:70, column:40,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:40,the value of plot_cost is         : 18.039522775398883 

 At row:70, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:70, column:41,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:41,the value of plot_cost is         : 17.889295688781303 

 At row:70, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:70, column:42,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:42,the value of plot_cost is         : 17.739876662566235 

 At row:70, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:70, column:43,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:43,the value of plot_cost is         : 17.591265696753684 

 At row:70, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:70, column:44,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:44,the value of plot_cost is         : 17.44346279134365 

 At row:70, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:70, column:45,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:45,the value of plot_cost is         : 17.296467946336126 

 At row:70, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:70, column:46,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:46,the value of plot_cost is         : 17.15028116173112 

 At row:70, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:70, column:47,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:47,the value of plot_cost is         : 17.004902437528628 

 At row:70, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:70, column:48,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:48,the value of plot_cost is         : 16.860331773728653 

 At row:70, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:70, column:49,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:49,the value of plot_cost is         : 16.71656917033119 

 At row:70, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:70, column:50,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:50,the value of plot_cost is         : 16.573614627336248 

 At row:70, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:70, column:51,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:51,the value of plot_cost is         : 16.431468144743814 

 At row:70, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:70, column:52,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:52,the value of plot_cost is         : 16.2901297225539 

 At row:70, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:70, column:53,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:53,the value of plot_cost is         : 16.149599360766498 

 At row:70, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:70, column:54,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:54,the value of plot_cost is         : 16.009877059381612 

 At row:70, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:70, column:55,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:55,the value of plot_cost is         : 15.87096281839924 

 At row:70, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:70, column:56,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:56,the value of plot_cost is         : 15.732856637819387 

 At row:70, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:70, column:57,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:57,the value of plot_cost is         : 15.595558517642047 

 At row:70, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:70, column:58,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:58,the value of plot_cost is         : 15.459068457867222 

 At row:70, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:70, column:59,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:59,the value of plot_cost is         : 15.32338645849491 

 At row:70, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:70, column:60,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:60,the value of plot_cost is         : 15.188512519525114 

 At row:70, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:70, column:61,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:61,the value of plot_cost is         : 15.054446640957837 

 At row:70, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:70, column:62,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:62,the value of plot_cost is         : 14.921188822793072 

 At row:70, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:70, column:63,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:63,the value of plot_cost is         : 14.788739065030821 

 At row:70, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:70, column:64,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:64,the value of plot_cost is         : 14.657097367671087 

 At row:70, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:70, column:65,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:65,the value of plot_cost is         : 14.526263730713866 

 At row:70, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:70, column:66,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:66,the value of plot_cost is         : 14.396238154159164 

 At row:70, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:70, column:67,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:67,the value of plot_cost is         : 14.267020638006974 

 At row:70, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:70, column:68,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:68,the value of plot_cost is         : 14.138611182257296 

 At row:70, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:70, column:69,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:69,the value of plot_cost is         : 14.01100978691014 

 At row:70, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:70, column:70,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:70,the value of plot_cost is         : 13.884216451965493 

 At row:70, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:70, column:71,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:71,the value of plot_cost is         : 13.758231177423365 

 At row:70, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:70, column:72,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:72,the value of plot_cost is         : 13.63305396328375 

 At row:70, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:70, column:73,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:73,the value of plot_cost is         : 13.508684809546653 

 At row:70, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:70, column:74,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:74,the value of plot_cost is         : 13.38512371621207 

 At row:70, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:70, column:75,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:75,the value of plot_cost is         : 13.262370683279999 

 At row:70, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:70, column:76,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:76,the value of plot_cost is         : 13.140425710750446 

 At row:70, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:70, column:77,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:77,the value of plot_cost is         : 13.019288798623409 

 At row:70, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:70, column:78,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:78,the value of plot_cost is         : 12.89895994689888 

 At row:70, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:70, column:79,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:79,the value of plot_cost is         : 12.779439155576874 

 At row:70, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:70, column:80,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:80,the value of plot_cost is         : 12.66072642465738 

 At row:70, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:70, column:81,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:81,the value of plot_cost is         : 12.542821754140405 

 At row:70, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:70, column:82,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:82,the value of plot_cost is         : 12.42572514402594 

 At row:70, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:70, column:83,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:83,the value of plot_cost is         : 12.309436594313993 

 At row:70, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:70, column:84,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:84,the value of plot_cost is         : 12.193956105004562 

 At row:70, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:70, column:85,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:85,the value of plot_cost is         : 12.07928367609764 

 At row:70, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:70, column:86,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:86,the value of plot_cost is         : 11.96541930759324 

 At row:70, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:70, column:87,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:87,the value of plot_cost is         : 11.85236299949135 

 At row:70, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:70, column:88,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:88,the value of plot_cost is         : 11.740114751791978 

 At row:70, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:70, column:89,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:89,the value of plot_cost is         : 11.628674564495121 

 At row:70, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:70, column:90,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:90,the value of plot_cost is         : 11.518042437600776 

 At row:70, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:70, column:91,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:91,the value of plot_cost is         : 11.408218371108951 

 At row:70, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:70, column:92,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:92,the value of plot_cost is         : 11.29920236501964 

 At row:70, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:70, column:93,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:93,the value of plot_cost is         : 11.190994419332842 

 At row:70, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:70, column:94,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:94,the value of plot_cost is         : 11.08359453404856 

 At row:70, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:70, column:95,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:95,the value of plot_cost is         : 10.97700270916679 

 At row:70, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:70, column:96,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:96,the value of plot_cost is         : 10.871218944687541 

 At row:70, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:70, column:97,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:97,the value of plot_cost is         : 10.766243240610804 

 At row:70, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:70, column:98,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:98,the value of plot_cost is         : 10.662075596936582 

 At row:70, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:70, column:99,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:99,the value of plot_cost is         : 10.558716013664878 

 At row:70, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:70, column:100,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:100,the value of plot_cost is         : 10.456164490795686 

 At row:70, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:70, column:101,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:101,the value of plot_cost is         : 10.354421028329007 

 At row:70, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:70, column:102,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:102,the value of plot_cost is         : 10.253485626264846 

 At row:70, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:70, column:103,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:103,the value of plot_cost is         : 10.1533582846032 

 At row:70, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:70, column:104,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:104,the value of plot_cost is         : 10.054039003344066 

 At row:70, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:70, column:105,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:105,the value of plot_cost is         : 9.955527782487453 

 At row:70, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:70, column:106,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:106,the value of plot_cost is         : 9.85782462203335 

 At row:70, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:70, column:107,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:107,the value of plot_cost is         : 9.760929521981765 

 At row:70, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:70, column:108,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:108,the value of plot_cost is         : 9.664842482332693 

 At row:70, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:70, column:109,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:109,the value of plot_cost is         : 9.569563503086137 

 At row:70, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:70, column:110,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:110,the value of plot_cost is         : 9.475092584242097 

 At row:70, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:70, column:111,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:111,the value of plot_cost is         : 9.381429725800572 

 At row:70, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:70, column:112,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:112,the value of plot_cost is         : 9.28857492776156 

 At row:70, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:70, column:113,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:113,the value of plot_cost is         : 9.196528190125065 

 At row:70, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:70, column:114,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:114,the value of plot_cost is         : 9.105289512891083 

 At row:70, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:70, column:115,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:115,the value of plot_cost is         : 9.01485889605962 

 At row:70, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:70, column:116,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:116,the value of plot_cost is         : 8.92523633963067 

 At row:70, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:70, column:117,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:117,the value of plot_cost is         : 8.836421843604235 

 At row:70, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:70, column:118,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:118,the value of plot_cost is         : 8.748415407980314 

 At row:70, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:70, column:119,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:119,the value of plot_cost is         : 8.66121703275891 

 At row:70, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:70, column:120,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:120,the value of plot_cost is         : 8.574826717940018 

 At row:70, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:70, column:121,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:121,the value of plot_cost is         : 8.489244463523645 

 At row:70, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:70, column:122,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:122,the value of plot_cost is         : 8.404470269509785 

 At row:70, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:70, column:123,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:123,the value of plot_cost is         : 8.32050413589844 

 At row:70, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:70, column:124,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:124,the value of plot_cost is         : 8.237346062689612 

 At row:70, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:70, column:125,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:125,the value of plot_cost is         : 8.154996049883296 

 At row:70, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:70, column:126,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:126,the value of plot_cost is         : 8.073454097479498 

 At row:70, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:70, column:127,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:127,the value of plot_cost is         : 7.992720205478214 

 At row:70, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:70, column:128,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:128,the value of plot_cost is         : 7.912794373879445 

 At row:70, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:70, column:129,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:129,the value of plot_cost is         : 7.833676602683189 

 At row:70, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:70, column:130,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:130,the value of plot_cost is         : 7.755366891889452 

 At row:70, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:70, column:131,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:131,the value of plot_cost is         : 7.677865241498227 

 At row:70, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:70, column:132,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:132,the value of plot_cost is         : 7.601171651509519 

 At row:70, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:70, column:133,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:133,the value of plot_cost is         : 7.525286121923325 

 At row:70, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:70, column:134,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:134,the value of plot_cost is         : 7.450208652739647 

 At row:70, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:70, column:135,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:135,the value of plot_cost is         : 7.375939243958482 

 At row:70, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:70, column:136,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:136,the value of plot_cost is         : 7.302477895579835 

 At row:70, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:70, column:137,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:137,the value of plot_cost is         : 7.2298246076037005 

 At row:70, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:70, column:138,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:138,the value of plot_cost is         : 7.157979380030082 

 At row:70, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:70, column:139,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:139,the value of plot_cost is         : 7.08694221285898 

 At row:70, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:70, column:140,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:140,the value of plot_cost is         : 7.016713106090391 

 At row:70, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:70, column:141,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:141,the value of plot_cost is         : 6.947292059724319 

 At row:70, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:70, column:142,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:142,the value of plot_cost is         : 6.87867907376076 

 At row:70, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:70, column:143,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:143,the value of plot_cost is         : 6.8108741481997175 

 At row:70, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:70, column:144,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:144,the value of plot_cost is         : 6.74387728304119 

 At row:70, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:70, column:145,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:145,the value of plot_cost is         : 6.677688478285177 

 At row:70, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:70, column:146,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:146,the value of plot_cost is         : 6.61230773393168 

 At row:70, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:70, column:147,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:147,the value of plot_cost is         : 6.547735049980698 

 At row:70, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:70, column:148,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:148,the value of plot_cost is         : 6.48397042643223 

 At row:70, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:70, column:149,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:149,the value of plot_cost is         : 6.421013863286278 

 At row:70, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:70, column:150,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:150,the value of plot_cost is         : 6.35886536054284 

 At row:70, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:70, column:151,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:151,the value of plot_cost is         : 6.297524918201917 

 At row:70, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:70, column:152,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:152,the value of plot_cost is         : 6.236992536263512 

 At row:70, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:70, column:153,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:153,the value of plot_cost is         : 6.17726821472762 

 At row:70, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:70, column:154,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:154,the value of plot_cost is         : 6.118351953594243 

 At row:70, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:70, column:155,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:155,the value of plot_cost is         : 6.06024375286338 

 At row:70, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:70, column:156,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:156,the value of plot_cost is         : 6.002943612535034 

 At row:70, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:70, column:157,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:157,the value of plot_cost is         : 5.946451532609203 

 At row:70, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:70, column:158,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:158,the value of plot_cost is         : 5.890767513085886 

 At row:70, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:70, column:159,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:159,the value of plot_cost is         : 5.8358915539650855 

 At row:70, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:70, column:160,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:160,the value of plot_cost is         : 5.781823655246798 

 At row:70, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:70, column:161,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:161,the value of plot_cost is         : 5.728563816931026 

 At row:70, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:70, column:162,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:162,the value of plot_cost is         : 5.676112039017771 

 At row:70, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:70, column:163,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:163,the value of plot_cost is         : 5.62446832150703 

 At row:70, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:70, column:164,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:164,the value of plot_cost is         : 5.573632664398804 

 At row:70, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:70, column:165,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:165,the value of plot_cost is         : 5.523605067693093 

 At row:70, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:70, column:166,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:166,the value of plot_cost is         : 5.474385531389896 

 At row:70, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:70, column:167,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:167,the value of plot_cost is         : 5.425974055489217 

 At row:70, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:70, column:168,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:168,the value of plot_cost is         : 5.378370639991051 

 At row:70, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:70, column:169,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:169,the value of plot_cost is         : 5.3315752848954014 

 At row:70, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:70, column:170,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:170,the value of plot_cost is         : 5.2855879902022656 

 At row:70, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:70, column:171,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:171,the value of plot_cost is         : 5.240408755911645 

 At row:70, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:70, column:172,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:172,the value of plot_cost is         : 5.196037582023539 

 At row:70, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:70, column:173,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:173,the value of plot_cost is         : 5.152474468537949 

 At row:70, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:70, column:174,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:174,the value of plot_cost is         : 5.109719415454875 

 At row:70, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:70, column:175,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:175,the value of plot_cost is         : 5.067772422774315 

 At row:70, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:70, column:176,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:176,the value of plot_cost is         : 5.026633490496269 

 At row:70, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:70, column:177,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:177,the value of plot_cost is         : 4.986302618620741 

 At row:70, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:70, column:178,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:178,the value of plot_cost is         : 4.946779807147725 

 At row:70, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:70, column:179,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:179,the value of plot_cost is         : 4.908065056077226 

 At row:70, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:70, column:180,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:180,the value of plot_cost is         : 4.870158365409241 

 At row:70, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:70, column:181,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:181,the value of plot_cost is         : 4.833059735143771 

 At row:70, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:70, column:182,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:182,the value of plot_cost is         : 4.796769165280817 

 At row:70, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:70, column:183,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:183,the value of plot_cost is         : 4.761286655820379 

 At row:70, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:70, column:184,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:184,the value of plot_cost is         : 4.726612206762454 

 At row:70, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:70, column:185,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:185,the value of plot_cost is         : 4.692745818107045 

 At row:70, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:70, column:186,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:186,the value of plot_cost is         : 4.65968748985415 

 At row:70, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:70, column:187,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:187,the value of plot_cost is         : 4.627437222003771 

 At row:70, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:70, column:188,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:188,the value of plot_cost is         : 4.595995014555907 

 At row:70, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:70, column:189,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:189,the value of plot_cost is         : 4.565360867510559 

 At row:70, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:70, column:190,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:190,the value of plot_cost is         : 4.535534780867724 

 At row:70, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:70, column:191,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:191,the value of plot_cost is         : 4.506516754627406 

 At row:70, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:70, column:192,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:192,the value of plot_cost is         : 4.478306788789603 

 At row:70, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:70, column:193,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:193,the value of plot_cost is         : 4.450904883354315 

 At row:70, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:70, column:194,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:194,the value of plot_cost is         : 4.424311038321542 

 At row:70, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:70, column:195,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:195,the value of plot_cost is         : 4.398525253691282 

 At row:70, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:70, column:196,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:196,the value of plot_cost is         : 4.37354752946354 

 At row:70, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:70, column:197,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:197,the value of plot_cost is         : 4.349377865638311 

 At row:70, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:70, column:198,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:198,the value of plot_cost is         : 4.3260162622155995 

 At row:70, column:199,the value of plot_t0 is           : 3.0
 At row:70, column:199,the value of plot_t1 is           : 0.4070351758793971
 At row:70, column:199,the value of plot_cost is         : 4.303462719195402 

 At row:71, column:0,the value of plot_t0 is           : -1.0
 At row:71, column:0,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:0,the value of plot_cost is         : 23.960733711630656 

 At row:71, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:71, column:1,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:1,the value of plot_cost is         : 23.78086235196081 

 At row:71, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:71, column:2,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:2,the value of plot_cost is         : 23.601799052693472 

 At row:71, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:71, column:3,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:3,the value of plot_cost is         : 23.42354381382865 

 At row:71, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:71, column:4,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:4,the value of plot_cost is         : 23.24609663536635 

 At row:71, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:71, column:5,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:5,the value of plot_cost is         : 23.06945751730656 

 At row:71, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:71, column:6,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:6,the value of plot_cost is         : 22.893626459649287 

 At row:71, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:71, column:7,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:7,the value of plot_cost is         : 22.71860346239453 

 At row:71, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:71, column:8,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:8,the value of plot_cost is         : 22.54438852554228 

 At row:71, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:71, column:9,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:9,the value of plot_cost is         : 22.37098164909256 

 At row:71, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:71, column:10,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:10,the value of plot_cost is         : 22.198382833045343 

 At row:71, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:71, column:11,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:11,the value of plot_cost is         : 22.02659207740064 

 At row:71, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:71, column:12,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:12,the value of plot_cost is         : 21.85560938215846 

 At row:71, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:71, column:13,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:13,the value of plot_cost is         : 21.68543474731879 

 At row:71, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:71, column:14,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:14,the value of plot_cost is         : 21.51606817288164 

 At row:71, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:71, column:15,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:15,the value of plot_cost is         : 21.347509658847002 

 At row:71, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:71, column:16,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:16,the value of plot_cost is         : 21.17975920521488 

 At row:71, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:71, column:17,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:17,the value of plot_cost is         : 21.012816811985267 

 At row:71, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:71, column:18,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:18,the value of plot_cost is         : 20.846682479158176 

 At row:71, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:71, column:19,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:19,the value of plot_cost is         : 20.6813562067336 

 At row:71, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:71, column:20,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:20,the value of plot_cost is         : 20.516837994711537 

 At row:71, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:71, column:21,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:21,the value of plot_cost is         : 20.353127843091986 

 At row:71, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:71, column:22,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:22,the value of plot_cost is         : 20.19022575187495 

 At row:71, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:71, column:23,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:23,the value of plot_cost is         : 20.028131721060433 

 At row:71, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:71, column:24,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:24,the value of plot_cost is         : 19.866845750648434 

 At row:71, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:71, column:25,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:25,the value of plot_cost is         : 19.706367840638944 

 At row:71, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:71, column:26,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:26,the value of plot_cost is         : 19.546697991031973 

 At row:71, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:71, column:27,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:27,the value of plot_cost is         : 19.38783620182751 

 At row:71, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:71, column:28,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:28,the value of plot_cost is         : 19.229782473025576 

 At row:71, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:71, column:29,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:29,the value of plot_cost is         : 19.072536804626147 

 At row:71, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:71, column:30,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:30,the value of plot_cost is         : 18.916099196629236 

 At row:71, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:71, column:31,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:31,the value of plot_cost is         : 18.760469649034835 

 At row:71, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:71, column:32,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:32,the value of plot_cost is         : 18.60564816184295 

 At row:71, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:71, column:33,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:33,the value of plot_cost is         : 18.451634735053588 

 At row:71, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:71, column:34,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:34,the value of plot_cost is         : 18.298429368666735 

 At row:71, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:71, column:35,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:35,the value of plot_cost is         : 18.1460320626824 

 At row:71, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:71, column:36,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:36,the value of plot_cost is         : 17.994442817100577 

 At row:71, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:71, column:37,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:37,the value of plot_cost is         : 17.843661631921268 

 At row:71, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:71, column:38,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:38,the value of plot_cost is         : 17.69368850714448 

 At row:71, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:71, column:39,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:39,the value of plot_cost is         : 17.544523442770203 

 At row:71, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:71, column:40,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:40,the value of plot_cost is         : 17.396166438798442 

 At row:71, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:71, column:41,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:41,the value of plot_cost is         : 17.248617495229198 

 At row:71, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:71, column:42,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:42,the value of plot_cost is         : 17.101876612062465 

 At row:71, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:71, column:43,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:43,the value of plot_cost is         : 16.95594378929825 

 At row:71, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:71, column:44,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:44,the value of plot_cost is         : 16.81081902693655 

 At row:71, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:71, column:45,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:45,the value of plot_cost is         : 16.666502324977362 

 At row:71, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:71, column:46,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:46,the value of plot_cost is         : 16.52299368342069 

 At row:71, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:71, column:47,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:47,the value of plot_cost is         : 16.380293102266535 

 At row:71, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:71, column:48,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:48,the value of plot_cost is         : 16.238400581514895 

 At row:71, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:71, column:49,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:49,the value of plot_cost is         : 16.097316121165772 

 At row:71, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:71, column:50,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:50,the value of plot_cost is         : 15.957039721219164 

 At row:71, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:71, column:51,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:51,the value of plot_cost is         : 15.817571381675066 

 At row:71, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:71, column:52,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:52,the value of plot_cost is         : 15.678911102533483 

 At row:71, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:71, column:53,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:53,the value of plot_cost is         : 15.541058883794422 

 At row:71, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:71, column:54,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:54,the value of plot_cost is         : 15.404014725457872 

 At row:71, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:71, column:55,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:55,the value of plot_cost is         : 15.267778627523835 

 At row:71, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:71, column:56,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:56,the value of plot_cost is         : 15.132350589992317 

 At row:71, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:71, column:57,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:57,the value of plot_cost is         : 14.997730612863311 

 At row:71, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:71, column:58,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:58,the value of plot_cost is         : 14.863918696136823 

 At row:71, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:71, column:59,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:59,the value of plot_cost is         : 14.730914839812849 

 At row:71, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:71, column:60,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:60,the value of plot_cost is         : 14.598719043891387 

 At row:71, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:71, column:61,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:61,the value of plot_cost is         : 14.467331308372442 

 At row:71, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:71, column:62,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:62,the value of plot_cost is         : 14.33675163325601 

 At row:71, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:71, column:63,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:63,the value of plot_cost is         : 14.206980018542101 

 At row:71, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:71, column:64,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:64,the value of plot_cost is         : 14.0780164642307 

 At row:71, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:71, column:65,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:65,the value of plot_cost is         : 13.949860970321815 

 At row:71, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:71, column:66,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:66,the value of plot_cost is         : 13.82251353681545 

 At row:71, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:71, column:67,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:67,the value of plot_cost is         : 13.695974163711593 

 At row:71, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:71, column:68,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:68,the value of plot_cost is         : 13.570242851010256 

 At row:71, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:71, column:69,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:69,the value of plot_cost is         : 13.445319598711432 

 At row:71, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:71, column:70,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:70,the value of plot_cost is         : 13.321204406815124 

 At row:71, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:71, column:71,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:71,the value of plot_cost is         : 13.19789727532133 

 At row:71, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:71, column:72,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:72,the value of plot_cost is         : 13.07539820423005 

 At row:71, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:71, column:73,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:73,the value of plot_cost is         : 12.953707193541291 

 At row:71, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:71, column:74,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:74,the value of plot_cost is         : 12.83282424325504 

 At row:71, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:71, column:75,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:75,the value of plot_cost is         : 12.712749353371308 

 At row:71, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:71, column:76,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:76,the value of plot_cost is         : 12.59348252389009 

 At row:71, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:71, column:77,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:77,the value of plot_cost is         : 12.475023754811383 

 At row:71, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:71, column:78,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:78,the value of plot_cost is         : 12.357373046135198 

 At row:71, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:71, column:79,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:79,the value of plot_cost is         : 12.240530397861527 

 At row:71, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:71, column:80,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:80,the value of plot_cost is         : 12.124495809990368 

 At row:71, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:71, column:81,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:81,the value of plot_cost is         : 12.009269282521725 

 At row:71, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:71, column:82,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:82,the value of plot_cost is         : 11.894850815455595 

 At row:71, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:71, column:83,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:83,the value of plot_cost is         : 11.781240408791987 

 At row:71, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:71, column:84,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:84,the value of plot_cost is         : 11.668438062530887 

 At row:71, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:71, column:85,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:85,the value of plot_cost is         : 11.556443776672303 

 At row:71, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:71, column:86,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:86,the value of plot_cost is         : 11.445257551216239 

 At row:71, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:71, column:87,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:87,the value of plot_cost is         : 11.334879386162685 

 At row:71, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:71, column:88,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:88,the value of plot_cost is         : 11.22530928151165 

 At row:71, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:71, column:89,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:89,the value of plot_cost is         : 11.116547237263127 

 At row:71, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:71, column:90,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:90,the value of plot_cost is         : 11.008593253417121 

 At row:71, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:71, column:91,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:91,the value of plot_cost is         : 10.90144732997363 

 At row:71, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:71, column:92,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:92,the value of plot_cost is         : 10.795109466932653 

 At row:71, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:71, column:93,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:93,the value of plot_cost is         : 10.689579664294191 

 At row:71, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:71, column:94,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:94,the value of plot_cost is         : 10.584857922058246 

 At row:71, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:71, column:95,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:95,the value of plot_cost is         : 10.480944240224813 

 At row:71, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:71, column:96,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:96,the value of plot_cost is         : 10.377838618793897 

 At row:71, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:71, column:97,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:97,the value of plot_cost is         : 10.275541057765496 

 At row:71, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:71, column:98,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:98,the value of plot_cost is         : 10.174051557139611 

 At row:71, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:71, column:99,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:99,the value of plot_cost is         : 10.07337011691624 

 At row:71, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:71, column:100,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:100,the value of plot_cost is         : 9.973496737095386 

 At row:71, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:71, column:101,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:101,the value of plot_cost is         : 9.874431417677044 

 At row:71, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:71, column:102,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:102,the value of plot_cost is         : 9.776174158661219 

 At row:71, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:71, column:103,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:103,the value of plot_cost is         : 9.678724960047907 

 At row:71, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:71, column:104,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:104,the value of plot_cost is         : 9.58208382183711 

 At row:71, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:71, column:105,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:105,the value of plot_cost is         : 9.486250744028832 

 At row:71, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:71, column:106,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:106,the value of plot_cost is         : 9.391225726623066 

 At row:71, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:71, column:107,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:107,the value of plot_cost is         : 9.297008769619813 

 At row:71, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:71, column:108,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:108,the value of plot_cost is         : 9.20359987301908 

 At row:71, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:71, column:109,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:109,the value of plot_cost is         : 9.110999036820859 

 At row:71, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:71, column:110,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:110,the value of plot_cost is         : 9.019206261025152 

 At row:71, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:71, column:111,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:111,the value of plot_cost is         : 8.928221545631965 

 At row:71, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:71, column:112,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:112,the value of plot_cost is         : 8.838044890641289 

 At row:71, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:71, column:113,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:113,the value of plot_cost is         : 8.748676296053132 

 At row:71, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:71, column:114,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:114,the value of plot_cost is         : 8.660115761867486 

 At row:71, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:71, column:115,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:115,the value of plot_cost is         : 8.572363288084354 

 At row:71, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:71, column:116,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:116,the value of plot_cost is         : 8.485418874703742 

 At row:71, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:71, column:117,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:117,the value of plot_cost is         : 8.399282521725642 

 At row:71, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:71, column:118,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:118,the value of plot_cost is         : 8.313954229150058 

 At row:71, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:71, column:119,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:119,the value of plot_cost is         : 8.229433996976988 

 At row:71, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:71, column:120,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:120,the value of plot_cost is         : 8.145721825206433 

 At row:71, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:71, column:121,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:121,the value of plot_cost is         : 8.062817713838394 

 At row:71, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:71, column:122,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:122,the value of plot_cost is         : 7.98072166287287 

 At row:71, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:71, column:123,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:123,the value of plot_cost is         : 7.899433672309863 

 At row:71, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:71, column:124,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:124,the value of plot_cost is         : 7.818953742149369 

 At row:71, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:71, column:125,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:125,the value of plot_cost is         : 7.7392818723913885 

 At row:71, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:71, column:126,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:126,the value of plot_cost is         : 7.6604180630359275 

 At row:71, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:71, column:127,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:127,the value of plot_cost is         : 7.582362314082978 

 At row:71, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:71, column:128,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:128,the value of plot_cost is         : 7.505114625532545 

 At row:71, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:71, column:129,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:129,the value of plot_cost is         : 7.428674997384626 

 At row:71, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:71, column:130,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:130,the value of plot_cost is         : 7.353043429639222 

 At row:71, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:71, column:131,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:131,the value of plot_cost is         : 7.278219922296334 

 At row:71, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:71, column:132,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:132,the value of plot_cost is         : 7.204204475355961 

 At row:71, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:71, column:133,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:133,the value of plot_cost is         : 7.130997088818104 

 At row:71, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:71, column:134,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:134,the value of plot_cost is         : 7.058597762682761 

 At row:71, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:71, column:135,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:135,the value of plot_cost is         : 6.987006496949932 

 At row:71, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:71, column:136,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:136,the value of plot_cost is         : 6.9162232916196205 

 At row:71, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:71, column:137,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:137,the value of plot_cost is         : 6.8462481466918215 

 At row:71, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:71, column:138,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:138,the value of plot_cost is         : 6.777081062166541 

 At row:71, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:71, column:139,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:139,the value of plot_cost is         : 6.708722038043772 

 At row:71, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:71, column:140,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:140,the value of plot_cost is         : 6.641171074323519 

 At row:71, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:71, column:141,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:141,the value of plot_cost is         : 6.574428171005783 

 At row:71, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:71, column:142,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:142,the value of plot_cost is         : 6.508493328090561 

 At row:71, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:71, column:143,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:143,the value of plot_cost is         : 6.443366545577854 

 At row:71, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:71, column:144,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:144,the value of plot_cost is         : 6.379047823467662 

 At row:71, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:71, column:145,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:145,the value of plot_cost is         : 6.315537161759984 

 At row:71, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:71, column:146,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:146,the value of plot_cost is         : 6.252834560454823 

 At row:71, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:71, column:147,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:147,the value of plot_cost is         : 6.190940019552175 

 At row:71, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:71, column:148,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:148,the value of plot_cost is         : 6.1298535390520446 

 At row:71, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:71, column:149,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:149,the value of plot_cost is         : 6.069575118954428 

 At row:71, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:71, column:150,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:150,the value of plot_cost is         : 6.010104759259326 

 At row:71, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:71, column:151,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:151,the value of plot_cost is         : 5.951442459966739 

 At row:71, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:71, column:152,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:152,the value of plot_cost is         : 5.893588221076667 

 At row:71, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:71, column:153,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:153,the value of plot_cost is         : 5.836542042589112 

 At row:71, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:71, column:154,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:154,the value of plot_cost is         : 5.7803039245040715 

 At row:71, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:71, column:155,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:155,the value of plot_cost is         : 5.724873866821544 

 At row:71, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:71, column:156,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:156,the value of plot_cost is         : 5.6702518695415325 

 At row:71, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:71, column:157,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:157,the value of plot_cost is         : 5.616437932664038 

 At row:71, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:71, column:158,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:158,the value of plot_cost is         : 5.5634320561890585 

 At row:71, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:71, column:159,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:159,the value of plot_cost is         : 5.511234240116592 

 At row:71, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:71, column:160,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:160,the value of plot_cost is         : 5.4598444844466405 

 At row:71, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:71, column:161,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:161,the value of plot_cost is         : 5.409262789179204 

 At row:71, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:71, column:162,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:162,the value of plot_cost is         : 5.359489154314285 

 At row:71, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:71, column:163,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:163,the value of plot_cost is         : 5.310523579851881 

 At row:71, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:71, column:164,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:164,the value of plot_cost is         : 5.26236606579199 

 At row:71, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:71, column:165,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:165,the value of plot_cost is         : 5.2150166121346135 

 At row:71, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:71, column:166,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:166,the value of plot_cost is         : 5.168475218879753 

 At row:71, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:71, column:167,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:167,the value of plot_cost is         : 5.122741886027408 

 At row:71, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:71, column:168,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:168,the value of plot_cost is         : 5.077816613577579 

 At row:71, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:71, column:169,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:169,the value of plot_cost is         : 5.0336994015302645 

 At row:71, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:71, column:170,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:170,the value of plot_cost is         : 4.990390249885465 

 At row:71, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:71, column:171,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:171,the value of plot_cost is         : 4.9478891586431795 

 At row:71, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:71, column:172,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:172,the value of plot_cost is         : 4.906196127803411 

 At row:71, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:71, column:173,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:173,the value of plot_cost is         : 4.865311157366157 

 At row:71, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:71, column:174,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:174,the value of plot_cost is         : 4.825234247331417 

 At row:71, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:71, column:175,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:175,the value of plot_cost is         : 4.785965397699193 

 At row:71, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:71, column:176,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:176,the value of plot_cost is         : 4.747504608469481 

 At row:71, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:71, column:177,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:177,the value of plot_cost is         : 4.709851879642288 

 At row:71, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:71, column:178,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:178,the value of plot_cost is         : 4.673007211217611 

 At row:71, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:71, column:179,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:179,the value of plot_cost is         : 4.636970603195446 

 At row:71, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:71, column:180,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:180,the value of plot_cost is         : 4.601742055575797 

 At row:71, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:71, column:181,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:181,the value of plot_cost is         : 4.567321568358662 

 At row:71, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:71, column:182,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:182,the value of plot_cost is         : 4.533709141544044 

 At row:71, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:71, column:183,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:183,the value of plot_cost is         : 4.500904775131942 

 At row:71, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:71, column:184,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:184,the value of plot_cost is         : 4.468908469122353 

 At row:71, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:71, column:185,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:185,the value of plot_cost is         : 4.437720223515279 

 At row:71, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:71, column:186,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:186,the value of plot_cost is         : 4.40734003831072 

 At row:71, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:71, column:187,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:187,the value of plot_cost is         : 4.377767913508677 

 At row:71, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:71, column:188,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:188,the value of plot_cost is         : 4.349003849109151 

 At row:71, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:71, column:189,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:189,the value of plot_cost is         : 4.321047845112137 

 At row:71, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:71, column:190,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:190,the value of plot_cost is         : 4.293899901517638 

 At row:71, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:71, column:191,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:191,the value of plot_cost is         : 4.267560018325655 

 At row:71, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:71, column:192,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:192,the value of plot_cost is         : 4.242028195536187 

 At row:71, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:71, column:193,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:193,the value of plot_cost is         : 4.217304433149236 

 At row:71, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:71, column:194,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:194,the value of plot_cost is         : 4.193388731164798 

 At row:71, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:71, column:195,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:195,the value of plot_cost is         : 4.170281089582875 

 At row:71, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:71, column:196,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:196,the value of plot_cost is         : 4.147981508403467 

 At row:71, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:71, column:197,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:197,the value of plot_cost is         : 4.126489987626575 

 At row:71, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:71, column:198,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:198,the value of plot_cost is         : 4.105806527252199 

 At row:71, column:199,the value of plot_t0 is           : 3.0
 At row:71, column:199,the value of plot_t1 is           : 0.42713567839195976
 At row:71, column:199,the value of plot_cost is         : 4.085931127280336 

 At row:72, column:0,the value of plot_t0 is           : -1.0
 At row:72, column:0,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:0,the value of plot_cost is         : 23.222834307935944 

 At row:72, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:72, column:1,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:1,the value of plot_cost is         : 23.04564109131443 

 At row:72, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:72, column:2,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:2,the value of plot_cost is         : 22.869255935095428 

 At row:72, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:72, column:3,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:3,the value of plot_cost is         : 22.69367883927895 

 At row:72, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:72, column:4,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:4,the value of plot_cost is         : 22.518909803864975 

 At row:72, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:72, column:5,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:5,the value of plot_cost is         : 22.34494882885353 

 At row:72, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:72, column:6,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:6,the value of plot_cost is         : 22.171795914244584 

 At row:72, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:72, column:7,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:7,the value of plot_cost is         : 21.99945106003816 

 At row:72, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:72, column:8,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:8,the value of plot_cost is         : 21.827914266234256 

 At row:72, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:72, column:9,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:9,the value of plot_cost is         : 21.65718553283286 

 At row:72, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:72, column:10,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:10,the value of plot_cost is         : 21.487264859833985 

 At row:72, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:72, column:11,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:11,the value of plot_cost is         : 21.31815224723762 

 At row:72, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:72, column:12,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:12,the value of plot_cost is         : 21.149847695043775 

 At row:72, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:72, column:13,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:13,the value of plot_cost is         : 20.98235120325244 

 At row:72, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:72, column:14,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:14,the value of plot_cost is         : 20.815662771863625 

 At row:72, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:72, column:15,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:15,the value of plot_cost is         : 20.64978240087732 

 At row:72, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:72, column:16,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:16,the value of plot_cost is         : 20.484710090293532 

 At row:72, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:72, column:17,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:17,the value of plot_cost is         : 20.32044584011226 

 At row:72, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:72, column:18,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:18,the value of plot_cost is         : 20.156989650333504 

 At row:72, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:72, column:19,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:19,the value of plot_cost is         : 19.99434152095726 

 At row:72, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:72, column:20,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:20,the value of plot_cost is         : 19.832501451983532 

 At row:72, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:72, column:21,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:21,the value of plot_cost is         : 19.67146944341232 

 At row:72, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:72, column:22,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:22,the value of plot_cost is         : 19.511245495243625 

 At row:72, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:72, column:23,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:23,the value of plot_cost is         : 19.35182960747744 

 At row:72, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:72, column:24,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:24,the value of plot_cost is         : 19.193221780113777 

 At row:72, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:72, column:25,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:25,the value of plot_cost is         : 19.035422013152623 

 At row:72, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:72, column:26,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:26,the value of plot_cost is         : 18.878430306593987 

 At row:72, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:72, column:27,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:27,the value of plot_cost is         : 18.722246660437865 

 At row:72, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:72, column:28,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:28,the value of plot_cost is         : 18.56687107468426 

 At row:72, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:72, column:29,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:29,the value of plot_cost is         : 18.412303549333167 

 At row:72, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:72, column:30,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:30,the value of plot_cost is         : 18.258544084384592 

 At row:72, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:72, column:31,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:31,the value of plot_cost is         : 18.10559267983853 

 At row:72, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:72, column:32,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:32,the value of plot_cost is         : 17.95344933569498 

 At row:72, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:72, column:33,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:33,the value of plot_cost is         : 17.80211405195395 

 At row:72, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:72, column:34,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:34,the value of plot_cost is         : 17.651586828615432 

 At row:72, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:72, column:35,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:35,the value of plot_cost is         : 17.501867665679438 

 At row:72, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:72, column:36,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:36,the value of plot_cost is         : 17.35295656314595 

 At row:72, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:72, column:37,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:37,the value of plot_cost is         : 17.20485352101498 

 At row:72, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:72, column:38,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:38,the value of plot_cost is         : 17.05755853928652 

 At row:72, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:72, column:39,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:39,the value of plot_cost is         : 16.91107161796058 

 At row:72, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:72, column:40,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:40,the value of plot_cost is         : 16.76539275703716 

 At row:72, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:72, column:41,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:41,the value of plot_cost is         : 16.620521956516246 

 At row:72, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:72, column:42,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:42,the value of plot_cost is         : 16.47645921639785 

 At row:72, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:72, column:43,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:43,the value of plot_cost is         : 16.333204536681972 

 At row:72, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:72, column:44,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:44,the value of plot_cost is         : 16.190757917368607 

 At row:72, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:72, column:45,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:45,the value of plot_cost is         : 16.049119358457755 

 At row:72, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:72, column:46,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:46,the value of plot_cost is         : 15.908288859949419 

 At row:72, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:72, column:47,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:47,the value of plot_cost is         : 15.7682664218436 

 At row:72, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:72, column:48,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:48,the value of plot_cost is         : 15.629052044140296 

 At row:72, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:72, column:49,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:49,the value of plot_cost is         : 15.490645726839505 

 At row:72, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:72, column:50,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:50,the value of plot_cost is         : 15.353047469941234 

 At row:72, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:72, column:51,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:51,the value of plot_cost is         : 15.216257273445475 

 At row:72, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:72, column:52,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:52,the value of plot_cost is         : 15.080275137352226 

 At row:72, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:72, column:53,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:53,the value of plot_cost is         : 14.9451010616615 

 At row:72, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:72, column:54,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:54,the value of plot_cost is         : 14.810735046373285 

 At row:72, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:72, column:55,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:55,the value of plot_cost is         : 14.677177091487584 

 At row:72, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:72, column:56,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:56,the value of plot_cost is         : 14.544427197004401 

 At row:72, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:72, column:57,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:57,the value of plot_cost is         : 14.412485362923734 

 At row:72, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:72, column:58,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:58,the value of plot_cost is         : 14.28135158924558 

 At row:72, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:72, column:59,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:59,the value of plot_cost is         : 14.151025875969943 

 At row:72, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:72, column:60,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:60,the value of plot_cost is         : 14.021508223096816 

 At row:72, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:72, column:61,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:61,the value of plot_cost is         : 13.892798630626208 

 At row:72, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:72, column:62,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:62,the value of plot_cost is         : 13.764897098558114 

 At row:72, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:72, column:63,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:63,the value of plot_cost is         : 13.637803626892538 

 At row:72, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:72, column:64,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:64,the value of plot_cost is         : 13.51151821562947 

 At row:72, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:72, column:65,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:65,the value of plot_cost is         : 13.386040864768924 

 At row:72, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:72, column:66,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:66,the value of plot_cost is         : 13.26137157431089 

 At row:72, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:72, column:67,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:67,the value of plot_cost is         : 13.137510344255372 

 At row:72, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:72, column:68,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:68,the value of plot_cost is         : 13.014457174602372 

 At row:72, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:72, column:69,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:69,the value of plot_cost is         : 12.892212065351881 

 At row:72, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:72, column:70,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:70,the value of plot_cost is         : 12.77077501650391 

 At row:72, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:72, column:71,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:71,the value of plot_cost is         : 12.650146028058453 

 At row:72, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:72, column:72,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:72,the value of plot_cost is         : 12.530325100015508 

 At row:72, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:72, column:73,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:73,the value of plot_cost is         : 12.411312232375083 

 At row:72, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:72, column:74,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:74,the value of plot_cost is         : 12.293107425137169 

 At row:72, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:72, column:75,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:75,the value of plot_cost is         : 12.17571067830177 

 At row:72, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:72, column:76,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:76,the value of plot_cost is         : 12.059121991868892 

 At row:72, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:72, column:77,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:77,the value of plot_cost is         : 11.943341365838522 

 At row:72, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:72, column:78,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:78,the value of plot_cost is         : 11.82836880021067 

 At row:72, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:72, column:79,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:79,the value of plot_cost is         : 11.714204294985333 

 At row:72, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:72, column:80,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:80,the value of plot_cost is         : 11.600847850162511 

 At row:72, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:72, column:81,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:81,the value of plot_cost is         : 11.488299465742207 

 At row:72, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:72, column:82,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:82,the value of plot_cost is         : 11.376559141724414 

 At row:72, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:72, column:83,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:83,the value of plot_cost is         : 11.265626878109135 

 At row:72, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:72, column:84,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:84,the value of plot_cost is         : 11.155502674896374 

 At row:72, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:72, column:85,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:85,the value of plot_cost is         : 11.046186532086129 

 At row:72, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:72, column:86,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:86,the value of plot_cost is         : 10.9376784496784 

 At row:72, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:72, column:87,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:87,the value of plot_cost is         : 10.829978427673181 

 At row:72, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:72, column:88,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:88,the value of plot_cost is         : 10.723086466070477 

 At row:72, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:72, column:89,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:89,the value of plot_cost is         : 10.617002564870294 

 At row:72, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:72, column:90,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:90,the value of plot_cost is         : 10.511726724072622 

 At row:72, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:72, column:91,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:91,the value of plot_cost is         : 10.407258943677467 

 At row:72, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:72, column:92,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:92,the value of plot_cost is         : 10.303599223684826 

 At row:72, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:72, column:93,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:93,the value of plot_cost is         : 10.200747564094698 

 At row:72, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:72, column:94,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:94,the value of plot_cost is         : 10.098703964907088 

 At row:72, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:72, column:95,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:95,the value of plot_cost is         : 9.997468426121992 

 At row:72, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:72, column:96,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:96,the value of plot_cost is         : 9.897040947739415 

 At row:72, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:72, column:97,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:97,the value of plot_cost is         : 9.797421529759347 

 At row:72, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:72, column:98,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:98,the value of plot_cost is         : 9.698610172181795 

 At row:72, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:72, column:99,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:99,the value of plot_cost is         : 9.600606875006763 

 At row:72, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:72, column:100,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:100,the value of plot_cost is         : 9.503411638234244 

 At row:72, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:72, column:101,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:101,the value of plot_cost is         : 9.40702446186424 

 At row:72, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:72, column:102,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:102,the value of plot_cost is         : 9.311445345896747 

 At row:72, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:72, column:103,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:103,the value of plot_cost is         : 9.21667429033177 

 At row:72, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:72, column:104,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:104,the value of plot_cost is         : 9.122711295169312 

 At row:72, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:72, column:105,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:105,the value of plot_cost is         : 9.02955636040937 

 At row:72, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:72, column:106,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:106,the value of plot_cost is         : 8.93720948605194 

 At row:72, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:72, column:107,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:107,the value of plot_cost is         : 8.845670672097022 

 At row:72, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:72, column:108,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:108,the value of plot_cost is         : 8.754939918544622 

 At row:72, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:72, column:109,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:109,the value of plot_cost is         : 8.665017225394738 

 At row:72, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:72, column:110,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:110,the value of plot_cost is         : 8.575902592647369 

 At row:72, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:72, column:111,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:111,the value of plot_cost is         : 8.487596020302517 

 At row:72, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:72, column:112,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:112,the value of plot_cost is         : 8.400097508360176 

 At row:72, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:72, column:113,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:113,the value of plot_cost is         : 8.313407056820353 

 At row:72, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:72, column:114,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:114,the value of plot_cost is         : 8.227524665683044 

 At row:72, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:72, column:115,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:115,the value of plot_cost is         : 8.142450334948249 

 At row:72, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:72, column:116,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:116,the value of plot_cost is         : 8.058184064615974 

 At row:72, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:72, column:117,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:117,the value of plot_cost is         : 7.9747258546862065 

 At row:72, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:72, column:118,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:118,the value of plot_cost is         : 7.892075705158957 

 At row:72, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:72, column:119,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:119,the value of plot_cost is         : 7.8102336160342265 

 At row:72, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:72, column:120,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:120,the value of plot_cost is         : 7.729199587312007 

 At row:72, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:72, column:121,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:121,the value of plot_cost is         : 7.648973618992305 

 At row:72, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:72, column:122,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:122,the value of plot_cost is         : 7.5695557110751155 

 At row:72, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:72, column:123,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:123,the value of plot_cost is         : 7.490945863560442 

 At row:72, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:72, column:124,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:124,the value of plot_cost is         : 7.413144076448284 

 At row:72, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:72, column:125,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:125,the value of plot_cost is         : 7.336150349738641 

 At row:72, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:72, column:126,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:126,the value of plot_cost is         : 7.259964683431514 

 At row:72, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:72, column:127,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:127,the value of plot_cost is         : 7.184587077526901 

 At row:72, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:72, column:128,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:128,the value of plot_cost is         : 7.110017532024802 

 At row:72, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:72, column:129,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:129,the value of plot_cost is         : 7.036256046925221 

 At row:72, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:72, column:130,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:130,the value of plot_cost is         : 6.963302622228152 

 At row:72, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:72, column:131,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:131,the value of plot_cost is         : 6.891157257933601 

 At row:72, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:72, column:132,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:132,the value of plot_cost is         : 6.819819954041563 

 At row:72, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:72, column:133,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:133,the value of plot_cost is         : 6.7492907105520406 

 At row:72, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:72, column:134,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:134,the value of plot_cost is         : 6.679569527465034 

 At row:72, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:72, column:135,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:135,the value of plot_cost is         : 6.610656404780542 

 At row:72, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:72, column:136,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:136,the value of plot_cost is         : 6.542551342498566 

 At row:72, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:72, column:137,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:137,the value of plot_cost is         : 6.475254340619103 

 At row:72, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:72, column:138,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:138,the value of plot_cost is         : 6.408765399142155 

 At row:72, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:72, column:139,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:139,the value of plot_cost is         : 6.343084518067724 

 At row:72, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:72, column:140,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:140,the value of plot_cost is         : 6.2782116973958075 

 At row:72, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:72, column:141,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:141,the value of plot_cost is         : 6.214146937126406 

 At row:72, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:72, column:142,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:142,the value of plot_cost is         : 6.150890237259519 

 At row:72, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:72, column:143,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:143,the value of plot_cost is         : 6.088441597795147 

 At row:72, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:72, column:144,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:144,the value of plot_cost is         : 6.026801018733292 

 At row:72, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:72, column:145,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:145,the value of plot_cost is         : 5.96596850007395 

 At row:72, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:72, column:146,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:146,the value of plot_cost is         : 5.905944041817126 

 At row:72, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:72, column:147,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:147,the value of plot_cost is         : 5.846727643962813 

 At row:72, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:72, column:148,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:148,the value of plot_cost is         : 5.788319306511017 

 At row:72, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:72, column:149,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:149,the value of plot_cost is         : 5.730719029461736 

 At row:72, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:72, column:150,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:150,the value of plot_cost is         : 5.673926812814971 

 At row:72, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:72, column:151,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:151,the value of plot_cost is         : 5.617942656570719 

 At row:72, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:72, column:152,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:152,the value of plot_cost is         : 5.562766560728985 

 At row:72, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:72, column:153,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:153,the value of plot_cost is         : 5.508398525289763 

 At row:72, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:72, column:154,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:154,the value of plot_cost is         : 5.45483855025306 

 At row:72, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:72, column:155,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:155,the value of plot_cost is         : 5.402086635618868 

 At row:72, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:72, column:156,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:156,the value of plot_cost is         : 5.350142781387192 

 At row:72, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:72, column:157,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:157,the value of plot_cost is         : 5.299006987558033 

 At row:72, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:72, column:158,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:158,the value of plot_cost is         : 5.248679254131388 

 At row:72, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:72, column:159,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:159,the value of plot_cost is         : 5.199159581107259 

 At row:72, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:72, column:160,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:160,the value of plot_cost is         : 5.1504479684856435 

 At row:72, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:72, column:161,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:161,the value of plot_cost is         : 5.102544416266543 

 At row:72, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:72, column:162,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:162,the value of plot_cost is         : 5.0554489244499585 

 At row:72, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:72, column:163,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:163,the value of plot_cost is         : 5.009161493035889 

 At row:72, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:72, column:164,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:164,the value of plot_cost is         : 4.963682122024335 

 At row:72, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:72, column:165,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:165,the value of plot_cost is         : 4.919010811415295 

 At row:72, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:72, column:166,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:166,the value of plot_cost is         : 4.87514756120877 

 At row:72, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:72, column:167,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:167,the value of plot_cost is         : 4.832092371404761 

 At row:72, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:72, column:168,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:168,the value of plot_cost is         : 4.789845242003267 

 At row:72, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:72, column:169,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:169,the value of plot_cost is         : 4.748406173004288 

 At row:72, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:72, column:170,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:170,the value of plot_cost is         : 4.707775164407824 

 At row:72, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:72, column:171,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:171,the value of plot_cost is         : 4.667952216213874 

 At row:72, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:72, column:172,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:172,the value of plot_cost is         : 4.628937328422441 

 At row:72, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:72, column:173,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:173,the value of plot_cost is         : 4.590730501033522 

 At row:72, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:72, column:174,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:174,the value of plot_cost is         : 4.55333173404712 

 At row:72, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:72, column:175,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:175,the value of plot_cost is         : 4.5167410274632305 

 At row:72, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:72, column:176,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:176,the value of plot_cost is         : 4.480958381281856 

 At row:72, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:72, column:177,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:177,the value of plot_cost is         : 4.445983795502999 

 At row:72, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:72, column:178,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:178,the value of plot_cost is         : 4.411817270126655 

 At row:72, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:72, column:179,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:179,the value of plot_cost is         : 4.378458805152828 

 At row:72, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:72, column:180,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:180,the value of plot_cost is         : 4.345908400581514 

 At row:72, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:72, column:181,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:181,the value of plot_cost is         : 4.3141660564127156 

 At row:72, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:72, column:182,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:182,the value of plot_cost is         : 4.283231772646433 

 At row:72, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:72, column:183,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:183,the value of plot_cost is         : 4.253105549282665 

 At row:72, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:72, column:184,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:184,the value of plot_cost is         : 4.223787386321413 

 At row:72, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:72, column:185,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:185,the value of plot_cost is         : 4.195277283762675 

 At row:72, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:72, column:186,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:186,the value of plot_cost is         : 4.1675752416064515 

 At row:72, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:72, column:187,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:187,the value of plot_cost is         : 4.1406812598527445 

 At row:72, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:72, column:188,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:188,the value of plot_cost is         : 4.114595338501552 

 At row:72, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:72, column:189,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:189,the value of plot_cost is         : 4.089317477552875 

 At row:72, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:72, column:190,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:190,the value of plot_cost is         : 4.064847677006713 

 At row:72, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:72, column:191,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:191,the value of plot_cost is         : 4.041185936863065 

 At row:72, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:72, column:192,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:192,the value of plot_cost is         : 4.0183322571219335 

 At row:72, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:72, column:193,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:193,the value of plot_cost is         : 3.996286637783316 

 At row:72, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:72, column:194,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:194,the value of plot_cost is         : 3.975049078847215 

 At row:72, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:72, column:195,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:195,the value of plot_cost is         : 3.9546195803136284 

 At row:72, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:72, column:196,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:196,the value of plot_cost is         : 3.9349981421825553 

 At row:72, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:72, column:197,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:197,the value of plot_cost is         : 3.916184764453999 

 At row:72, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:72, column:198,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:198,the value of plot_cost is         : 3.8981794471279585 

 At row:72, column:199,the value of plot_t0 is           : 3.0
 At row:72, column:199,the value of plot_t1 is           : 0.44723618090452266
 At row:72, column:199,the value of plot_cost is         : 3.8809821902044317 

 At row:73, column:0,the value of plot_t0 is           : -1.0
 At row:73, column:0,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:0,the value of plot_cost is         : 22.4975175590804 

 At row:73, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:73, column:1,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:1,the value of plot_cost is         : 22.32300248550722 

 At row:73, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:73, column:2,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:2,the value of plot_cost is         : 22.149295472336558 

 At row:73, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:73, column:3,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:3,the value of plot_cost is         : 21.976396519568407 

 At row:73, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:73, column:4,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:4,the value of plot_cost is         : 21.80430562720278 

 At row:73, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:73, column:5,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:5,the value of plot_cost is         : 21.633022795239665 

 At row:73, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:73, column:6,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:6,the value of plot_cost is         : 21.46254802367906 

 At row:73, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:73, column:7,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:7,the value of plot_cost is         : 21.292881312520972 

 At row:73, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:73, column:8,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:8,the value of plot_cost is         : 21.124022661765398 

 At row:73, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:73, column:9,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:9,the value of plot_cost is         : 20.955972071412337 

 At row:73, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:73, column:10,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:10,the value of plot_cost is         : 20.788729541461795 

 At row:73, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:73, column:11,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:11,the value of plot_cost is         : 20.62229507191377 

 At row:73, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:73, column:12,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:12,the value of plot_cost is         : 20.456668662768255 

 At row:73, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:73, column:13,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:13,the value of plot_cost is         : 20.29185031402526 

 At row:73, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:73, column:14,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:14,the value of plot_cost is         : 20.12784002568478 

 At row:73, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:73, column:15,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:15,the value of plot_cost is         : 19.964637797746814 

 At row:73, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:73, column:16,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:16,the value of plot_cost is         : 19.80224363021136 

 At row:73, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:73, column:17,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:17,the value of plot_cost is         : 19.640657523078428 

 At row:73, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:73, column:18,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:18,the value of plot_cost is         : 19.479879476348 

 At row:73, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:73, column:19,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:19,the value of plot_cost is         : 19.31990949002009 

 At row:73, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:73, column:20,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:20,the value of plot_cost is         : 19.160747564094702 

 At row:73, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:73, column:21,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:21,the value of plot_cost is         : 19.002393698571826 

 At row:73, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:73, column:22,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:22,the value of plot_cost is         : 18.844847893451462 

 At row:73, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:73, column:23,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:23,the value of plot_cost is         : 18.688110148733617 

 At row:73, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:73, column:24,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:24,the value of plot_cost is         : 18.532180464418285 

 At row:73, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:73, column:25,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:25,the value of plot_cost is         : 18.377058840505477 

 At row:73, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:73, column:26,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:26,the value of plot_cost is         : 18.22274527699517 

 At row:73, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:73, column:27,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:27,the value of plot_cost is         : 18.069239773887382 

 At row:73, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:73, column:28,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:28,the value of plot_cost is         : 17.916542331182114 

 At row:73, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:73, column:29,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:29,the value of plot_cost is         : 17.76465294887936 

 At row:73, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:73, column:30,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:30,the value of plot_cost is         : 17.61357162697912 

 At row:73, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:73, column:31,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:31,the value of plot_cost is         : 17.463298365481393 

 At row:73, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:73, column:32,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:32,the value of plot_cost is         : 17.31383316438618 

 At row:73, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:73, column:33,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:33,the value of plot_cost is         : 17.165176023693487 

 At row:73, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:73, column:34,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:34,the value of plot_cost is         : 17.017326943403305 

 At row:73, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:73, column:35,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:35,the value of plot_cost is         : 16.87028592351564 

 At row:73, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:73, column:36,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:36,the value of plot_cost is         : 16.72405296403049 

 At row:73, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:73, column:37,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:37,the value of plot_cost is         : 16.578628064947853 

 At row:73, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:73, column:38,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:38,the value of plot_cost is         : 16.43401122626773 

 At row:73, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:73, column:39,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:39,the value of plot_cost is         : 16.29020244799013 

 At row:73, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:73, column:40,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:40,the value of plot_cost is         : 16.147201730115043 

 At row:73, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:73, column:41,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:41,the value of plot_cost is         : 16.005009072642466 

 At row:73, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:73, column:42,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:42,the value of plot_cost is         : 15.863624475572408 

 At row:73, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:73, column:43,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:43,the value of plot_cost is         : 15.723047938904863 

 At row:73, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:73, column:44,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:44,the value of plot_cost is         : 15.583279462639837 

 At row:73, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:73, column:45,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:45,the value of plot_cost is         : 15.44431904677732 

 At row:73, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:73, column:46,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:46,the value of plot_cost is         : 15.306166691317319 

 At row:73, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:73, column:47,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:47,the value of plot_cost is         : 15.168822396259833 

 At row:73, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:73, column:48,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:48,the value of plot_cost is         : 15.032286161604866 

 At row:73, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:73, column:49,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:49,the value of plot_cost is         : 14.896557987352415 

 At row:73, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:73, column:50,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:50,the value of plot_cost is         : 14.761637873502476 

 At row:73, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:73, column:51,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:51,the value of plot_cost is         : 14.62752582005505 

 At row:73, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:73, column:52,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:52,the value of plot_cost is         : 14.494221827010138 

 At row:73, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:73, column:53,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:53,the value of plot_cost is         : 14.361725894367748 

 At row:73, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:73, column:54,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:54,the value of plot_cost is         : 14.230038022127871 

 At row:73, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:73, column:55,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:55,the value of plot_cost is         : 14.099158210290506 

 At row:73, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:73, column:56,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:56,the value of plot_cost is         : 13.969086458855658 

 At row:73, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:73, column:57,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:57,the value of plot_cost is         : 13.839822767823325 

 At row:73, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:73, column:58,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:58,the value of plot_cost is         : 13.711367137193507 

 At row:73, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:73, column:59,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:59,the value of plot_cost is         : 13.583719566966204 

 At row:73, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:73, column:60,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:60,the value of plot_cost is         : 13.456880057141413 

 At row:73, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:73, column:61,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:61,the value of plot_cost is         : 13.330848607719142 

 At row:73, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:73, column:62,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:62,the value of plot_cost is         : 13.205625218699383 

 At row:73, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:73, column:63,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:63,the value of plot_cost is         : 13.081209890082143 

 At row:73, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:73, column:64,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:64,the value of plot_cost is         : 12.957602621867414 

 At row:73, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:73, column:65,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:65,the value of plot_cost is         : 12.834803414055202 

 At row:73, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:73, column:66,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:66,the value of plot_cost is         : 12.712812266645503 

 At row:73, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:73, column:67,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:67,the value of plot_cost is         : 12.591629179638321 

 At row:73, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:73, column:68,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:68,the value of plot_cost is         : 12.471254153033655 

 At row:73, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:73, column:69,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:69,the value of plot_cost is         : 12.351687186831501 

 At row:73, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:73, column:70,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:70,the value of plot_cost is         : 12.232928281031866 

 At row:73, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:73, column:71,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:71,the value of plot_cost is         : 12.114977435634744 

 At row:73, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:73, column:72,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:72,the value of plot_cost is         : 11.997834650640135 

 At row:73, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:73, column:73,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:73,the value of plot_cost is         : 11.881499926048045 

 At row:73, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:73, column:74,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:74,the value of plot_cost is         : 11.765973261858468 

 At row:73, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:73, column:75,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:75,the value of plot_cost is         : 11.651254658071405 

 At row:73, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:73, column:76,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:76,the value of plot_cost is         : 11.537344114686862 

 At row:73, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:73, column:77,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:77,the value of plot_cost is         : 11.424241631704826 

 At row:73, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:73, column:78,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:78,the value of plot_cost is         : 11.31194720912531 

 At row:73, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:73, column:79,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:79,the value of plot_cost is         : 11.20046084694831 

 At row:73, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:73, column:80,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:80,the value of plot_cost is         : 11.089782545173824 

 At row:73, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:73, column:81,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:81,the value of plot_cost is         : 10.979912303801854 

 At row:73, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:73, column:82,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:82,the value of plot_cost is         : 10.870850122832396 

 At row:73, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:73, column:83,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:83,the value of plot_cost is         : 10.762596002265456 

 At row:73, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:73, column:84,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:84,the value of plot_cost is         : 10.655149942101032 

 At row:73, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:73, column:85,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:85,the value of plot_cost is         : 10.54851194233912 

 At row:73, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:73, column:86,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:86,the value of plot_cost is         : 10.442682002979724 

 At row:73, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:73, column:87,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:87,the value of plot_cost is         : 10.337660124022841 

 At row:73, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:73, column:88,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:88,the value of plot_cost is         : 10.233446305468476 

 At row:73, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:73, column:89,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:89,the value of plot_cost is         : 10.130040547316627 

 At row:73, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:73, column:90,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:90,the value of plot_cost is         : 10.027442849567292 

 At row:73, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:73, column:91,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:91,the value of plot_cost is         : 9.925653212220473 

 At row:73, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:73, column:92,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:92,the value of plot_cost is         : 9.824671635276164 

 At row:73, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:73, column:93,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:93,the value of plot_cost is         : 9.724498118734376 

 At row:73, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:73, column:94,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:94,the value of plot_cost is         : 9.625132662595101 

 At row:73, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:73, column:95,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:95,the value of plot_cost is         : 9.526575266858343 

 At row:73, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:73, column:96,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:96,the value of plot_cost is         : 9.428825931524097 

 At row:73, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:73, column:97,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:97,the value of plot_cost is         : 9.331884656592367 

 At row:73, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:73, column:98,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:98,the value of plot_cost is         : 9.235751442063151 

 At row:73, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:73, column:99,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:99,the value of plot_cost is         : 9.140426287936455 

 At row:73, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:73, column:100,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:100,the value of plot_cost is         : 9.04590919421227 

 At row:73, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:73, column:101,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:101,the value of plot_cost is         : 8.9522001608906 

 At row:73, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:73, column:102,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:102,the value of plot_cost is         : 8.859299187971445 

 At row:73, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:73, column:103,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:103,the value of plot_cost is         : 8.767206275454804 

 At row:73, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:73, column:104,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:104,the value of plot_cost is         : 8.675921423340682 

 At row:73, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:73, column:105,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:105,the value of plot_cost is         : 8.585444631629075 

 At row:73, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:73, column:106,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:106,the value of plot_cost is         : 8.495775900319979 

 At row:73, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:73, column:107,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:107,the value of plot_cost is         : 8.406915229413398 

 At row:73, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:73, column:108,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:108,the value of plot_cost is         : 8.318862618909336 

 At row:73, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:73, column:109,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:109,the value of plot_cost is         : 8.231618068807787 

 At row:73, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:73, column:110,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:110,the value of plot_cost is         : 8.145181579108753 

 At row:73, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:73, column:111,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:111,the value of plot_cost is         : 8.059553149812237 

 At row:73, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:73, column:112,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:112,the value of plot_cost is         : 7.974732780918231 

 At row:73, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:73, column:113,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:113,the value of plot_cost is         : 7.890720472426741 

 At row:73, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:73, column:114,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:114,the value of plot_cost is         : 7.80751622433777 

 At row:73, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:73, column:115,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:115,the value of plot_cost is         : 7.725120036651312 

 At row:73, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:73, column:116,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:116,the value of plot_cost is         : 7.64353190936737 

 At row:73, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:73, column:117,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:117,the value of plot_cost is         : 7.562751842485941 

 At row:73, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:73, column:118,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:118,the value of plot_cost is         : 7.482779836007028 

 At row:73, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:73, column:119,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:119,the value of plot_cost is         : 7.403615889930631 

 At row:73, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:73, column:120,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:120,the value of plot_cost is         : 7.325260004256748 

 At row:73, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:73, column:121,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:121,the value of plot_cost is         : 7.247712178985382 

 At row:73, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:73, column:122,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:122,the value of plot_cost is         : 7.170972414116527 

 At row:73, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:73, column:123,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:123,the value of plot_cost is         : 7.095040709650189 

 At row:73, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:73, column:124,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:124,the value of plot_cost is         : 7.019917065586367 

 At row:73, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:73, column:125,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:125,the value of plot_cost is         : 6.945601481925061 

 At row:73, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:73, column:126,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:126,the value of plot_cost is         : 6.8720939586662695 

 At row:73, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:73, column:127,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:127,the value of plot_cost is         : 6.79939449580999 

 At row:73, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:73, column:128,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:128,the value of plot_cost is         : 6.727503093356229 

 At row:73, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:73, column:129,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:129,the value of plot_cost is         : 6.656419751304983 

 At row:73, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:73, column:130,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:130,the value of plot_cost is         : 6.58614446965625 

 At row:73, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:73, column:131,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:131,the value of plot_cost is         : 6.516677248410035 

 At row:73, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:73, column:132,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:132,the value of plot_cost is         : 6.448018087566332 

 At row:73, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:73, column:133,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:133,the value of plot_cost is         : 6.380166987125145 

 At row:73, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:73, column:134,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:134,the value of plot_cost is         : 6.313123947086475 

 At row:73, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:73, column:135,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:135,the value of plot_cost is         : 6.246888967450317 

 At row:73, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:73, column:136,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:136,the value of plot_cost is         : 6.1814620482166776 

 At row:73, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:73, column:137,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:137,the value of plot_cost is         : 6.11684318938555 

 At row:73, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:73, column:138,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:138,the value of plot_cost is         : 6.053032390956939 

 At row:73, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:73, column:139,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:139,the value of plot_cost is         : 5.990029652930843 

 At row:73, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:73, column:140,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:140,the value of plot_cost is         : 5.9278349753072614 

 At row:73, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:73, column:141,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:141,the value of plot_cost is         : 5.866448358086197 

 At row:73, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:73, column:142,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:142,the value of plot_cost is         : 5.805869801267645 

 At row:73, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:73, column:143,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:143,the value of plot_cost is         : 5.746099304851609 

 At row:73, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:73, column:144,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:144,the value of plot_cost is         : 5.68713686883809 

 At row:73, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:73, column:145,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:145,the value of plot_cost is         : 5.628982493227084 

 At row:73, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:73, column:146,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:146,the value of plot_cost is         : 5.571636178018594 

 At row:73, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:73, column:147,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:147,the value of plot_cost is         : 5.515097923212617 

 At row:73, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:73, column:148,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:148,the value of plot_cost is         : 5.459367728809157 

 At row:73, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:73, column:149,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:149,the value of plot_cost is         : 5.404445594808213 

 At row:73, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:73, column:150,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:150,the value of plot_cost is         : 5.350331521209783 

 At row:73, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:73, column:151,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:151,the value of plot_cost is         : 5.297025508013867 

 At row:73, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:73, column:152,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:152,the value of plot_cost is         : 5.2445275552204675 

 At row:73, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:73, column:153,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:153,the value of plot_cost is         : 5.192837662829583 

 At row:73, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:73, column:154,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:154,the value of plot_cost is         : 5.141955830841214 

 At row:73, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:73, column:155,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:155,the value of plot_cost is         : 5.091882059255358 

 At row:73, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:73, column:156,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:156,the value of plot_cost is         : 5.042616348072018 

 At row:73, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:73, column:157,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:157,the value of plot_cost is         : 4.994158697291193 

 At row:73, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:73, column:158,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:158,the value of plot_cost is         : 4.9465091069128855 

 At row:73, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:73, column:159,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:159,the value of plot_cost is         : 4.899667576937092 

 At row:73, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:73, column:160,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:160,the value of plot_cost is         : 4.8536341073638125 

 At row:73, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:73, column:161,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:161,the value of plot_cost is         : 4.808408698193046 

 At row:73, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:73, column:162,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:162,the value of plot_cost is         : 4.763991349424798 

 At row:73, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:73, column:163,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:163,the value of plot_cost is         : 4.720382061059064 

 At row:73, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:73, column:164,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:164,the value of plot_cost is         : 4.677580833095846 

 At row:73, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:73, column:165,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:165,the value of plot_cost is         : 4.635587665535143 

 At row:73, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:73, column:166,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:166,the value of plot_cost is         : 4.594402558376952 

 At row:73, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:73, column:167,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:167,the value of plot_cost is         : 4.55402551162128 

 At row:73, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:73, column:168,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:168,the value of plot_cost is         : 4.5144565252681215 

 At row:73, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:73, column:169,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:169,the value of plot_cost is         : 4.475695599317478 

 At row:73, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:73, column:170,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:170,the value of plot_cost is         : 4.43774273376935 

 At row:73, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:73, column:171,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:171,the value of plot_cost is         : 4.4005979286237356 

 At row:73, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:73, column:172,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:172,the value of plot_cost is         : 4.364261183880638 

 At row:73, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:73, column:173,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:173,the value of plot_cost is         : 4.328732499540055 

 At row:73, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:73, column:174,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:174,the value of plot_cost is         : 4.294011875601988 

 At row:73, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:73, column:175,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:175,the value of plot_cost is         : 4.260099312066434 

 At row:73, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:73, column:176,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:176,the value of plot_cost is         : 4.226994808933395 

 At row:73, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:73, column:177,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:177,the value of plot_cost is         : 4.194698366202874 

 At row:73, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:73, column:178,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:178,the value of plot_cost is         : 4.163209983874866 

 At row:73, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:73, column:179,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:179,the value of plot_cost is         : 4.132529661949375 

 At row:73, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:73, column:180,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:180,the value of plot_cost is         : 4.102657400426397 

 At row:73, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:73, column:181,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:181,the value of plot_cost is         : 4.073593199305933 

 At row:73, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:73, column:182,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:182,the value of plot_cost is         : 4.045337058587987 

 At row:73, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:73, column:183,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:183,the value of plot_cost is         : 4.017888978272555 

 At row:73, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:73, column:184,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:184,the value of plot_cost is         : 3.991248958359638 

 At row:73, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:73, column:185,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:185,the value of plot_cost is         : 3.9654169988492365 

 At row:73, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:73, column:186,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:186,the value of plot_cost is         : 3.940393099741348 

 At row:73, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:73, column:187,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:187,the value of plot_cost is         : 3.9161772610359766 

 At row:73, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:73, column:188,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:188,the value of plot_cost is         : 3.89276948273312 

 At row:73, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:73, column:189,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:189,the value of plot_cost is         : 3.8701697648327795 

 At row:73, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:73, column:190,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:190,the value of plot_cost is         : 3.848378107334953 

 At row:73, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:73, column:191,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:191,the value of plot_cost is         : 3.82739451023964 

 At row:73, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:73, column:192,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:192,the value of plot_cost is         : 3.807218973546844 

 At row:73, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:73, column:193,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:193,the value of plot_cost is         : 3.787851497256563 

 At row:73, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:73, column:194,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:194,the value of plot_cost is         : 3.7692920813687976 

 At row:73, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:73, column:195,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:195,the value of plot_cost is         : 3.751540725883546 

 At row:73, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:73, column:196,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:196,the value of plot_cost is         : 3.7345974308008087 

 At row:73, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:73, column:197,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:197,the value of plot_cost is         : 3.718462196120589 

 At row:73, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:73, column:198,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:198,the value of plot_cost is         : 3.7031350218428827 

 At row:73, column:199,the value of plot_t0 is           : 3.0
 At row:73, column:199,the value of plot_t1 is           : 0.46733668341708534
 At row:73, column:199,the value of plot_cost is         : 3.6886159079676926 

 At row:74, column:0,the value of plot_t0 is           : -1.0
 At row:74, column:0,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:0,the value of plot_cost is         : 21.784783465064013 

 At row:74, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:74, column:1,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:1,the value of plot_cost is         : 21.61294653453917 

 At row:74, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:74, column:2,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:2,the value of plot_cost is         : 21.441917664416838 

 At row:74, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:74, column:3,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:3,the value of plot_cost is         : 21.27169685469703 

 At row:74, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:74, column:4,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:4,the value of plot_cost is         : 21.102284105379734 

 At row:74, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:74, column:5,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:5,the value of plot_cost is         : 20.933679416464948 

 At row:74, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:74, column:6,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:6,the value of plot_cost is         : 20.765882787952684 

 At row:74, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:74, column:7,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:7,the value of plot_cost is         : 20.598894219842933 

 At row:74, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:74, column:8,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:8,the value of plot_cost is         : 20.432713712135694 

 At row:74, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:74, column:9,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:9,the value of plot_cost is         : 20.267341264830975 

 At row:74, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:74, column:10,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:10,the value of plot_cost is         : 20.102776877928765 

 At row:74, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:74, column:11,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:11,the value of plot_cost is         : 19.939020551429078 

 At row:74, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:74, column:12,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:12,the value of plot_cost is         : 19.776072285331896 

 At row:74, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:74, column:13,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:13,the value of plot_cost is         : 19.61393207963724 

 At row:74, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:74, column:14,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:14,the value of plot_cost is         : 19.452599934345088 

 At row:74, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:74, column:15,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:15,the value of plot_cost is         : 19.292075849455458 

 At row:74, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:74, column:16,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:16,the value of plot_cost is         : 19.132359824968344 

 At row:74, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:74, column:17,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:17,the value of plot_cost is         : 18.973451860883742 

 At row:74, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:74, column:18,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:18,the value of plot_cost is         : 18.815351957201656 

 At row:74, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:74, column:19,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:19,the value of plot_cost is         : 18.658060113922087 

 At row:74, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:74, column:20,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:20,the value of plot_cost is         : 18.501576331045026 

 At row:74, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:74, column:21,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:21,the value of plot_cost is         : 18.345900608570485 

 At row:74, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:74, column:22,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:22,the value of plot_cost is         : 18.191032946498463 

 At row:74, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:74, column:23,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:23,the value of plot_cost is         : 18.03697334482895 

 At row:74, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:74, column:24,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:24,the value of plot_cost is         : 17.883721803561958 

 At row:74, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:74, column:25,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:25,the value of plot_cost is         : 17.731278322697477 

 At row:74, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:74, column:26,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:26,the value of plot_cost is         : 17.57964290223551 

 At row:74, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:74, column:27,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:27,the value of plot_cost is         : 17.428815542176057 

 At row:74, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:74, column:28,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:28,the value of plot_cost is         : 17.278796242519125 

 At row:74, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:74, column:29,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:29,the value of plot_cost is         : 17.129585003264708 

 At row:74, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:74, column:30,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:30,the value of plot_cost is         : 16.9811818244128 

 At row:74, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:74, column:31,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:31,the value of plot_cost is         : 16.833586705963413 

 At row:74, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:74, column:32,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:32,the value of plot_cost is         : 16.686799647916537 

 At row:74, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:74, column:33,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:33,the value of plot_cost is         : 16.540820650272178 

 At row:74, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:74, column:34,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:34,the value of plot_cost is         : 16.395649713030334 

 At row:74, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:74, column:35,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:35,the value of plot_cost is         : 16.251286836191003 

 At row:74, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:74, column:36,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:36,the value of plot_cost is         : 16.10773201975419 

 At row:74, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:74, column:37,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:37,the value of plot_cost is         : 15.96498526371989 

 At row:74, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:74, column:38,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:38,the value of plot_cost is         : 15.823046568088106 

 At row:74, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:74, column:39,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:39,the value of plot_cost is         : 15.681915932858836 

 At row:74, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:74, column:40,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:40,the value of plot_cost is         : 15.541593358032083 

 At row:74, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:74, column:41,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:41,the value of plot_cost is         : 15.402078843607844 

 At row:74, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:74, column:42,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:42,the value of plot_cost is         : 15.263372389586118 

 At row:74, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:74, column:43,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:43,the value of plot_cost is         : 15.12547399596691 

 At row:74, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:74, column:44,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:44,the value of plot_cost is         : 14.988383662750216 

 At row:74, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:74, column:45,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:45,the value of plot_cost is         : 14.852101389936038 

 At row:74, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:74, column:46,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:46,the value of plot_cost is         : 14.716627177524376 

 At row:74, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:74, column:47,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:47,the value of plot_cost is         : 14.581961025515227 

 At row:74, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:74, column:48,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:48,the value of plot_cost is         : 14.448102933908594 

 At row:74, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:74, column:49,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:49,the value of plot_cost is         : 14.315052902704474 

 At row:74, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:74, column:50,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:50,the value of plot_cost is         : 14.182810931902873 

 At row:74, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:74, column:51,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:51,the value of plot_cost is         : 14.051377021503786 

 At row:74, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:74, column:52,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:52,the value of plot_cost is         : 13.920751171507211 

 At row:74, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:74, column:53,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:53,the value of plot_cost is         : 13.790933381913153 

 At row:74, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:74, column:54,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:54,the value of plot_cost is         : 13.661923652721612 

 At row:74, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:74, column:55,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:55,the value of plot_cost is         : 13.533721983932583 

 At row:74, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:74, column:56,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:56,the value of plot_cost is         : 13.406328375546071 

 At row:74, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:74, column:57,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:57,the value of plot_cost is         : 13.279742827562075 

 At row:74, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:74, column:58,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:58,the value of plot_cost is         : 13.15396533998059 

 At row:74, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:74, column:59,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:59,the value of plot_cost is         : 13.028995912801621 

 At row:74, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:74, column:60,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:60,the value of plot_cost is         : 12.904834546025171 

 At row:74, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:74, column:61,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:61,the value of plot_cost is         : 12.781481239651233 

 At row:74, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:74, column:62,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:62,the value of plot_cost is         : 12.658935993679812 

 At row:74, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:74, column:63,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:63,the value of plot_cost is         : 12.537198808110904 

 At row:74, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:74, column:64,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:64,the value of plot_cost is         : 12.416269682944511 

 At row:74, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:74, column:65,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:65,the value of plot_cost is         : 12.296148618180634 

 At row:74, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:74, column:66,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:66,the value of plot_cost is         : 12.176835613819275 

 At row:74, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:74, column:67,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:67,the value of plot_cost is         : 12.058330669860428 

 At row:74, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:74, column:68,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:68,the value of plot_cost is         : 11.940633786304097 

 At row:74, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:74, column:69,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:69,the value of plot_cost is         : 11.823744963150281 

 At row:74, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:74, column:70,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:70,the value of plot_cost is         : 11.707664200398977 

 At row:74, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:74, column:71,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:71,the value of plot_cost is         : 11.592391498050194 

 At row:74, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:74, column:72,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:72,the value of plot_cost is         : 11.477926856103922 

 At row:74, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:74, column:73,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:73,the value of plot_cost is         : 11.364270274560164 

 At row:74, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:74, column:74,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:74,the value of plot_cost is         : 11.251421753418924 

 At row:74, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:74, column:75,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:75,the value of plot_cost is         : 11.139381292680198 

 At row:74, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:74, column:76,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:76,the value of plot_cost is         : 11.028148892343987 

 At row:74, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:74, column:77,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:77,the value of plot_cost is         : 10.917724552410293 

 At row:74, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:74, column:78,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:78,the value of plot_cost is         : 10.80810827287911 

 At row:74, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:74, column:79,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:79,the value of plot_cost is         : 10.699300053750443 

 At row:74, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:74, column:80,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:80,the value of plot_cost is         : 10.591299895024294 

 At row:74, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:74, column:81,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:81,the value of plot_cost is         : 10.48410779670066 

 At row:74, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:74, column:82,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:82,the value of plot_cost is         : 10.37772375877954 

 At row:74, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:74, column:83,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:83,the value of plot_cost is         : 10.272147781260932 

 At row:74, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:74, column:84,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:84,the value of plot_cost is         : 10.167379864144843 

 At row:74, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:74, column:85,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:85,the value of plot_cost is         : 10.063420007431269 

 At row:74, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:74, column:86,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:86,the value of plot_cost is         : 9.96026821112021 

 At row:74, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:74, column:87,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:87,the value of plot_cost is         : 9.857924475211664 

 At row:74, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:74, column:88,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:88,the value of plot_cost is         : 9.756388799705633 

 At row:74, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:74, column:89,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:89,the value of plot_cost is         : 9.655661184602119 

 At row:74, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:74, column:90,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:90,the value of plot_cost is         : 9.555741629901119 

 At row:74, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:74, column:91,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:91,the value of plot_cost is         : 9.456630135602635 

 At row:74, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:74, column:92,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:92,the value of plot_cost is         : 9.358326701706666 

 At row:74, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:74, column:93,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:93,the value of plot_cost is         : 9.260831328213209 

 At row:74, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:74, column:94,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:94,the value of plot_cost is         : 9.164144015122274 

 At row:74, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:74, column:95,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:95,the value of plot_cost is         : 9.068264762433847 

 At row:74, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:74, column:96,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:96,the value of plot_cost is         : 8.97319357014794 

 At row:74, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:74, column:97,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:97,the value of plot_cost is         : 8.878930438264545 

 At row:74, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:74, column:98,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:98,the value of plot_cost is         : 8.785475366783665 

 At row:74, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:74, column:99,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:99,the value of plot_cost is         : 8.692828355705302 

 At row:74, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:74, column:100,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:100,the value of plot_cost is         : 8.600989405029454 

 At row:74, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:74, column:101,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:101,the value of plot_cost is         : 8.509958514756121 

 At row:74, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:74, column:102,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:102,the value of plot_cost is         : 8.419735684885302 

 At row:74, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:74, column:103,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:103,the value of plot_cost is         : 8.330320915416996 

 At row:74, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:74, column:104,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:104,the value of plot_cost is         : 8.241714206351208 

 At row:74, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:74, column:105,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:105,the value of plot_cost is         : 8.153915557687936 

 At row:74, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:74, column:106,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:106,the value of plot_cost is         : 8.066924969427179 

 At row:74, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:74, column:107,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:107,the value of plot_cost is         : 7.980742441568935 

 At row:74, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:74, column:108,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:108,the value of plot_cost is         : 7.895367974113206 

 At row:74, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:74, column:109,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:109,the value of plot_cost is         : 7.810801567059992 

 At row:74, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:74, column:110,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:110,the value of plot_cost is         : 7.727043220409295 

 At row:74, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:74, column:111,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:111,the value of plot_cost is         : 7.6440929341611135 

 At row:74, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:74, column:112,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:112,the value of plot_cost is         : 7.561950708315446 

 At row:74, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:74, column:113,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:113,the value of plot_cost is         : 7.480616542872292 

 At row:74, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:74, column:114,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:114,the value of plot_cost is         : 7.400090437831655 

 At row:74, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:74, column:115,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:115,the value of plot_cost is         : 7.320372393193533 

 At row:74, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:74, column:116,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:116,the value of plot_cost is         : 7.2414624089579265 

 At row:74, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:74, column:117,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:117,the value of plot_cost is         : 7.1633604851248345 

 At row:74, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:74, column:118,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:118,the value of plot_cost is         : 7.086066621694255 

 At row:74, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:74, column:119,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:119,the value of plot_cost is         : 7.009580818666194 

 At row:74, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:74, column:120,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:120,the value of plot_cost is         : 6.9339030760406475 

 At row:74, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:74, column:121,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:121,the value of plot_cost is         : 6.859033393817616 

 At row:74, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:74, column:122,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:122,the value of plot_cost is         : 6.7849717719971 

 At row:74, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:74, column:123,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:123,the value of plot_cost is         : 6.711718210579097 

 At row:74, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:74, column:124,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:124,the value of plot_cost is         : 6.63927270956361 

 At row:74, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:74, column:125,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:125,the value of plot_cost is         : 6.567635268950639 

 At row:74, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:74, column:126,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:126,the value of plot_cost is         : 6.496805888740184 

 At row:74, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:74, column:127,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:127,the value of plot_cost is         : 6.426784568932242 

 At row:74, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:74, column:128,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:128,the value of plot_cost is         : 6.357571309526814 

 At row:74, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:74, column:129,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:129,the value of plot_cost is         : 6.289166110523903 

 At row:74, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:74, column:130,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:130,the value of plot_cost is         : 6.221568971923507 

 At row:74, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:74, column:131,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:131,the value of plot_cost is         : 6.154779893725627 

 At row:74, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:74, column:132,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:132,the value of plot_cost is         : 6.088798875930261 

 At row:74, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:74, column:133,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:133,the value of plot_cost is         : 6.023625918537409 

 At row:74, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:74, column:134,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:134,the value of plot_cost is         : 5.959261021547074 

 At row:74, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:74, column:135,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:135,the value of plot_cost is         : 5.895704184959253 

 At row:74, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:74, column:136,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:136,the value of plot_cost is         : 5.832955408773949 

 At row:74, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:74, column:137,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:137,the value of plot_cost is         : 5.771014692991159 

 At row:74, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:74, column:138,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:138,the value of plot_cost is         : 5.709882037610882 

 At row:74, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:74, column:139,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:139,the value of plot_cost is         : 5.649557442633121 

 At row:74, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:74, column:140,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:140,the value of plot_cost is         : 5.590040908057876 

 At row:74, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:74, column:141,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:141,the value of plot_cost is         : 5.531332433885148 

 At row:74, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:74, column:142,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:142,the value of plot_cost is         : 5.473432020114932 

 At row:74, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:74, column:143,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:143,the value of plot_cost is         : 5.4163396667472306 

 At row:74, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:74, column:144,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:144,the value of plot_cost is         : 5.360055373782046 

 At row:74, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:74, column:145,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:145,the value of plot_cost is         : 5.304579141219378 

 At row:74, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:74, column:146,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:146,the value of plot_cost is         : 5.249910969059223 

 At row:74, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:74, column:147,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:147,the value of plot_cost is         : 5.196050857301583 

 At row:74, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:74, column:148,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:148,the value of plot_cost is         : 5.1429988059464575 

 At row:74, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:74, column:149,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:149,the value of plot_cost is         : 5.090754814993848 

 At row:74, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:74, column:150,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:150,the value of plot_cost is         : 5.039318884443754 

 At row:74, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:74, column:151,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:151,the value of plot_cost is         : 4.988691014296175 

 At row:74, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:74, column:152,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:152,the value of plot_cost is         : 4.938871204551112 

 At row:74, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:74, column:153,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:153,the value of plot_cost is         : 4.889859455208561 

 At row:74, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:74, column:154,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:154,the value of plot_cost is         : 4.841655766268527 

 At row:74, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:74, column:155,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:155,the value of plot_cost is         : 4.794260137731009 

 At row:74, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:74, column:156,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:156,the value of plot_cost is         : 4.747672569596006 

 At row:74, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:74, column:157,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:157,the value of plot_cost is         : 4.701893061863517 

 At row:74, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:74, column:158,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:158,the value of plot_cost is         : 4.656921614533542 

 At row:74, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:74, column:159,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:159,the value of plot_cost is         : 4.612758227606084 

 At row:74, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:74, column:160,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:160,the value of plot_cost is         : 4.5694029010811406 

 At row:74, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:74, column:161,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:161,the value of plot_cost is         : 4.526855634958713 

 At row:74, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:74, column:162,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:162,the value of plot_cost is         : 4.4851164292388 

 At row:74, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:74, column:163,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:163,the value of plot_cost is         : 4.444185283921401 

 At row:74, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:74, column:164,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:164,the value of plot_cost is         : 4.404062199006518 

 At row:74, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:74, column:165,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:165,the value of plot_cost is         : 4.36474717449415 

 At row:74, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:74, column:166,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:166,the value of plot_cost is         : 4.326240210384298 

 At row:74, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:74, column:167,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:167,the value of plot_cost is         : 4.288541306676959 

 At row:74, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:74, column:168,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:168,the value of plot_cost is         : 4.251650463372136 

 At row:74, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:74, column:169,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:169,the value of plot_cost is         : 4.215567680469828 

 At row:74, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:74, column:170,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:170,the value of plot_cost is         : 4.180292957970036 

 At row:74, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:74, column:171,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:171,the value of plot_cost is         : 4.145826295872759 

 At row:74, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:74, column:172,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:172,the value of plot_cost is         : 4.112167694177997 

 At row:74, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:74, column:173,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:173,the value of plot_cost is         : 4.079317152885749 

 At row:74, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:74, column:174,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:174,the value of plot_cost is         : 4.047274671996017 

 At row:74, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:74, column:175,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:175,the value of plot_cost is         : 4.0160402515088 

 At row:74, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:74, column:176,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:176,the value of plot_cost is         : 3.985613891424098 

 At row:74, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:74, column:177,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:177,the value of plot_cost is         : 3.9559955917419116 

 At row:74, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:74, column:178,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:178,the value of plot_cost is         : 3.9271853524622387 

 At row:74, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:74, column:179,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:179,the value of plot_cost is         : 3.899183173585082 

 At row:74, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:74, column:180,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:180,the value of plot_cost is         : 3.8719890551104403 

 At row:74, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:74, column:181,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:181,the value of plot_cost is         : 3.845602997038314 

 At row:74, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:74, column:182,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:182,the value of plot_cost is         : 3.820024999368703 

 At row:74, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:74, column:183,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:183,the value of plot_cost is         : 3.7952550621016057 

 At row:74, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:74, column:184,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:184,the value of plot_cost is         : 3.7712931852370244 

 At row:74, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:74, column:185,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:185,the value of plot_cost is         : 3.7481393687749582 

 At row:74, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:74, column:186,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:186,the value of plot_cost is         : 3.725793612715407 

 At row:74, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:74, column:187,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:187,the value of plot_cost is         : 3.7042559170583713 

 At row:74, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:74, column:188,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:188,the value of plot_cost is         : 3.68352628180385 

 At row:74, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:74, column:189,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:189,the value of plot_cost is         : 3.663604706951844 

 At row:74, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:74, column:190,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:190,the value of plot_cost is         : 3.644491192502354 

 At row:74, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:74, column:191,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:191,the value of plot_cost is         : 3.626185738455378 

 At row:74, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:74, column:192,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:192,the value of plot_cost is         : 3.6086883448109175 

 At row:74, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:74, column:193,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:193,the value of plot_cost is         : 3.5919990115689715 

 At row:74, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:74, column:194,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:194,the value of plot_cost is         : 3.576117738729541 

 At row:74, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:74, column:195,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:195,the value of plot_cost is         : 3.5610445262926262 

 At row:74, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:74, column:196,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:196,the value of plot_cost is         : 3.5467793742582256 

 At row:74, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:74, column:197,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:197,the value of plot_cost is         : 3.53332228262634 

 At row:74, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:74, column:198,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:198,the value of plot_cost is         : 3.52067325139697 

 At row:74, column:199,the value of plot_t0 is           : 3.0
 At row:74, column:199,the value of plot_t1 is           : 0.48743718592964824
 At row:74, column:199,the value of plot_cost is         : 3.508832280570115 

 At row:75, column:0,the value of plot_t0 is           : -1.0
 At row:75, column:0,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:0,the value of plot_cost is         : 21.084632025886787 

 At row:75, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:75, column:1,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:1,the value of plot_cost is         : 20.915473238410282 

 At row:75, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:75, column:2,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:2,the value of plot_cost is         : 20.74712251133629 

 At row:75, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:75, column:3,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:3,the value of plot_cost is         : 20.579579844664813 

 At row:75, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:75, column:4,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:4,the value of plot_cost is         : 20.412845238395853 

 At row:75, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:75, column:5,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:5,the value of plot_cost is         : 20.246918692529402 

 At row:75, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:75, column:6,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:6,the value of plot_cost is         : 20.081800207065474 

 At row:75, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:75, column:7,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:7,the value of plot_cost is         : 19.917489782004058 

 At row:75, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:75, column:8,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:8,the value of plot_cost is         : 19.753987417345154 

 At row:75, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:75, column:9,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:9,the value of plot_cost is         : 19.59129311308877 

 At row:75, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:75, column:10,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:10,the value of plot_cost is         : 19.4294068692349 

 At row:75, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:75, column:11,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:11,the value of plot_cost is         : 19.26832868578354 

 At row:75, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:75, column:12,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:12,the value of plot_cost is         : 19.108058562734705 

 At row:75, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:75, column:13,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:13,the value of plot_cost is         : 18.948596500088374 

 At row:75, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:75, column:14,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:14,the value of plot_cost is         : 18.789942497844567 

 At row:75, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:75, column:15,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:15,the value of plot_cost is         : 18.63209655600327 

 At row:75, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:75, column:16,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:16,the value of plot_cost is         : 18.47505867456449 

 At row:75, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:75, column:17,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:17,the value of plot_cost is         : 18.318828853528228 

 At row:75, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:75, column:18,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:18,the value of plot_cost is         : 18.163407092894474 

 At row:75, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:75, column:19,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:19,the value of plot_cost is         : 18.00879339266324 

 At row:75, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:75, column:20,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:20,the value of plot_cost is         : 17.85498775283452 

 At row:75, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:75, column:21,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:21,the value of plot_cost is         : 17.701990173408316 

 At row:75, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:75, column:22,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:22,the value of plot_cost is         : 17.549800654384626 

 At row:75, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:75, column:23,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:23,the value of plot_cost is         : 17.39841919576345 

 At row:75, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:75, column:24,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:24,the value of plot_cost is         : 17.24784579754479 

 At row:75, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:75, column:25,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:25,the value of plot_cost is         : 17.098080459728646 

 At row:75, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:75, column:26,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:26,the value of plot_cost is         : 16.949123182315017 

 At row:75, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:75, column:27,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:27,the value of plot_cost is         : 16.8009739653039 

 At row:75, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:75, column:28,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:28,the value of plot_cost is         : 16.653632808695303 

 At row:75, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:75, column:29,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:29,the value of plot_cost is         : 16.507099712489218 

 At row:75, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:75, column:30,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:30,the value of plot_cost is         : 16.36137467668565 

 At row:75, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:75, column:31,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:31,the value of plot_cost is         : 16.216457701284597 

 At row:75, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:75, column:32,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:32,the value of plot_cost is         : 16.072348786286057 

 At row:75, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:75, column:33,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:33,the value of plot_cost is         : 15.929047931690032 

 At row:75, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:75, column:34,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:34,the value of plot_cost is         : 15.786555137496524 

 At row:75, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:75, column:35,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:35,the value of plot_cost is         : 15.64487040370553 

 At row:75, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:75, column:36,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:36,the value of plot_cost is         : 15.503993730317053 

 At row:75, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:75, column:37,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:37,the value of plot_cost is         : 15.363925117331089 

 At row:75, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:75, column:38,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:38,the value of plot_cost is         : 15.224664564747638 

 At row:75, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:75, column:39,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:39,the value of plot_cost is         : 15.086212072566706 

 At row:75, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:75, column:40,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:40,the value of plot_cost is         : 14.948567640788287 

 At row:75, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:75, column:41,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:41,the value of plot_cost is         : 14.811731269412384 

 At row:75, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:75, column:42,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:42,the value of plot_cost is         : 14.675702958438997 

 At row:75, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:75, column:43,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:43,the value of plot_cost is         : 14.540482707868124 

 At row:75, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:75, column:44,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:44,the value of plot_cost is         : 14.406070517699767 

 At row:75, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:75, column:45,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:45,the value of plot_cost is         : 14.272466387933923 

 At row:75, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:75, column:46,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:46,the value of plot_cost is         : 14.139670318570596 

 At row:75, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:75, column:47,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:47,the value of plot_cost is         : 14.007682309609782 

 At row:75, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:75, column:48,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:48,the value of plot_cost is         : 13.876502361051484 

 At row:75, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:75, column:49,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:49,the value of plot_cost is         : 13.746130472895702 

 At row:75, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:75, column:50,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:50,the value of plot_cost is         : 13.616566645142434 

 At row:75, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:75, column:51,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:51,the value of plot_cost is         : 13.487810877791684 

 At row:75, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:75, column:52,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:52,the value of plot_cost is         : 13.359863170843447 

 At row:75, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:75, column:53,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:53,the value of plot_cost is         : 13.232723524297725 

 At row:75, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:75, column:54,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:54,the value of plot_cost is         : 13.106391938154518 

 At row:75, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:75, column:55,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:55,the value of plot_cost is         : 12.980868412413821 

 At row:75, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:75, column:56,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:56,the value of plot_cost is         : 12.856152947075648 

 At row:75, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:75, column:57,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:57,the value of plot_cost is         : 12.732245542139983 

 At row:75, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:75, column:58,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:58,the value of plot_cost is         : 12.60914619760684 

 At row:75, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:75, column:59,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:59,the value of plot_cost is         : 12.48685491347621 

 At row:75, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:75, column:60,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:60,the value of plot_cost is         : 12.365371689748091 

 At row:75, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:75, column:61,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:61,the value of plot_cost is         : 12.244696526422489 

 At row:75, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:75, column:62,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:62,the value of plot_cost is         : 12.124829423499403 

 At row:75, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:75, column:63,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:63,the value of plot_cost is         : 12.005770380978833 

 At row:75, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:75, column:64,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:64,the value of plot_cost is         : 11.887519398860777 

 At row:75, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:75, column:65,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:65,the value of plot_cost is         : 11.770076477145233 

 At row:75, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:75, column:66,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:66,the value of plot_cost is         : 11.65344161583221 

 At row:75, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:75, column:67,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:67,the value of plot_cost is         : 11.537614814921698 

 At row:75, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:75, column:68,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:68,the value of plot_cost is         : 11.422596074413702 

 At row:75, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:75, column:69,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:69,the value of plot_cost is         : 11.308385394308223 

 At row:75, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:75, column:70,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:70,the value of plot_cost is         : 11.194982774605254 

 At row:75, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:75, column:71,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:71,the value of plot_cost is         : 11.082388215304805 

 At row:75, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:75, column:72,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:72,the value of plot_cost is         : 10.97060171640687 

 At row:75, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:75, column:73,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:73,the value of plot_cost is         : 10.859623277911448 

 At row:75, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:75, column:74,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:74,the value of plot_cost is         : 10.749452899818545 

 At row:75, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:75, column:75,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:75,the value of plot_cost is         : 10.640090582128153 

 At row:75, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:75, column:76,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:76,the value of plot_cost is         : 10.531536324840278 

 At row:75, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:75, column:77,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:77,the value of plot_cost is         : 10.42379012795492 

 At row:75, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:75, column:78,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:78,the value of plot_cost is         : 10.316851991472072 

 At row:75, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:75, column:79,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:79,the value of plot_cost is         : 10.210721915391746 

 At row:75, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:75, column:80,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:80,the value of plot_cost is         : 10.105399899713928 

 At row:75, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:75, column:81,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:81,the value of plot_cost is         : 10.000885944438629 

 At row:75, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:75, column:82,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:82,the value of plot_cost is         : 9.897180049565845 

 At row:75, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:75, column:83,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:83,the value of plot_cost is         : 9.794282215095576 

 At row:75, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:75, column:84,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:84,the value of plot_cost is         : 9.69219244102782 

 At row:75, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:75, column:85,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:85,the value of plot_cost is         : 9.590910727362582 

 At row:75, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:75, column:86,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:86,the value of plot_cost is         : 9.490437074099859 

 At row:75, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:75, column:87,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:87,the value of plot_cost is         : 9.390771481239648 

 At row:75, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:75, column:88,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:88,the value of plot_cost is         : 9.291913948781955 

 At row:75, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:75, column:89,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:89,the value of plot_cost is         : 9.193864476726775 

 At row:75, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:75, column:90,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:90,the value of plot_cost is         : 9.09662306507411 

 At row:75, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:75, column:91,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:91,the value of plot_cost is         : 9.000189713823962 

 At row:75, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:75, column:92,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:92,the value of plot_cost is         : 8.904564422976328 

 At row:75, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:75, column:93,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:93,the value of plot_cost is         : 8.80974719253121 

 At row:75, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:75, column:94,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:94,the value of plot_cost is         : 8.715738022488608 

 At row:75, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:75, column:95,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:95,the value of plot_cost is         : 8.622536912848519 

 At row:75, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:75, column:96,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:96,the value of plot_cost is         : 8.530143863610945 

 At row:75, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:75, column:97,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:97,the value of plot_cost is         : 8.438558874775888 

 At row:75, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:75, column:98,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:98,the value of plot_cost is         : 8.347781946343344 

 At row:75, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:75, column:99,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:99,the value of plot_cost is         : 8.257813078313317 

 At row:75, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:75, column:100,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:100,the value of plot_cost is         : 8.168652270685802 

 At row:75, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:75, column:101,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:101,the value of plot_cost is         : 8.080299523460804 

 At row:75, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:75, column:102,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:102,the value of plot_cost is         : 7.992754836638323 

 At row:75, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:75, column:103,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:103,the value of plot_cost is         : 7.906018210218353 

 At row:75, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:75, column:104,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:104,the value of plot_cost is         : 7.820089644200901 

 At row:75, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:75, column:105,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:105,the value of plot_cost is         : 7.734969138585965 

 At row:75, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:75, column:106,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:106,the value of plot_cost is         : 7.650656693373542 

 At row:75, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:75, column:107,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:107,the value of plot_cost is         : 7.567152308563635 

 At row:75, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:75, column:108,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:108,the value of plot_cost is         : 7.484455984156242 

 At row:75, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:75, column:109,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:109,the value of plot_cost is         : 7.402567720151363 

 At row:75, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:75, column:110,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:110,the value of plot_cost is         : 7.321487516549001 

 At row:75, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:75, column:111,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:111,the value of plot_cost is         : 7.241215373349157 

 At row:75, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:75, column:112,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:112,the value of plot_cost is         : 7.161751290551824 

 At row:75, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:75, column:113,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:113,the value of plot_cost is         : 7.083095268157007 

 At row:75, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:75, column:114,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:114,the value of plot_cost is         : 7.005247306164705 

 At row:75, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:75, column:115,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:115,the value of plot_cost is         : 6.928207404574917 

 At row:75, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:75, column:116,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:116,the value of plot_cost is         : 6.851975563387648 

 At row:75, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:75, column:117,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:117,the value of plot_cost is         : 6.776551782602891 

 At row:75, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:75, column:118,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:118,the value of plot_cost is         : 6.701936062220648 

 At row:75, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:75, column:119,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:119,the value of plot_cost is         : 6.628128402240922 

 At row:75, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:75, column:120,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:120,the value of plot_cost is         : 6.5551288026637105 

 At row:75, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:75, column:121,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:121,the value of plot_cost is         : 6.482937263489016 

 At row:75, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:75, column:122,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:122,the value of plot_cost is         : 6.411553784716834 

 At row:75, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:75, column:123,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:123,the value of plot_cost is         : 6.340978366347168 

 At row:75, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:75, column:124,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:124,the value of plot_cost is         : 6.271211008380017 

 At row:75, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:75, column:125,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:125,the value of plot_cost is         : 6.20225171081538 

 At row:75, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:75, column:126,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:126,the value of plot_cost is         : 6.134100473653261 

 At row:75, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:75, column:127,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:127,the value of plot_cost is         : 6.066757296893655 

 At row:75, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:75, column:128,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:128,the value of plot_cost is         : 6.000222180536564 

 At row:75, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:75, column:129,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:129,the value of plot_cost is         : 5.934495124581988 

 At row:75, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:75, column:130,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:130,the value of plot_cost is         : 5.8695761290299275 

 At row:75, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:75, column:131,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:131,the value of plot_cost is         : 5.805465193880384 

 At row:75, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:75, column:132,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:132,the value of plot_cost is         : 5.742162319133353 

 At row:75, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:75, column:133,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:133,the value of plot_cost is         : 5.6796675047888385 

 At row:75, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:75, column:134,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:134,the value of plot_cost is         : 5.617980750846837 

 At row:75, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:75, column:135,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:135,the value of plot_cost is         : 5.557102057307353 

 At row:75, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:75, column:136,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:136,the value of plot_cost is         : 5.497031424170384 

 At row:75, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:75, column:137,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:137,the value of plot_cost is         : 5.437768851435929 

 At row:75, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:75, column:138,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:138,the value of plot_cost is         : 5.379314339103988 

 At row:75, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:75, column:139,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:139,the value of plot_cost is         : 5.321667887174564 

 At row:75, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:75, column:140,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:140,the value of plot_cost is         : 5.264829495647654 

 At row:75, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:75, column:141,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:141,the value of plot_cost is         : 5.208799164523261 

 At row:75, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:75, column:142,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:142,the value of plot_cost is         : 5.1535768938013815 

 At row:75, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:75, column:143,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:143,the value of plot_cost is         : 5.0991626834820165 

 At row:75, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:75, column:144,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:144,the value of plot_cost is         : 5.0455565335651675 

 At row:75, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:75, column:145,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:145,the value of plot_cost is         : 4.992758444050833 

 At row:75, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:75, column:146,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:146,the value of plot_cost is         : 4.940768414939016 

 At row:75, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:75, column:147,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:147,the value of plot_cost is         : 4.889586446229711 

 At row:75, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:75, column:148,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:148,the value of plot_cost is         : 4.839212537922922 

 At row:75, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:75, column:149,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:149,the value of plot_cost is         : 4.789646690018649 

 At row:75, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:75, column:150,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:150,the value of plot_cost is         : 4.74088890251689 

 At row:75, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:75, column:151,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:151,the value of plot_cost is         : 4.692939175417647 

 At row:75, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:75, column:152,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:152,the value of plot_cost is         : 4.645797508720919 

 At row:75, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:75, column:153,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:153,the value of plot_cost is         : 4.599463902426705 

 At row:75, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:75, column:154,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:154,the value of plot_cost is         : 4.553938356535006 

 At row:75, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:75, column:155,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:155,the value of plot_cost is         : 4.509220871045823 

 At row:75, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:75, column:156,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:156,the value of plot_cost is         : 4.465311445959156 

 At row:75, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:75, column:157,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:157,the value of plot_cost is         : 4.422210081275003 

 At row:75, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:75, column:158,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:158,the value of plot_cost is         : 4.3799167769933645 

 At row:75, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:75, column:159,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:159,the value of plot_cost is         : 4.338431533114242 

 At row:75, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:75, column:160,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:160,the value of plot_cost is         : 4.297754349637634 

 At row:75, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:75, column:161,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:161,the value of plot_cost is         : 4.257885226563541 

 At row:75, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:75, column:162,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:162,the value of plot_cost is         : 4.218824163891965 

 At row:75, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:75, column:163,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:163,the value of plot_cost is         : 4.180571161622901 

 At row:75, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:75, column:164,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:164,the value of plot_cost is         : 4.143126219756354 

 At row:75, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:75, column:165,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:165,the value of plot_cost is         : 4.106489338292321 

 At row:75, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:75, column:166,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:166,the value of plot_cost is         : 4.070660517230805 

 At row:75, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:75, column:167,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:167,the value of plot_cost is         : 4.035639756571803 

 At row:75, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:75, column:168,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:168,the value of plot_cost is         : 4.001427056315316 

 At row:75, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:75, column:169,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:169,the value of plot_cost is         : 3.9680224164613427 

 At row:75, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:75, column:170,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:170,the value of plot_cost is         : 3.9354258370098862 

 At row:75, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:75, column:171,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:171,the value of plot_cost is         : 3.903637317960945 

 At row:75, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:75, column:172,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:172,the value of plot_cost is         : 3.8726568593145188 

 At row:75, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:75, column:173,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:173,the value of plot_cost is         : 3.842484461070607 

 At row:75, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:75, column:174,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:174,the value of plot_cost is         : 3.81312012322921 

 At row:75, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:75, column:175,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:175,the value of plot_cost is         : 3.784563845790329 

 At row:75, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:75, column:176,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:176,the value of plot_cost is         : 3.7568156287539622 

 At row:75, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:75, column:177,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:177,the value of plot_cost is         : 3.7298754721201117 

 At row:75, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:75, column:178,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:178,the value of plot_cost is         : 3.7037433758887754 

 At row:75, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:75, column:179,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:179,the value of plot_cost is         : 3.678419340059954 

 At row:75, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:75, column:180,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:180,the value of plot_cost is         : 3.6539033646336474 

 At row:75, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:75, column:181,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:181,the value of plot_cost is         : 3.6301954496098574 

 At row:75, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:75, column:182,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:182,the value of plot_cost is         : 3.607295594988582 

 At row:75, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:75, column:183,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:183,the value of plot_cost is         : 3.5852038007698206 

 At row:75, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:75, column:184,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:184,the value of plot_cost is         : 3.5639200669535747 

 At row:75, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:75, column:185,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:185,the value of plot_cost is         : 3.5434443935398443 

 At row:75, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:75, column:186,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:186,the value of plot_cost is         : 3.5237767805286295 

 At row:75, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:75, column:187,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:187,the value of plot_cost is         : 3.50491722791993 

 At row:75, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:75, column:188,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:188,the value of plot_cost is         : 3.486865735713744 

 At row:75, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:75, column:189,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:189,the value of plot_cost is         : 3.469622303910073 

 At row:75, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:75, column:190,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:190,the value of plot_cost is         : 3.453186932508918 

 At row:75, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:75, column:191,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:191,the value of plot_cost is         : 3.4375596215102786 

 At row:75, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:75, column:192,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:192,the value of plot_cost is         : 3.422740370914154 

 At row:75, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:75, column:193,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:193,the value of plot_cost is         : 3.408729180720544 

 At row:75, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:75, column:194,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:194,the value of plot_cost is         : 3.3955260509294485 

 At row:75, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:75, column:195,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:195,the value of plot_cost is         : 3.3831309815408694 

 At row:75, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:75, column:196,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:196,the value of plot_cost is         : 3.371543972554805 

 At row:75, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:75, column:197,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:197,the value of plot_cost is         : 3.3607650239712554 

 At row:75, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:75, column:198,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:198,the value of plot_cost is         : 3.350794135790221 

 At row:75, column:199,the value of plot_t0 is           : 3.0
 At row:75, column:199,the value of plot_t1 is           : 0.5075376884422111
 At row:75, column:199,the value of plot_cost is         : 3.341631308011701 

 At row:76, column:0,the value of plot_t0 is           : -1.0
 At row:76, column:0,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:0,the value of plot_cost is         : 20.397063241548736 

 At row:76, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:76, column:1,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:1,the value of plot_cost is         : 20.230582597120563 

 At row:76, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:76, column:2,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:2,the value of plot_cost is         : 20.064910013094906 

 At row:76, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:76, column:3,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:3,the value of plot_cost is         : 19.90004548947177 

 At row:76, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:76, column:4,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:4,the value of plot_cost is         : 19.73598902625114 

 At row:76, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:76, column:5,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:5,the value of plot_cost is         : 19.57274062343303 

 At row:76, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:76, column:6,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:6,the value of plot_cost is         : 19.410300281017438 

 At row:76, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:76, column:7,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:7,the value of plot_cost is         : 19.248667999004354 

 At row:76, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:76, column:8,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:8,the value of plot_cost is         : 19.08784377739379 

 At row:76, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:76, column:9,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:9,the value of plot_cost is         : 18.927827616185738 

 At row:76, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:76, column:10,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:10,the value of plot_cost is         : 18.768619515380205 

 At row:76, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:76, column:11,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:11,the value of plot_cost is         : 18.610219474977182 

 At row:76, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:76, column:12,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:12,the value of plot_cost is         : 18.452627494976678 

 At row:76, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:76, column:13,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:13,the value of plot_cost is         : 18.295843575378687 

 At row:76, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:76, column:14,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:14,the value of plot_cost is         : 18.13986771618321 

 At row:76, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:76, column:15,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:15,the value of plot_cost is         : 17.98469991739025 

 At row:76, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:76, column:16,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:16,the value of plot_cost is         : 17.83034017899981 

 At row:76, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:76, column:17,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:17,the value of plot_cost is         : 17.676788501011874 

 At row:76, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:76, column:18,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:18,the value of plot_cost is         : 17.524044883426466 

 At row:76, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:76, column:19,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:19,the value of plot_cost is         : 17.372109326243564 

 At row:76, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:76, column:20,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:20,the value of plot_cost is         : 17.22098182946318 

 At row:76, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:76, column:21,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:21,the value of plot_cost is         : 17.070662393085314 

 At row:76, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:76, column:22,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:22,the value of plot_cost is         : 16.921151017109956 

 At row:76, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:76, column:23,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:23,the value of plot_cost is         : 16.772447701537118 

 At row:76, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:76, column:24,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:24,the value of plot_cost is         : 16.624552446366792 

 At row:76, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:76, column:25,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:25,the value of plot_cost is         : 16.477465251598986 

 At row:76, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:76, column:26,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:26,the value of plot_cost is         : 16.331186117233692 

 At row:76, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:76, column:27,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:27,the value of plot_cost is         : 16.18571504327091 

 At row:76, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:76, column:28,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:28,the value of plot_cost is         : 16.04105202971065 

 At row:76, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:76, column:29,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:29,the value of plot_cost is         : 15.897197076552901 

 At row:76, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:76, column:30,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:30,the value of plot_cost is         : 15.754150183797668 

 At row:76, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:76, column:31,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:31,the value of plot_cost is         : 15.61191135144495 

 At row:76, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:76, column:32,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:32,the value of plot_cost is         : 15.470480579494748 

 At row:76, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:76, column:33,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:33,the value of plot_cost is         : 15.329857867947059 

 At row:76, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:76, column:34,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:34,the value of plot_cost is         : 15.190043216801884 

 At row:76, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:76, column:35,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:35,the value of plot_cost is         : 15.051036626059226 

 At row:76, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:76, column:36,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:36,the value of plot_cost is         : 14.912838095719083 

 At row:76, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:76, column:37,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:37,the value of plot_cost is         : 14.775447625781457 

 At row:76, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:76, column:38,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:38,the value of plot_cost is         : 14.638865216246344 

 At row:76, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:76, column:39,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:39,the value of plot_cost is         : 14.503090867113745 

 At row:76, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:76, column:40,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:40,the value of plot_cost is         : 14.368124578383664 

 At row:76, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:76, column:41,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:41,the value of plot_cost is         : 14.233966350056095 

 At row:76, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:76, column:42,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:42,the value of plot_cost is         : 14.100616182131041 

 At row:76, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:76, column:43,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:43,the value of plot_cost is         : 13.968074074608504 

 At row:76, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:76, column:44,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:44,the value of plot_cost is         : 13.83634002748848 

 At row:76, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:76, column:45,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:45,the value of plot_cost is         : 13.705414040770977 

 At row:76, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:76, column:46,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:46,the value of plot_cost is         : 13.575296114455984 

 At row:76, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:76, column:47,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:47,the value of plot_cost is         : 13.445986248543507 

 At row:76, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:76, column:48,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:48,the value of plot_cost is         : 13.317484443033546 

 At row:76, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:76, column:49,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:49,the value of plot_cost is         : 13.189790697926096 

 At row:76, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:76, column:50,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:50,the value of plot_cost is         : 13.062905013221169 

 At row:76, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:76, column:51,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:51,the value of plot_cost is         : 12.93682738891875 

 At row:76, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:76, column:52,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:52,the value of plot_cost is         : 12.811557825018847 

 At row:76, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:76, column:53,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:53,the value of plot_cost is         : 12.687096321521462 

 At row:76, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:76, column:54,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:54,the value of plot_cost is         : 12.56344287842659 

 At row:76, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:76, column:55,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:55,the value of plot_cost is         : 12.440597495734233 

 At row:76, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:76, column:56,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:56,the value of plot_cost is         : 12.318560173444393 

 At row:76, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:76, column:57,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:57,the value of plot_cost is         : 12.197330911557067 

 At row:76, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:76, column:58,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:58,the value of plot_cost is         : 12.07690971007226 

 At row:76, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:76, column:59,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:59,the value of plot_cost is         : 11.95729656898996 

 At row:76, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:76, column:60,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:60,the value of plot_cost is         : 11.83849148831018 

 At row:76, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:76, column:61,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:61,the value of plot_cost is         : 11.720494468032916 

 At row:76, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:76, column:62,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:62,the value of plot_cost is         : 11.603305508158163 

 At row:76, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:76, column:63,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:63,the value of plot_cost is         : 11.486924608685928 

 At row:76, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:76, column:64,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:64,the value of plot_cost is         : 11.371351769616206 

 At row:76, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:76, column:65,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:65,the value of plot_cost is         : 11.256586990949003 

 At row:76, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:76, column:66,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:66,the value of plot_cost is         : 11.142630272684313 

 At row:76, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:76, column:67,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:67,the value of plot_cost is         : 11.029481614822137 

 At row:76, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:76, column:68,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:68,the value of plot_cost is         : 10.917141017362477 

 At row:76, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:76, column:69,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:69,the value of plot_cost is         : 10.80560848030533 

 At row:76, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:76, column:70,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:70,the value of plot_cost is         : 10.694884003650701 

 At row:76, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:76, column:71,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:71,the value of plot_cost is         : 10.584967587398587 

 At row:76, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:76, column:72,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:72,the value of plot_cost is         : 10.475859231548986 

 At row:76, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:76, column:73,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:73,the value of plot_cost is         : 10.367558936101904 

 At row:76, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:76, column:74,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:74,the value of plot_cost is         : 10.26006670105733 

 At row:76, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:76, column:75,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:75,the value of plot_cost is         : 10.153382526415278 

 At row:76, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:76, column:76,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:76,the value of plot_cost is         : 10.047506412175741 

 At row:76, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:76, column:77,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:77,the value of plot_cost is         : 9.942438358338714 

 At row:76, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:76, column:78,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:78,the value of plot_cost is         : 9.838178364904202 

 At row:76, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:76, column:79,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:79,the value of plot_cost is         : 9.73472643187221 

 At row:76, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:76, column:80,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:80,the value of plot_cost is         : 9.632082559242733 

 At row:76, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:76, column:81,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:81,the value of plot_cost is         : 9.53024674701577 

 At row:76, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:76, column:82,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:82,the value of plot_cost is         : 9.42921899519132 

 At row:76, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:76, column:83,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:83,the value of plot_cost is         : 9.328999303769383 

 At row:76, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:76, column:84,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:84,the value of plot_cost is         : 9.229587672749966 

 At row:76, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:76, column:85,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:85,the value of plot_cost is         : 9.130984102133063 

 At row:76, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:76, column:86,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:86,the value of plot_cost is         : 9.033188591918675 

 At row:76, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:76, column:87,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:87,the value of plot_cost is         : 8.936201142106801 

 At row:76, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:76, column:88,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:88,the value of plot_cost is         : 8.84002175269744 

 At row:76, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:76, column:89,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:89,the value of plot_cost is         : 8.744650423690599 

 At row:76, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:76, column:90,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:90,the value of plot_cost is         : 8.650087155086272 

 At row:76, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:76, column:91,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:91,the value of plot_cost is         : 8.556331946884459 

 At row:76, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:76, column:92,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:92,the value of plot_cost is         : 8.46338479908516 

 At row:76, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:76, column:93,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:93,the value of plot_cost is         : 8.371245711688376 

 At row:76, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:76, column:94,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:94,the value of plot_cost is         : 8.27991468469411 

 At row:76, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:76, column:95,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:95,the value of plot_cost is         : 8.189391718102357 

 At row:76, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:76, column:96,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:96,the value of plot_cost is         : 8.09967681191312 

 At row:76, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:76, column:97,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:97,the value of plot_cost is         : 8.010769966126396 

 At row:76, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:76, column:98,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:98,the value of plot_cost is         : 7.922671180742187 

 At row:76, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:76, column:99,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:99,the value of plot_cost is         : 7.835380455760496 

 At row:76, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:76, column:100,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:100,the value of plot_cost is         : 7.748897791181321 

 At row:76, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:76, column:101,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:101,the value of plot_cost is         : 7.663223187004658 

 At row:76, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:76, column:102,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:102,the value of plot_cost is         : 7.57835664323051 

 At row:76, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:76, column:103,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:103,the value of plot_cost is         : 7.494298159858877 

 At row:76, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:76, column:104,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:104,the value of plot_cost is         : 7.411047736889761 

 At row:76, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:76, column:105,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:105,the value of plot_cost is         : 7.3286053743231605 

 At row:76, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:76, column:106,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:106,the value of plot_cost is         : 7.246971072159074 

 At row:76, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:76, column:107,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:107,the value of plot_cost is         : 7.166144830397501 

 At row:76, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:76, column:108,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:108,the value of plot_cost is         : 7.086126649038443 

 At row:76, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:76, column:109,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:109,the value of plot_cost is         : 7.006916528081902 

 At row:76, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:76, column:110,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:110,the value of plot_cost is         : 6.928514467527877 

 At row:76, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:76, column:111,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:111,the value of plot_cost is         : 6.850920467376366 

 At row:76, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:76, column:112,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:112,the value of plot_cost is         : 6.7741345276273695 

 At row:76, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:76, column:113,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:113,the value of plot_cost is         : 6.698156648280886 

 At row:76, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:76, column:114,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:114,the value of plot_cost is         : 6.622986829336921 

 At row:76, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:76, column:115,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:115,the value of plot_cost is         : 6.54862507079547 

 At row:76, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:76, column:116,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:116,the value of plot_cost is         : 6.4750713726565365 

 At row:76, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:76, column:117,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:117,the value of plot_cost is         : 6.402325734920114 

 At row:76, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:76, column:118,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:118,the value of plot_cost is         : 6.330388157586207 

 At row:76, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:76, column:119,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:119,the value of plot_cost is         : 6.259258640654817 

 At row:76, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:76, column:120,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:120,the value of plot_cost is         : 6.188937184125943 

 At row:76, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:76, column:121,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:121,the value of plot_cost is         : 6.119423787999583 

 At row:76, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:76, column:122,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:122,the value of plot_cost is         : 6.050718452275737 

 At row:76, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:76, column:123,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:123,the value of plot_cost is         : 5.982821176954404 

 At row:76, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:76, column:124,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:124,the value of plot_cost is         : 5.915731962035591 

 At row:76, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:76, column:125,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:125,the value of plot_cost is         : 5.8494508075192915 

 At row:76, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:76, column:126,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:126,the value of plot_cost is         : 5.783977713405507 

 At row:76, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:76, column:127,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:127,the value of plot_cost is         : 5.719312679694236 

 At row:76, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:76, column:128,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:128,the value of plot_cost is         : 5.655455706385479 

 At row:76, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:76, column:129,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:129,the value of plot_cost is         : 5.592406793479241 

 At row:76, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:76, column:130,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:130,the value of plot_cost is         : 5.530165940975516 

 At row:76, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:76, column:131,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:131,the value of plot_cost is         : 5.468733148874309 

 At row:76, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:76, column:132,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:132,the value of plot_cost is         : 5.408108417175613 

 At row:76, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:76, column:133,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:133,the value of plot_cost is         : 5.348291745879432 

 At row:76, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:76, column:134,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:134,the value of plot_cost is         : 5.2892831349857685 

 At row:76, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:76, column:135,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:135,the value of plot_cost is         : 5.23108258449462 

 At row:76, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:76, column:136,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:136,the value of plot_cost is         : 5.173690094405987 

 At row:76, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:76, column:137,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:137,the value of plot_cost is         : 5.117105664719866 

 At row:76, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:76, column:138,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:138,the value of plot_cost is         : 5.061329295436262 

 At row:76, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:76, column:139,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:139,the value of plot_cost is         : 5.0063609865551735 

 At row:76, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:76, column:140,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:140,the value of plot_cost is         : 4.9522007380766 

 At row:76, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:76, column:141,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:141,the value of plot_cost is         : 4.898848550000543 

 At row:76, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:76, column:142,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:142,the value of plot_cost is         : 4.846304422326998 

 At row:76, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:76, column:143,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:143,the value of plot_cost is         : 4.794568355055968 

 At row:76, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:76, column:144,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:144,the value of plot_cost is         : 4.743640348187456 

 At row:76, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:76, column:145,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:145,the value of plot_cost is         : 4.693520401721458 

 At row:76, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:76, column:146,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:146,the value of plot_cost is         : 4.644208515657975 

 At row:76, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:76, column:147,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:147,the value of plot_cost is         : 4.595704689997007 

 At row:76, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:76, column:148,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:148,the value of plot_cost is         : 4.548008924738553 

 At row:76, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:76, column:149,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:149,the value of plot_cost is         : 4.501121219882615 

 At row:76, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:76, column:150,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:150,the value of plot_cost is         : 4.455041575429192 

 At row:76, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:76, column:151,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:151,the value of plot_cost is         : 4.409769991378283 

 At row:76, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:76, column:152,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:152,the value of plot_cost is         : 4.365306467729892 

 At row:76, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:76, column:153,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:153,the value of plot_cost is         : 4.321651004484013 

 At row:76, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:76, column:154,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:154,the value of plot_cost is         : 4.278803601640651 

 At row:76, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:76, column:155,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:155,the value of plot_cost is         : 4.236764259199805 

 At row:76, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:76, column:156,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:156,the value of plot_cost is         : 4.195532977161471 

 At row:76, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:76, column:157,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:157,the value of plot_cost is         : 4.155109755525654 

 At row:76, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:76, column:158,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:158,the value of plot_cost is         : 4.115494594292351 

 At row:76, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:76, column:159,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:159,the value of plot_cost is         : 4.076687493461566 

 At row:76, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:76, column:160,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:160,the value of plot_cost is         : 4.038688453033293 

 At row:76, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:76, column:161,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:161,the value of plot_cost is         : 4.001497473007535 

 At row:76, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:76, column:162,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:162,the value of plot_cost is         : 3.9651145533842946 

 At row:76, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:76, column:163,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:163,the value of plot_cost is         : 3.9295396941635667 

 At row:76, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:76, column:164,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:164,the value of plot_cost is         : 3.8947728953453558 

 At row:76, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:76, column:165,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:165,the value of plot_cost is         : 3.86081415692966 

 At row:76, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:76, column:166,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:166,the value of plot_cost is         : 3.827663478916478 

 At row:76, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:76, column:167,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:167,the value of plot_cost is         : 3.795320861305812 

 At row:76, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:76, column:168,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:168,the value of plot_cost is         : 3.763786304097659 

 At row:76, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:76, column:169,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:169,the value of plot_cost is         : 3.7330598072920234 

 At row:76, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:76, column:170,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:170,the value of plot_cost is         : 3.7031413708889027 

 At row:76, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:76, column:171,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:171,the value of plot_cost is         : 3.6740309948882963 

 At row:76, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:76, column:172,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:172,the value of plot_cost is         : 3.645728679290206 

 At row:76, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:76, column:173,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:173,the value of plot_cost is         : 3.618234424094629 

 At row:76, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:76, column:174,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:174,the value of plot_cost is         : 3.5915482293015697 

 At row:76, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:76, column:175,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:175,the value of plot_cost is         : 3.565670094911023 

 At row:76, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:76, column:176,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:176,the value of plot_cost is         : 3.540600020922992 

 At row:76, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:76, column:177,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:177,the value of plot_cost is         : 3.516338007337478 

 At row:76, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:76, column:178,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:178,the value of plot_cost is         : 3.4928840541544766 

 At row:76, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:76, column:179,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:179,the value of plot_cost is         : 3.4702381613739917 

 At row:76, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:76, column:180,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:180,the value of plot_cost is         : 3.448400328996022 

 At row:76, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:76, column:181,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:181,the value of plot_cost is         : 3.4273705570205655 

 At row:76, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:76, column:182,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:182,the value of plot_cost is         : 3.407148845447626 

 At row:76, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:76, column:183,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:183,the value of plot_cost is         : 3.3877351942772003 

 At row:76, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:76, column:184,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:184,the value of plot_cost is         : 3.3691296035092915 

 At row:76, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:76, column:185,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:185,the value of plot_cost is         : 3.3513320731438965 

 At row:76, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:76, column:186,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:186,the value of plot_cost is         : 3.334342603181016 

 At row:76, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:76, column:187,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:187,the value of plot_cost is         : 3.318161193620652 

 At row:76, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:76, column:188,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:188,the value of plot_cost is         : 3.3027878444628023 

 At row:76, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:76, column:189,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:189,the value of plot_cost is         : 3.2882225557074682 

 At row:76, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:76, column:190,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:190,the value of plot_cost is         : 3.274465327354649 

 At row:76, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:76, column:191,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:191,the value of plot_cost is         : 3.2615161594043443 

 At row:76, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:76, column:192,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:192,the value of plot_cost is         : 3.249375051856555 

 At row:76, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:76, column:193,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:193,the value of plot_cost is         : 3.2380420047112803 

 At row:76, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:76, column:194,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:194,the value of plot_cost is         : 3.227517017968522 

 At row:76, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:76, column:195,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:195,the value of plot_cost is         : 3.2178000916282787 

 At row:76, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:76, column:196,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:196,the value of plot_cost is         : 3.208891225690549 

 At row:76, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:76, column:197,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:197,the value of plot_cost is         : 3.200790420155334 

 At row:76, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:76, column:198,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:198,the value of plot_cost is         : 3.193497675022636 

 At row:76, column:199,the value of plot_t0 is           : 3.0
 At row:76, column:199,the value of plot_t1 is           : 0.5276381909547738
 At row:76, column:199,the value of plot_cost is         : 3.187012990292453 

 At row:77, column:0,the value of plot_t0 is           : -1.0
 At row:77, column:0,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:0,the value of plot_cost is         : 19.72207711204983 

 At row:77, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:77, column:1,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:1,the value of plot_cost is         : 19.55827461067 

 At row:77, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:77, column:2,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:2,the value of plot_cost is         : 19.395280169692683 

 At row:77, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:77, column:3,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:3,the value of plot_cost is         : 19.233093789117877 

 At row:77, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:77, column:4,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:4,the value of plot_cost is         : 19.071715468945587 

 At row:77, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:77, column:5,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:5,the value of plot_cost is         : 18.911145209175807 

 At row:77, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:77, column:6,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:6,the value of plot_cost is         : 18.75138300980855 

 At row:77, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:77, column:7,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:7,the value of plot_cost is         : 18.592428870843808 

 At row:77, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:77, column:8,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:8,the value of plot_cost is         : 18.434282792281575 

 At row:77, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:77, column:9,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:9,the value of plot_cost is         : 18.276944774121862 

 At row:77, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:77, column:10,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:10,the value of plot_cost is         : 18.120414816364658 

 At row:77, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:77, column:11,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:11,the value of plot_cost is         : 17.964692919009977 

 At row:77, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:77, column:12,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:12,the value of plot_cost is         : 17.809779082057812 

 At row:77, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:77, column:13,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:13,the value of plot_cost is         : 17.655673305508152 

 At row:77, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:77, column:14,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:14,the value of plot_cost is         : 17.502375589361016 

 At row:77, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:77, column:15,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:15,the value of plot_cost is         : 17.34988593361639 

 At row:77, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:77, column:16,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:16,the value of plot_cost is         : 17.19820433827428 

 At row:77, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:77, column:17,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:17,the value of plot_cost is         : 17.04733080333469 

 At row:77, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:77, column:18,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:18,the value of plot_cost is         : 16.897265328797612 

 At row:77, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:77, column:19,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:19,the value of plot_cost is         : 16.74800791466305 

 At row:77, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:77, column:20,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:20,the value of plot_cost is         : 16.599558560930998 

 At row:77, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:77, column:21,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:21,the value of plot_cost is         : 16.451917267601466 

 At row:77, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:77, column:22,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:22,the value of plot_cost is         : 16.305084034674447 

 At row:77, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:77, column:23,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:23,the value of plot_cost is         : 16.15905886214994 

 At row:77, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:77, column:24,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:24,the value of plot_cost is         : 16.013841750027954 

 At row:77, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:77, column:25,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:25,the value of plot_cost is         : 15.86943269830848 

 At row:77, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:77, column:26,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:26,the value of plot_cost is         : 15.725831706991523 

 At row:77, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:77, column:27,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:27,the value of plot_cost is         : 15.583038776077082 

 At row:77, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:77, column:28,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:28,the value of plot_cost is         : 15.441053905565152 

 At row:77, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:77, column:29,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:29,the value of plot_cost is         : 15.299877095455741 

 At row:77, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:77, column:30,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:30,the value of plot_cost is         : 15.15950834574884 

 At row:77, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:77, column:31,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:31,the value of plot_cost is         : 15.019947656444458 

 At row:77, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:77, column:32,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:32,the value of plot_cost is         : 14.881195027542594 

 At row:77, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:77, column:33,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:33,the value of plot_cost is         : 14.743250459043239 

 At row:77, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:77, column:34,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:34,the value of plot_cost is         : 14.606113950946401 

 At row:77, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:77, column:35,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:35,the value of plot_cost is         : 14.469785503252078 

 At row:77, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:77, column:36,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:36,the value of plot_cost is         : 14.334265115960273 

 At row:77, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:77, column:37,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:37,the value of plot_cost is         : 14.199552789070982 

 At row:77, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:77, column:38,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:38,the value of plot_cost is         : 14.065648522584203 

 At row:77, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:77, column:39,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:39,the value of plot_cost is         : 13.932552316499942 

 At row:77, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:77, column:40,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:40,the value of plot_cost is         : 13.800264170818192 

 At row:77, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:77, column:41,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:41,the value of plot_cost is         : 13.668784085538963 

 At row:77, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:77, column:42,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:42,the value of plot_cost is         : 13.538112060662248 

 At row:77, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:77, column:43,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:43,the value of plot_cost is         : 13.408248096188043 

 At row:77, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:77, column:44,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:44,the value of plot_cost is         : 13.279192192116358 

 At row:77, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:77, column:45,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:45,the value of plot_cost is         : 13.150944348447187 

 At row:77, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:77, column:46,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:46,the value of plot_cost is         : 13.02350456518053 

 At row:77, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:77, column:47,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:47,the value of plot_cost is         : 12.896872842316391 

 At row:77, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:77, column:48,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:48,the value of plot_cost is         : 12.771049179854762 

 At row:77, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:77, column:49,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:49,the value of plot_cost is         : 12.646033577795652 

 At row:77, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:77, column:50,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:50,the value of plot_cost is         : 12.521826036139055 

 At row:77, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:77, column:51,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:51,the value of plot_cost is         : 12.398426554884974 

 At row:77, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:77, column:52,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:52,the value of plot_cost is         : 12.27583513403341 

 At row:77, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:77, column:53,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:53,the value of plot_cost is         : 12.154051773584358 

 At row:77, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:77, column:54,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:54,the value of plot_cost is         : 12.033076473537824 

 At row:77, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:77, column:55,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:55,the value of plot_cost is         : 11.912909233893801 

 At row:77, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:77, column:56,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:56,the value of plot_cost is         : 11.793550054652297 

 At row:77, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:77, column:57,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:57,the value of plot_cost is         : 11.674998935813308 

 At row:77, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:77, column:58,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:58,the value of plot_cost is         : 11.557255877376832 

 At row:77, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:77, column:59,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:59,the value of plot_cost is         : 11.44032087934287 

 At row:77, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:77, column:60,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:60,the value of plot_cost is         : 11.324193941711423 

 At row:77, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:77, column:61,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:61,the value of plot_cost is         : 11.208875064482498 

 At row:77, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:77, column:62,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:62,the value of plot_cost is         : 11.094364247656081 

 At row:77, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:77, column:63,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:63,the value of plot_cost is         : 10.980661491232182 

 At row:77, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:77, column:64,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:64,the value of plot_cost is         : 10.867766795210798 

 At row:77, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:77, column:65,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:65,the value of plot_cost is         : 10.755680159591925 

 At row:77, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:77, column:66,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:66,the value of plot_cost is         : 10.644401584375572 

 At row:77, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:77, column:67,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:67,the value of plot_cost is         : 10.533931069561733 

 At row:77, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:77, column:68,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:68,the value of plot_cost is         : 10.42426861515041 

 At row:77, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:77, column:69,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:69,the value of plot_cost is         : 10.3154142211416 

 At row:77, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:77, column:70,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:70,the value of plot_cost is         : 10.207367887535304 

 At row:77, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:77, column:71,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:71,the value of plot_cost is         : 10.100129614331527 

 At row:77, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:77, column:72,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:72,the value of plot_cost is         : 9.993699401530263 

 At row:77, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:77, column:73,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:73,the value of plot_cost is         : 9.888077249131513 

 At row:77, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:77, column:74,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:74,the value of plot_cost is         : 9.78326315713528 

 At row:77, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:77, column:75,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:75,the value of plot_cost is         : 9.67925712554156 

 At row:77, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:77, column:76,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:76,the value of plot_cost is         : 9.576059154350355 

 At row:77, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:77, column:77,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:77,the value of plot_cost is         : 9.473669243561668 

 At row:77, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:77, column:78,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:78,the value of plot_cost is         : 9.372087393175494 

 At row:77, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:77, column:79,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:79,the value of plot_cost is         : 9.271313603191837 

 At row:77, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:77, column:80,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:80,the value of plot_cost is         : 9.17134787361069 

 At row:77, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:77, column:81,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:81,the value of plot_cost is         : 9.072190204432065 

 At row:77, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:77, column:82,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:82,the value of plot_cost is         : 8.973840595655952 

 At row:77, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:77, column:83,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:83,the value of plot_cost is         : 8.876299047282354 

 At row:77, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:77, column:84,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:84,the value of plot_cost is         : 8.779565559311271 

 At row:77, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:77, column:85,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:85,the value of plot_cost is         : 8.6836401317427 

 At row:77, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:77, column:86,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:86,the value of plot_cost is         : 8.58852276457665 

 At row:77, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:77, column:87,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:87,the value of plot_cost is         : 8.494213457813112 

 At row:77, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:77, column:88,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:88,the value of plot_cost is         : 8.400712211452088 

 At row:77, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:77, column:89,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:89,the value of plot_cost is         : 8.308019025493584 

 At row:77, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:77, column:90,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:90,the value of plot_cost is         : 8.216133899937589 

 At row:77, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:77, column:91,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:91,the value of plot_cost is         : 8.125056834784113 

 At row:77, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:77, column:92,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:92,the value of plot_cost is         : 8.034787830033151 

 At row:77, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:77, column:93,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:93,the value of plot_cost is         : 7.945326885684703 

 At row:77, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:77, column:94,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:94,the value of plot_cost is         : 7.856674001738772 

 At row:77, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:77, column:95,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:95,the value of plot_cost is         : 7.768829178195354 

 At row:77, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:77, column:96,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:96,the value of plot_cost is         : 7.681792415054453 

 At row:77, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:77, column:97,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:97,the value of plot_cost is         : 7.595563712316066 

 At row:77, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:77, column:98,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:98,the value of plot_cost is         : 7.510143069980193 

 At row:77, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:77, column:99,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:99,the value of plot_cost is         : 7.425530488046837 

 At row:77, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:77, column:100,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:100,the value of plot_cost is         : 7.3417259665159955 

 At row:77, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:77, column:101,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:101,the value of plot_cost is         : 7.258729505387668 

 At row:77, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:77, column:102,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:102,the value of plot_cost is         : 7.176541104661859 

 At row:77, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:77, column:103,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:103,the value of plot_cost is         : 7.09516076433856 

 At row:77, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:77, column:104,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:104,the value of plot_cost is         : 7.0145884844177795 

 At row:77, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:77, column:105,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:105,the value of plot_cost is         : 6.934824264899513 

 At row:77, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:77, column:106,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:106,the value of plot_cost is         : 6.855868105783763 

 At row:77, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:77, column:107,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:107,the value of plot_cost is         : 6.777720007070529 

 At row:77, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:77, column:108,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:108,the value of plot_cost is         : 6.7003799687598065 

 At row:77, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:77, column:109,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:109,the value of plot_cost is         : 6.623847990851599 

 At row:77, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:77, column:110,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:110,the value of plot_cost is         : 6.5481240733459085 

 At row:77, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:77, column:111,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:111,the value of plot_cost is         : 6.4732082162427345 

 At row:77, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:77, column:112,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:112,the value of plot_cost is         : 6.3991004195420755 

 At row:77, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:77, column:113,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:113,the value of plot_cost is         : 6.325800683243928 

 At row:77, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:77, column:114,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:114,the value of plot_cost is         : 6.253309007348296 

 At row:77, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:77, column:115,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:115,the value of plot_cost is         : 6.181625391855182 

 At row:77, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:77, column:116,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:116,the value of plot_cost is         : 6.110749836764583 

 At row:77, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:77, column:117,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:117,the value of plot_cost is         : 6.040682342076498 

 At row:77, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:77, column:118,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:118,the value of plot_cost is         : 5.971422907790927 

 At row:77, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:77, column:119,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:119,the value of plot_cost is         : 5.902971533907871 

 At row:77, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:77, column:120,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:120,the value of plot_cost is         : 5.835328220427332 

 At row:77, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:77, column:121,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:121,the value of plot_cost is         : 5.7684929673493075 

 At row:77, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:77, column:122,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:122,the value of plot_cost is         : 5.702465774673799 

 At row:77, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:77, column:123,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:123,the value of plot_cost is         : 5.637246642400805 

 At row:77, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:77, column:124,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:124,the value of plot_cost is         : 5.572835570530323 

 At row:77, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:77, column:125,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:125,the value of plot_cost is         : 5.509232559062359 

 At row:77, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:77, column:126,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:126,the value of plot_cost is         : 5.44643760799691 

 At row:77, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:77, column:127,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:127,the value of plot_cost is         : 5.384450717333978 

 At row:77, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:77, column:128,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:128,the value of plot_cost is         : 5.323271887073557 

 At row:77, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:77, column:129,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:129,the value of plot_cost is         : 5.262901117215652 

 At row:77, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:77, column:130,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:130,the value of plot_cost is         : 5.203338407760264 

 At row:77, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:77, column:131,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:131,the value of plot_cost is         : 5.144583758707391 

 At row:77, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:77, column:132,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:132,the value of plot_cost is         : 5.086637170057033 

 At row:77, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:77, column:133,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:133,the value of plot_cost is         : 5.029498641809187 

 At row:77, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:77, column:134,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:134,the value of plot_cost is         : 4.973168173963858 

 At row:77, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:77, column:135,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:135,the value of plot_cost is         : 4.917645766521045 

 At row:77, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:77, column:136,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:136,the value of plot_cost is         : 4.8629314194807485 

 At row:77, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:77, column:137,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:137,the value of plot_cost is         : 4.809025132842965 

 At row:77, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:77, column:138,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:138,the value of plot_cost is         : 4.755926906607697 

 At row:77, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:77, column:139,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:139,the value of plot_cost is         : 4.703636740774941 

 At row:77, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:77, column:140,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:140,the value of plot_cost is         : 4.652154635344704 

 At row:77, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:77, column:141,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:141,the value of plot_cost is         : 4.601480590316983 

 At row:77, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:77, column:142,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:142,the value of plot_cost is         : 4.551614605691776 

 At row:77, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:77, column:143,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:143,the value of plot_cost is         : 4.502556681469081 

 At row:77, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:77, column:144,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:144,the value of plot_cost is         : 4.454306817648902 

 At row:77, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:77, column:145,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:145,the value of plot_cost is         : 4.406865014231241 

 At row:77, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:77, column:146,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:146,the value of plot_cost is         : 4.360231271216095 

 At row:77, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:77, column:147,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:147,the value of plot_cost is         : 4.314405588603463 

 At row:77, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:77, column:148,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:148,the value of plot_cost is         : 4.269387966393344 

 At row:77, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:77, column:149,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:149,the value of plot_cost is         : 4.225178404585741 

 At row:77, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:77, column:150,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:150,the value of plot_cost is         : 4.181776903180654 

 At row:77, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:77, column:151,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:151,the value of plot_cost is         : 4.1391834621780825 

 At row:77, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:77, column:152,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:152,the value of plot_cost is         : 4.097398081578027 

 At row:77, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:77, column:153,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:153,the value of plot_cost is         : 4.056420761380483 

 At row:77, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:77, column:154,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:154,the value of plot_cost is         : 4.016251501585455 

 At row:77, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:77, column:155,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:155,the value of plot_cost is         : 3.9768903021929445 

 At row:77, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:77, column:156,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:156,the value of plot_cost is         : 3.938337163202949 

 At row:77, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:77, column:157,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:157,the value of plot_cost is         : 3.900592084615468 

 At row:77, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:77, column:158,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:158,the value of plot_cost is         : 3.8636550664305003 

 At row:77, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:77, column:159,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:159,the value of plot_cost is         : 3.827526108648048 

 At row:77, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:77, column:160,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:160,the value of plot_cost is         : 3.792205211268113 

 At row:77, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:77, column:161,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:161,the value of plot_cost is         : 3.7576923742906922 

 At row:77, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:77, column:162,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:162,the value of plot_cost is         : 3.7239875977157872 

 At row:77, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:77, column:163,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:163,the value of plot_cost is         : 3.6910908815433947 

 At row:77, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:77, column:164,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:164,the value of plot_cost is         : 3.6590022257735173 

 At row:77, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:77, column:165,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:165,the value of plot_cost is         : 3.6277216304061577 

 At row:77, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:77, column:166,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:166,the value of plot_cost is         : 3.5972490954413123 

 At row:77, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:77, column:167,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:167,the value of plot_cost is         : 3.5675846208789825 

 At row:77, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:77, column:168,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:168,the value of plot_cost is         : 3.538728206719166 

 At row:77, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:77, column:169,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:169,the value of plot_cost is         : 3.5106798529618644 

 At row:77, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:77, column:170,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:170,the value of plot_cost is         : 3.4834395596070795 

 At row:77, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:77, column:171,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:171,the value of plot_cost is         : 3.45700732665481 

 At row:77, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:77, column:172,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:172,the value of plot_cost is         : 3.431383154105056 

 At row:77, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:77, column:173,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:173,the value of plot_cost is         : 3.4065670419578145 

 At row:77, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:77, column:174,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:174,the value of plot_cost is         : 3.3825589902130884 

 At row:77, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:77, column:175,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:175,the value of plot_cost is         : 3.359358998870879 

 At row:77, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:77, column:176,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:176,the value of plot_cost is         : 3.3369670679311847 

 At row:77, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:77, column:177,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:177,the value of plot_cost is         : 3.3153831973940058 

 At row:77, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:77, column:178,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:178,the value of plot_cost is         : 3.29460738725934 

 At row:77, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:77, column:179,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:179,the value of plot_cost is         : 3.274639637527189 

 At row:77, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:77, column:180,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:180,the value of plot_cost is         : 3.2554799481975554 

 At row:77, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:77, column:181,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:181,the value of plot_cost is         : 3.237128319270437 

 At row:77, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:77, column:182,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:182,the value of plot_cost is         : 3.219584750745833 

 At row:77, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:77, column:183,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:183,the value of plot_cost is         : 3.202849242623743 

 At row:77, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:77, column:184,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:184,the value of plot_cost is         : 3.1869217949041673 

 At row:77, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:77, column:185,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:185,the value of plot_cost is         : 3.1718024075871094 

 At row:77, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:77, column:186,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:186,the value of plot_cost is         : 3.157491080672566 

 At row:77, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:77, column:187,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:187,the value of plot_cost is         : 3.1439878141605373 

 At row:77, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:77, column:188,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:188,the value of plot_cost is         : 3.131292608051023 

 At row:77, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:77, column:189,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:189,the value of plot_cost is         : 3.1194054623440235 

 At row:77, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:77, column:190,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:190,the value of plot_cost is         : 3.10832637703954 

 At row:77, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:77, column:191,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:191,the value of plot_cost is         : 3.0980553521375724 

 At row:77, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:77, column:192,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:192,the value of plot_cost is         : 3.088592387638119 

 At row:77, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:77, column:193,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:193,the value of plot_cost is         : 3.0799374835411806 

 At row:77, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:77, column:194,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:194,the value of plot_cost is         : 3.0720906398467553 

 At row:77, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:77, column:195,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:195,the value of plot_cost is         : 3.065051856554848 

 At row:77, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:77, column:196,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:196,the value of plot_cost is         : 3.058821133665456 

 At row:77, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:77, column:197,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:197,the value of plot_cost is         : 3.053398471178577 

 At row:77, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:77, column:198,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:198,the value of plot_cost is         : 3.0487838690942146 

 At row:77, column:199,the value of plot_t0 is           : 3.0
 At row:77, column:199,the value of plot_t1 is           : 0.5477386934673367
 At row:77, column:199,the value of plot_cost is         : 3.044977327412366 

 At row:78, column:0,the value of plot_t0 is           : -1.0
 At row:78, column:0,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:0,the value of plot_cost is         : 19.0596736373901 

 At row:78, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:78, column:1,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:1,the value of plot_cost is         : 18.898549279058603 

 At row:78, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:78, column:2,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:2,the value of plot_cost is         : 18.73823298112962 

 At row:78, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:78, column:3,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:3,the value of plot_cost is         : 18.57872474360315 

 At row:78, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:78, column:4,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:4,the value of plot_cost is         : 18.420024566479196 

 At row:78, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:78, column:5,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:5,the value of plot_cost is         : 18.262132449757754 

 At row:78, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:78, column:6,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:6,the value of plot_cost is         : 18.10504839343883 

 At row:78, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:78, column:7,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:7,the value of plot_cost is         : 17.948772397522426 

 At row:78, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:78, column:8,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:8,the value of plot_cost is         : 17.793304462008525 

 At row:78, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:78, column:9,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:9,the value of plot_cost is         : 17.63864458689715 

 At row:78, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:78, column:10,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:10,the value of plot_cost is         : 17.484792772188285 

 At row:78, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:78, column:11,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:11,the value of plot_cost is         : 17.331749017881936 

 At row:78, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:78, column:12,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:12,the value of plot_cost is         : 17.179513323978103 

 At row:78, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:78, column:13,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:13,the value of plot_cost is         : 17.028085690476786 

 At row:78, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:78, column:14,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:14,the value of plot_cost is         : 16.87746611737798 

 At row:78, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:78, column:15,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:15,the value of plot_cost is         : 16.727654604681693 

 At row:78, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:78, column:16,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:16,the value of plot_cost is         : 16.57865115238792 

 At row:78, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:78, column:17,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:17,the value of plot_cost is         : 16.430455760496667 

 At row:78, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:78, column:18,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:18,the value of plot_cost is         : 16.28306842900792 

 At row:78, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:78, column:19,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:19,the value of plot_cost is         : 16.13648915792169 

 At row:78, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:78, column:20,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:20,the value of plot_cost is         : 15.990717947237977 

 At row:78, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:78, column:21,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:21,the value of plot_cost is         : 15.84575479695678 

 At row:78, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:78, column:22,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:22,the value of plot_cost is         : 15.701599707078097 

 At row:78, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:78, column:23,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:23,the value of plot_cost is         : 15.558252677601931 

 At row:78, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:78, column:24,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:24,the value of plot_cost is         : 15.41571370852828 

 At row:78, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:78, column:25,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:25,the value of plot_cost is         : 15.273982799857139 

 At row:78, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:78, column:26,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:26,the value of plot_cost is         : 15.133059951588518 

 At row:78, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:78, column:27,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:27,the value of plot_cost is         : 14.992945163722412 

 At row:78, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:78, column:28,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:28,the value of plot_cost is         : 14.85363843625882 

 At row:78, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:78, column:29,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:29,the value of plot_cost is         : 14.715139769197744 

 At row:78, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:78, column:30,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:30,the value of plot_cost is         : 14.577449162539176 

 At row:78, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:78, column:31,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:31,the value of plot_cost is         : 14.440566616283132 

 At row:78, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:78, column:32,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:32,the value of plot_cost is         : 14.304492130429603 

 At row:78, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:78, column:33,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:33,the value of plot_cost is         : 14.169225704978583 

 At row:78, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:78, column:34,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:34,the value of plot_cost is         : 14.034767339930085 

 At row:78, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:78, column:35,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:35,the value of plot_cost is         : 13.901117035284097 

 At row:78, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:78, column:36,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:36,the value of plot_cost is         : 13.768274791040625 

 At row:78, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:78, column:37,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:37,the value of plot_cost is         : 13.63624060719967 

 At row:78, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:78, column:38,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:38,the value of plot_cost is         : 13.505014483761224 

 At row:78, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:78, column:39,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:39,the value of plot_cost is         : 13.3745964207253 

 At row:78, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:78, column:40,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:40,the value of plot_cost is         : 13.244986418091889 

 At row:78, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:78, column:41,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:41,the value of plot_cost is         : 13.116184475860994 

 At row:78, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:78, column:42,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:42,the value of plot_cost is         : 12.988190594032611 

 At row:78, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:78, column:43,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:43,the value of plot_cost is         : 12.861004772606748 

 At row:78, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:78, column:44,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:44,the value of plot_cost is         : 12.734627011583395 

 At row:78, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:78, column:45,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:45,the value of plot_cost is         : 12.609057310962562 

 At row:78, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:78, column:46,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:46,the value of plot_cost is         : 12.48429567074424 

 At row:78, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:78, column:47,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:47,the value of plot_cost is         : 12.360342090928436 

 At row:78, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:78, column:48,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:48,the value of plot_cost is         : 12.237196571515145 

 At row:78, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:78, column:49,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:49,the value of plot_cost is         : 12.114859112504368 

 At row:78, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:78, column:50,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:50,the value of plot_cost is         : 11.993329713896108 

 At row:78, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:78, column:51,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:51,the value of plot_cost is         : 11.872608375690364 

 At row:78, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:78, column:52,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:52,the value of plot_cost is         : 11.752695097887132 

 At row:78, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:78, column:53,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:53,the value of plot_cost is         : 11.633589880486419 

 At row:78, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:78, column:54,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:54,the value of plot_cost is         : 11.51529272348822 

 At row:78, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:78, column:55,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:55,the value of plot_cost is         : 11.397803626892532 

 At row:78, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:78, column:56,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:56,the value of plot_cost is         : 11.281122590699363 

 At row:78, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:78, column:57,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:57,the value of plot_cost is         : 11.16524961490871 

 At row:78, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:78, column:58,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:58,the value of plot_cost is         : 11.050184699520571 

 At row:78, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:78, column:59,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:59,the value of plot_cost is         : 10.935927844534946 

 At row:78, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:78, column:60,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:60,the value of plot_cost is         : 10.822479049951836 

 At row:78, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:78, column:61,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:61,the value of plot_cost is         : 10.709838315771242 

 At row:78, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:78, column:62,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:62,the value of plot_cost is         : 10.598005641993161 

 At row:78, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:78, column:63,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:63,the value of plot_cost is         : 10.486981028617597 

 At row:78, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:78, column:64,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:64,the value of plot_cost is         : 10.376764475644551 

 At row:78, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:78, column:65,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:65,the value of plot_cost is         : 10.267355983074015 

 At row:78, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:78, column:66,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:66,the value of plot_cost is         : 10.158755550905997 

 At row:78, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:78, column:67,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:67,the value of plot_cost is         : 10.050963179140496 

 At row:78, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:78, column:68,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:68,the value of plot_cost is         : 9.943978867777505 

 At row:78, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:78, column:69,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:69,the value of plot_cost is         : 9.837802616817031 

 At row:78, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:78, column:70,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:70,the value of plot_cost is         : 9.73243442625907 

 At row:78, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:78, column:71,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:71,the value of plot_cost is         : 9.627874296103629 

 At row:78, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:78, column:72,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:72,the value of plot_cost is         : 9.524122226350702 

 At row:78, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:78, column:73,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:73,the value of plot_cost is         : 9.42117821700029 

 At row:78, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:78, column:74,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:74,the value of plot_cost is         : 9.31904226805239 

 At row:78, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:78, column:75,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:75,the value of plot_cost is         : 9.217714379507006 

 At row:78, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:78, column:76,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:76,the value of plot_cost is         : 9.117194551364138 

 At row:78, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:78, column:77,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:77,the value of plot_cost is         : 9.017482783623786 

 At row:78, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:78, column:78,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:78,the value of plot_cost is         : 8.91857907628595 

 At row:78, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:78, column:79,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:79,the value of plot_cost is         : 8.820483429350626 

 At row:78, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:78, column:80,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:80,the value of plot_cost is         : 8.723195842817818 

 At row:78, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:78, column:81,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:81,the value of plot_cost is         : 8.626716316687524 

 At row:78, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:78, column:82,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:82,the value of plot_cost is         : 8.531044850959749 

 At row:78, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:78, column:83,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:83,the value of plot_cost is         : 8.436181445634485 

 At row:78, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:78, column:84,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:84,the value of plot_cost is         : 8.342126100711738 

 At row:78, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:78, column:85,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:85,the value of plot_cost is         : 8.248878816191507 

 At row:78, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:78, column:86,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:86,the value of plot_cost is         : 8.156439592073788 

 At row:78, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:78, column:87,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:87,the value of plot_cost is         : 8.064808428358587 

 At row:78, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:78, column:88,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:88,the value of plot_cost is         : 7.9739853250459 

 At row:78, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:78, column:89,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:89,the value of plot_cost is         : 7.883970282135729 

 At row:78, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:78, column:90,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:90,the value of plot_cost is         : 7.794763299628071 

 At row:78, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:78, column:91,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:91,the value of plot_cost is         : 7.706364377522929 

 At row:78, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:78, column:92,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:92,the value of plot_cost is         : 7.618773515820304 

 At row:78, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:78, column:93,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:93,the value of plot_cost is         : 7.531990714520192 

 At row:78, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:78, column:94,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:94,the value of plot_cost is         : 7.446015973622597 

 At row:78, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:78, column:95,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:95,the value of plot_cost is         : 7.360849293127515 

 At row:78, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:78, column:96,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:96,the value of plot_cost is         : 7.276490673034948 

 At row:78, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:78, column:97,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:97,the value of plot_cost is         : 7.192940113344898 

 At row:78, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:78, column:98,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:98,the value of plot_cost is         : 7.110197614057361 

 At row:78, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:78, column:99,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:99,the value of plot_cost is         : 7.0282631751723414 

 At row:78, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:78, column:100,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:100,the value of plot_cost is         : 6.9471367966898345 

 At row:78, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:78, column:101,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:101,the value of plot_cost is         : 6.8668184786098445 

 At row:78, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:78, column:102,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:102,the value of plot_cost is         : 6.787308220932369 

 At row:78, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:78, column:103,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:103,the value of plot_cost is         : 6.708606023657407 

 At row:78, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:78, column:104,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:104,the value of plot_cost is         : 6.630711886784961 

 At row:78, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:78, column:105,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:105,the value of plot_cost is         : 6.55362581031503 

 At row:78, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:78, column:106,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:106,the value of plot_cost is         : 6.477347794247616 

 At row:78, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:78, column:107,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:107,the value of plot_cost is         : 6.401877838582717 

 At row:78, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:78, column:108,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:108,the value of plot_cost is         : 6.327215943320331 

 At row:78, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:78, column:109,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:109,the value of plot_cost is         : 6.25336210846046 

 At row:78, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:78, column:110,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:110,the value of plot_cost is         : 6.180316334003105 

 At row:78, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:78, column:111,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:111,the value of plot_cost is         : 6.108078619948267 

 At row:78, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:78, column:112,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:112,the value of plot_cost is         : 6.036648966295942 

 At row:78, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:78, column:113,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:113,the value of plot_cost is         : 5.966027373046132 

 At row:78, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:78, column:114,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:114,the value of plot_cost is         : 5.896213840198836 

 At row:78, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:78, column:115,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:115,the value of plot_cost is         : 5.827208367754057 

 At row:78, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:78, column:116,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:116,the value of plot_cost is         : 5.759010955711792 

 At row:78, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:78, column:117,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:117,the value of plot_cost is         : 5.691621604072044 

 At row:78, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:78, column:118,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:118,the value of plot_cost is         : 5.62504031283481 

 At row:78, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:78, column:119,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:119,the value of plot_cost is         : 5.55926708200009 

 At row:78, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:78, column:120,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:120,the value of plot_cost is         : 5.494301911567885 

 At row:78, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:78, column:121,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:121,the value of plot_cost is         : 5.430144801538198 

 At row:78, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:78, column:122,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:122,the value of plot_cost is         : 5.366795751911025 

 At row:78, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:78, column:123,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:123,the value of plot_cost is         : 5.304254762686365 

 At row:78, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:78, column:124,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:124,the value of plot_cost is         : 5.24252183386422 

 At row:78, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:78, column:125,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:125,the value of plot_cost is         : 5.181596965444592 

 At row:78, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:78, column:126,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:126,the value of plot_cost is         : 5.121480157427479 

 At row:78, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:78, column:127,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:127,the value of plot_cost is         : 5.062171409812881 

 At row:78, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:78, column:128,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:128,the value of plot_cost is         : 5.0036707226007975 

 At row:78, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:78, column:129,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:129,the value of plot_cost is         : 4.9459780957912285 

 At row:78, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:78, column:130,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:130,the value of plot_cost is         : 4.8890935293841755 

 At row:78, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:78, column:131,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:131,the value of plot_cost is         : 4.833017023379639 

 At row:78, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:78, column:132,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:132,the value of plot_cost is         : 4.777748577777615 

 At row:78, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:78, column:133,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:133,the value of plot_cost is         : 4.7232881925781065 

 At row:78, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:78, column:134,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:134,the value of plot_cost is         : 4.669635867781113 

 At row:78, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:78, column:135,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:135,the value of plot_cost is         : 4.616791603386635 

 At row:78, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:78, column:136,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:136,the value of plot_cost is         : 4.564755399394674 

 At row:78, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:78, column:137,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:137,the value of plot_cost is         : 4.513527255805227 

 At row:78, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:78, column:138,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:138,the value of plot_cost is         : 4.463107172618294 

 At row:78, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:78, column:139,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:139,the value of plot_cost is         : 4.413495149833874 

 At row:78, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:78, column:140,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:140,the value of plot_cost is         : 4.364691187451973 

 At row:78, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:78, column:141,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:141,the value of plot_cost is         : 4.316695285472587 

 At row:78, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:78, column:142,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:142,the value of plot_cost is         : 4.269507443895716 

 At row:78, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:78, column:143,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:143,the value of plot_cost is         : 4.223127662721358 

 At row:78, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:78, column:144,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:144,the value of plot_cost is         : 4.177555941949515 

 At row:78, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:78, column:145,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:145,the value of plot_cost is         : 4.132792281580188 

 At row:78, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:78, column:146,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:146,the value of plot_cost is         : 4.088836681613376 

 At row:78, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:78, column:147,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:147,the value of plot_cost is         : 4.04568914204908 

 At row:78, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:78, column:148,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:148,the value of plot_cost is         : 4.003349662887299 

 At row:78, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:78, column:149,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:149,the value of plot_cost is         : 3.961818244128031 

 At row:78, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:78, column:150,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:150,the value of plot_cost is         : 3.92109488577128 

 At row:78, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:78, column:151,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:151,the value of plot_cost is         : 3.8811795878170443 

 At row:78, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:78, column:152,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:152,the value of plot_cost is         : 3.842072350265324 

 At row:78, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:78, column:153,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:153,the value of plot_cost is         : 3.803773173116117 

 At row:78, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:78, column:154,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:154,the value of plot_cost is         : 3.766282056369425 

 At row:78, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:78, column:155,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:155,the value of plot_cost is         : 3.7295990000252486 

 At row:78, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:78, column:156,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:156,the value of plot_cost is         : 3.693724004083589 

 At row:78, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:78, column:157,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:157,the value of plot_cost is         : 3.6586570685444437 

 At row:78, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:78, column:158,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:158,the value of plot_cost is         : 3.6243981934078127 

 At row:78, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:78, column:159,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:159,the value of plot_cost is         : 3.5909473786736954 

 At row:78, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:78, column:160,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:160,the value of plot_cost is         : 3.558304624342096 

 At row:78, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:78, column:161,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:161,the value of plot_cost is         : 3.526469930413011 

 At row:78, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:78, column:162,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:162,the value of plot_cost is         : 3.495443296886441 

 At row:78, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:78, column:163,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:163,the value of plot_cost is         : 3.465224723762385 

 At row:78, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:78, column:164,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:164,the value of plot_cost is         : 3.435814211040844 

 At row:78, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:78, column:165,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:165,the value of plot_cost is         : 3.4072117587218194 

 At row:78, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:78, column:166,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:166,the value of plot_cost is         : 3.3794173668053102 

 At row:78, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:78, column:167,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:167,the value of plot_cost is         : 3.3524310352913154 

 At row:78, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:78, column:168,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:168,the value of plot_cost is         : 3.326252764179835 

 At row:78, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:78, column:169,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:169,the value of plot_cost is         : 3.300882553470869 

 At row:78, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:78, column:170,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:170,the value of plot_cost is         : 3.27632040316442 

 At row:78, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:78, column:171,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:171,the value of plot_cost is         : 3.2525663132604863 

 At row:78, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:78, column:172,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:172,the value of plot_cost is         : 3.229620283759067 

 At row:78, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:78, column:173,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:173,the value of plot_cost is         : 3.207482314660162 

 At row:78, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:78, column:174,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:174,the value of plot_cost is         : 3.186152405963772 

 At row:78, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:78, column:175,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:175,the value of plot_cost is         : 3.165630557669898 

 At row:78, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:78, column:176,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:176,the value of plot_cost is         : 3.1459167697785397 

 At row:78, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:78, column:177,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:177,the value of plot_cost is         : 3.1270110422896957 

 At row:78, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:78, column:178,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:178,the value of plot_cost is         : 3.1089133752033664 

 At row:78, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:78, column:179,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:179,the value of plot_cost is         : 3.091623768519552 

 At row:78, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:78, column:180,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:180,the value of plot_cost is         : 3.075142222238253 

 At row:78, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:78, column:181,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:181,the value of plot_cost is         : 3.0594687363594706 

 At row:78, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:78, column:182,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:182,the value of plot_cost is         : 3.0446033108832022 

 At row:78, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:78, column:183,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:183,the value of plot_cost is         : 3.030545945809448 

 At row:78, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:78, column:184,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:184,the value of plot_cost is         : 3.017296641138208 

 At row:78, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:78, column:185,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:185,the value of plot_cost is         : 3.0048553968694853 

 At row:78, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:78, column:186,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:186,the value of plot_cost is         : 2.9932222130032784 

 At row:78, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:78, column:187,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:187,the value of plot_cost is         : 2.9823970895395857 

 At row:78, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:78, column:188,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:188,the value of plot_cost is         : 2.9723800264784064 

 At row:78, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:78, column:189,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:189,the value of plot_cost is         : 2.9631710238197426 

 At row:78, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:78, column:190,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:190,the value of plot_cost is         : 2.9547700815635953 

 At row:78, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:78, column:191,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:191,the value of plot_cost is         : 2.9471771997099636 

 At row:78, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:78, column:192,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:192,the value of plot_cost is         : 2.9403923782588457 

 At row:78, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:78, column:193,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:193,the value of plot_cost is         : 2.9344156172102425 

 At row:78, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:78, column:194,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:194,the value of plot_cost is         : 2.9292469165641544 

 At row:78, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:78, column:195,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:195,the value of plot_cost is         : 2.924886276320582 

 At row:78, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:78, column:196,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:196,the value of plot_cost is         : 2.921333696479526 

 At row:78, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:78, column:197,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:197,the value of plot_cost is         : 2.9185891770409826 

 At row:78, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:78, column:198,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:198,the value of plot_cost is         : 2.9166527180049555 

 At row:78, column:199,the value of plot_t0 is           : 3.0
 At row:78, column:199,the value of plot_t1 is           : 0.5678391959798996
 At row:78, column:199,the value of plot_cost is         : 2.915524319371443 

 At row:79, column:0,the value of plot_t0 is           : -1.0
 At row:79, column:0,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:0,the value of plot_cost is         : 18.409852817569544 

 At row:79, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:79, column:1,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:1,the value of plot_cost is         : 18.251406602286377 

 At row:79, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:79, column:2,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:2,the value of plot_cost is         : 18.09376844740573 

 At row:79, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:79, column:3,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:3,the value of plot_cost is         : 17.936938352927594 

 At row:79, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:79, column:4,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:4,the value of plot_cost is         : 17.78091631885198 

 At row:79, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:79, column:5,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:5,the value of plot_cost is         : 17.625702345178873 

 At row:79, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:79, column:6,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:6,the value of plot_cost is         : 17.471296431908282 

 At row:79, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:79, column:7,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:7,the value of plot_cost is         : 17.31769857904021 

 At row:79, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:79, column:8,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:8,the value of plot_cost is         : 17.16490878657465 

 At row:79, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:79, column:9,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:9,the value of plot_cost is         : 17.01292705451161 

 At row:79, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:79, column:10,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:10,the value of plot_cost is         : 16.86175338285108 

 At row:79, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:79, column:11,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:11,the value of plot_cost is         : 16.711387771593067 

 At row:79, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:79, column:12,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:12,the value of plot_cost is         : 16.56183022073757 

 At row:79, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:79, column:13,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:13,the value of plot_cost is         : 16.413080730284587 

 At row:79, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:79, column:14,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:14,the value of plot_cost is         : 16.26513930023412 

 At row:79, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:79, column:15,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:15,the value of plot_cost is         : 16.118005930586165 

 At row:79, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:79, column:16,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:16,the value of plot_cost is         : 15.97168062134073 

 At row:79, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:79, column:17,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:17,the value of plot_cost is         : 15.826163372497806 

 At row:79, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:79, column:18,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:18,the value of plot_cost is         : 15.681454184057397 

 At row:79, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:79, column:19,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:19,the value of plot_cost is         : 15.53755305601951 

 At row:79, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:79, column:20,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:20,the value of plot_cost is         : 15.394459988384131 

 At row:79, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:79, column:21,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:21,the value of plot_cost is         : 15.252174981151267 

 At row:79, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:79, column:22,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:22,the value of plot_cost is         : 15.110698034320922 

 At row:79, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:79, column:23,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:23,the value of plot_cost is         : 14.97002914789309 

 At row:79, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:79, column:24,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:24,the value of plot_cost is         : 14.830168321867776 

 At row:79, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:79, column:25,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:25,the value of plot_cost is         : 14.69111555624497 

 At row:79, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:79, column:26,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:26,the value of plot_cost is         : 14.552870851024682 

 At row:79, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:79, column:27,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:27,the value of plot_cost is         : 14.415434206206914 

 At row:79, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:79, column:28,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:28,the value of plot_cost is         : 14.278805621791657 

 At row:79, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:79, column:29,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:29,the value of plot_cost is         : 14.142985097778915 

 At row:79, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:79, column:30,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:30,the value of plot_cost is         : 14.007972634168688 

 At row:79, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:79, column:31,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:31,the value of plot_cost is         : 13.873768230960977 

 At row:79, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:79, column:32,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:32,the value of plot_cost is         : 13.740371888155781 

 At row:79, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:79, column:33,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:33,the value of plot_cost is         : 13.6077836057531 

 At row:79, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:79, column:34,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:34,the value of plot_cost is         : 13.476003383752934 

 At row:79, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:79, column:35,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:35,the value of plot_cost is         : 13.345031222155285 

 At row:79, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:79, column:36,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:36,the value of plot_cost is         : 13.214867120960147 

 At row:79, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:79, column:37,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:37,the value of plot_cost is         : 13.085511080167526 

 At row:79, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:79, column:38,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:38,the value of plot_cost is         : 12.956963099777422 

 At row:79, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:79, column:39,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:39,the value of plot_cost is         : 12.82922317978983 

 At row:79, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:79, column:40,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:40,the value of plot_cost is         : 12.702291320204756 

 At row:79, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:79, column:41,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:41,the value of plot_cost is         : 12.576167521022194 

 At row:79, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:79, column:42,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:42,the value of plot_cost is         : 12.450851782242149 

 At row:79, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:79, column:43,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:43,the value of plot_cost is         : 12.32634410386462 

 At row:79, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:79, column:44,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:44,the value of plot_cost is         : 12.202644485889603 

 At row:79, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:79, column:45,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:45,the value of plot_cost is         : 12.079752928317106 

 At row:79, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:79, column:46,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:46,the value of plot_cost is         : 11.95766943114712 

 At row:79, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:79, column:47,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:47,the value of plot_cost is         : 11.836393994379652 

 At row:79, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:79, column:48,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:48,the value of plot_cost is         : 11.715926618014695 

 At row:79, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:79, column:49,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:49,the value of plot_cost is         : 11.596267302052256 

 At row:79, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:79, column:50,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:50,the value of plot_cost is         : 11.477416046492332 

 At row:79, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:79, column:51,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:51,the value of plot_cost is         : 11.359372851334923 

 At row:79, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:79, column:52,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:52,the value of plot_cost is         : 11.242137716580027 

 At row:79, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:79, column:53,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:53,the value of plot_cost is         : 11.125710642227649 

 At row:79, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:79, column:54,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:54,the value of plot_cost is         : 11.010091628277785 

 At row:79, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:79, column:55,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:55,the value of plot_cost is         : 10.895280674730433 

 At row:79, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:79, column:56,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:56,the value of plot_cost is         : 10.781277781585601 

 At row:79, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:79, column:57,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:57,the value of plot_cost is         : 10.668082948843281 

 At row:79, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:79, column:58,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:58,the value of plot_cost is         : 10.555696176503478 

 At row:79, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:79, column:59,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:59,the value of plot_cost is         : 10.44411746456619 

 At row:79, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:79, column:60,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:60,the value of plot_cost is         : 10.333346813031415 

 At row:79, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:79, column:61,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:61,the value of plot_cost is         : 10.223384221899158 

 At row:79, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:79, column:62,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:62,the value of plot_cost is         : 10.114229691169413 

 At row:79, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:79, column:63,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:63,the value of plot_cost is         : 10.005883220842186 

 At row:79, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:79, column:64,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:64,the value of plot_cost is         : 9.898344810917472 

 At row:79, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:79, column:65,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:65,the value of plot_cost is         : 9.791614461395273 

 At row:79, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:79, column:66,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:66,the value of plot_cost is         : 9.685692172275592 

 At row:79, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:79, column:67,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:67,the value of plot_cost is         : 9.580577943558422 

 At row:79, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:79, column:68,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:68,the value of plot_cost is         : 9.476271775243768 

 At row:79, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:79, column:69,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:69,the value of plot_cost is         : 9.372773667331632 

 At row:79, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:79, column:70,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:70,the value of plot_cost is         : 9.270083619822008 

 At row:79, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:79, column:71,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:71,the value of plot_cost is         : 9.1682016327149 

 At row:79, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:79, column:72,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:72,the value of plot_cost is         : 9.067127706010309 

 At row:79, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:79, column:73,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:73,the value of plot_cost is         : 8.966861839708232 

 At row:79, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:79, column:74,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:74,the value of plot_cost is         : 8.86740403380867 

 At row:79, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:79, column:75,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:75,the value of plot_cost is         : 8.768754288311621 

 At row:79, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:79, column:76,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:76,the value of plot_cost is         : 8.67091260321709 

 At row:79, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:79, column:77,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:77,the value of plot_cost is         : 8.573878978525073 

 At row:79, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:79, column:78,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:78,the value of plot_cost is         : 8.47765341423557 

 At row:79, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:79, column:79,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:79,the value of plot_cost is         : 8.382235910348584 

 At row:79, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:79, column:80,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:80,the value of plot_cost is         : 8.287626466864111 

 At row:79, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:79, column:81,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:81,the value of plot_cost is         : 8.193825083782155 

 At row:79, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:79, column:82,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:82,the value of plot_cost is         : 8.100831761102713 

 At row:79, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:79, column:83,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:83,the value of plot_cost is         : 8.008646498825785 

 At row:79, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:79, column:84,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:84,the value of plot_cost is         : 7.917269296951376 

 At row:79, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:79, column:85,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:85,the value of plot_cost is         : 7.826700155479477 

 At row:79, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:79, column:86,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:86,the value of plot_cost is         : 7.736939074410097 

 At row:79, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:79, column:87,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:87,the value of plot_cost is         : 7.64798605374323 

 At row:79, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:79, column:88,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:88,the value of plot_cost is         : 7.5598410934788784 

 At row:79, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:79, column:89,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:89,the value of plot_cost is         : 7.472504193617044 

 At row:79, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:79, column:90,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:90,the value of plot_cost is         : 7.385975354157722 

 At row:79, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:79, column:91,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:91,the value of plot_cost is         : 7.300254575100916 

 At row:79, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:79, column:92,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:92,the value of plot_cost is         : 7.215341856446626 

 At row:79, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:79, column:93,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:93,the value of plot_cost is         : 7.1312371981948495 

 At row:79, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:79, column:94,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:94,the value of plot_cost is         : 7.047940600345591 

 At row:79, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:79, column:95,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:95,the value of plot_cost is         : 6.965452062898843 

 At row:79, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:79, column:96,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:96,the value of plot_cost is         : 6.883771585854614 

 At row:79, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:79, column:97,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:97,the value of plot_cost is         : 6.802899169212898 

 At row:79, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:79, column:98,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:98,the value of plot_cost is         : 6.722834812973697 

 At row:79, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:79, column:99,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:99,the value of plot_cost is         : 6.643578517137013 

 At row:79, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:79, column:100,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:100,the value of plot_cost is         : 6.565130281702843 

 At row:79, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:79, column:101,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:101,the value of plot_cost is         : 6.4874901066711885 

 At row:79, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:79, column:102,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:102,the value of plot_cost is         : 6.410657992042047 

 At row:79, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:79, column:103,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:103,the value of plot_cost is         : 6.334633937815422 

 At row:79, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:79, column:104,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:104,the value of plot_cost is         : 6.259417943991312 

 At row:79, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:79, column:105,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:105,the value of plot_cost is         : 6.185010010569719 

 At row:79, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:79, column:106,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:106,the value of plot_cost is         : 6.111410137550639 

 At row:79, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:79, column:107,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:107,the value of plot_cost is         : 6.038618324934074 

 At row:79, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:79, column:108,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:108,the value of plot_cost is         : 5.966634572720023 

 At row:79, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:79, column:109,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:109,the value of plot_cost is         : 5.895458880908489 

 At row:79, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:79, column:110,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:110,the value of plot_cost is         : 5.82509124949947 

 At row:79, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:79, column:111,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:111,the value of plot_cost is         : 5.755531678492967 

 At row:79, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:79, column:112,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:112,the value of plot_cost is         : 5.686780167888978 

 At row:79, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:79, column:113,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:113,the value of plot_cost is         : 5.618836717687503 

 At row:79, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:79, column:114,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:114,the value of plot_cost is         : 5.551701327888544 

 At row:79, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:79, column:115,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:115,the value of plot_cost is         : 5.485373998492101 

 At row:79, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:79, column:116,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:116,the value of plot_cost is         : 5.419854729498173 

 At row:79, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:79, column:117,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:117,the value of plot_cost is         : 5.3551435209067595 

 At row:79, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:79, column:118,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:118,the value of plot_cost is         : 5.291240372717859 

 At row:79, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:79, column:119,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:119,the value of plot_cost is         : 5.228145284931476 

 At row:79, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:79, column:120,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:120,the value of plot_cost is         : 5.165858257547607 

 At row:79, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:79, column:121,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:121,the value of plot_cost is         : 5.104379290566256 

 At row:79, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:79, column:122,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:122,the value of plot_cost is         : 5.0437083839874175 

 At row:79, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:79, column:123,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:123,the value of plot_cost is         : 4.983845537811094 

 At row:79, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:79, column:124,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:124,the value of plot_cost is         : 4.924790752037286 

 At row:79, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:79, column:125,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:125,the value of plot_cost is         : 4.866544026665992 

 At row:79, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:79, column:126,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:126,the value of plot_cost is         : 4.809105361697215 

 At row:79, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:79, column:127,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:127,the value of plot_cost is         : 4.752474757130952 

 At row:79, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:79, column:128,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:128,the value of plot_cost is         : 4.696652212967204 

 At row:79, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:79, column:129,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:129,the value of plot_cost is         : 4.6416377292059705 

 At row:79, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:79, column:130,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:130,the value of plot_cost is         : 4.587431305847254 

 At row:79, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:79, column:131,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:131,the value of plot_cost is         : 4.534032942891052 

 At row:79, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:79, column:132,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:132,the value of plot_cost is         : 4.481442640337365 

 At row:79, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:79, column:133,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:133,the value of plot_cost is         : 4.4296603981861935 

 At row:79, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:79, column:134,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:134,the value of plot_cost is         : 4.3786862164375355 

 At row:79, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:79, column:135,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:135,the value of plot_cost is         : 4.328520095091393 

 At row:79, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:79, column:136,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:136,the value of plot_cost is         : 4.279162034147767 

 At row:79, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:79, column:137,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:137,the value of plot_cost is         : 4.230612033606655 

 At row:79, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:79, column:138,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:138,the value of plot_cost is         : 4.182870093468058 

 At row:79, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:79, column:139,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:139,the value of plot_cost is         : 4.135936213731975 

 At row:79, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:79, column:140,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:140,the value of plot_cost is         : 4.089810394398409 

 At row:79, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:79, column:141,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:141,the value of plot_cost is         : 4.044492635467358 

 At row:79, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:79, column:142,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:142,the value of plot_cost is         : 3.999982936938822 

 At row:79, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:79, column:143,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:143,the value of plot_cost is         : 3.9562812988128 

 At row:79, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:79, column:144,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:144,the value of plot_cost is         : 3.913387721089294 

 At row:79, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:79, column:145,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:145,the value of plot_cost is         : 3.8713022037683023 

 At row:79, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:79, column:146,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:146,the value of plot_cost is         : 3.8300247468498267 

 At row:79, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:79, column:147,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:147,the value of plot_cost is         : 3.789555350333866 

 At row:79, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:79, column:148,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:148,the value of plot_cost is         : 3.7498940142204202 

 At row:79, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:79, column:149,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:149,the value of plot_cost is         : 3.711040738509489 

 At row:79, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:79, column:150,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:150,the value of plot_cost is         : 3.6729955232010725 

 At row:79, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:79, column:151,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:151,the value of plot_cost is         : 3.635758368295172 

 At row:79, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:79, column:152,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:152,the value of plot_cost is         : 3.5993292737917875 

 At row:79, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:79, column:153,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:153,the value of plot_cost is         : 3.5637082396909165 

 At row:79, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:79, column:154,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:154,the value of plot_cost is         : 3.5288952659925608 

 At row:79, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:79, column:155,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:155,the value of plot_cost is         : 3.49489035269672 

 At row:79, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:79, column:156,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:156,the value of plot_cost is         : 3.461693499803396 

 At row:79, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:79, column:157,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:157,the value of plot_cost is         : 3.429304707312586 

 At row:79, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:79, column:158,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:158,the value of plot_cost is         : 3.3977239752242907 

 At row:79, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:79, column:159,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:159,the value of plot_cost is         : 3.3669513035385106 

 At row:79, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:79, column:160,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:160,the value of plot_cost is         : 3.3369866922552456 

 At row:79, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:79, column:161,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:161,the value of plot_cost is         : 3.3078301413744957 

 At row:79, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:79, column:162,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:162,the value of plot_cost is         : 3.279481650896262 

 At row:79, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:79, column:163,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:163,the value of plot_cost is         : 3.251941220820542 

 At row:79, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:79, column:164,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:164,the value of plot_cost is         : 3.2252088511473374 

 At row:79, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:79, column:165,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:165,the value of plot_cost is         : 3.1992845418766476 

 At row:79, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:79, column:166,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:166,the value of plot_cost is         : 3.1741682930084734 

 At row:79, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:79, column:167,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:167,the value of plot_cost is         : 3.1498601045428147 

 At row:79, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:79, column:168,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:168,the value of plot_cost is         : 3.1263599764796703 

 At row:79, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:79, column:169,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:169,the value of plot_cost is         : 3.103667908819041 

 At row:79, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:79, column:170,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:170,the value of plot_cost is         : 3.0817839015609265 

 At row:79, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:79, column:171,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:171,the value of plot_cost is         : 3.060707954705328 

 At row:79, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:79, column:172,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:172,the value of plot_cost is         : 3.040440068252245 

 At row:79, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:79, column:173,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:173,the value of plot_cost is         : 3.020980242201676 

 At row:79, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:79, column:174,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:174,the value of plot_cost is         : 3.0023284765536222 

 At row:79, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:79, column:175,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:175,the value of plot_cost is         : 2.984484771308083 

 At row:79, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:79, column:176,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:176,the value of plot_cost is         : 2.9674491264650604 

 At row:79, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:79, column:177,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:177,the value of plot_cost is         : 2.9512215420245522 

 At row:79, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:79, column:178,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:178,the value of plot_cost is         : 2.9358020179865587 

 At row:79, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:79, column:179,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:179,the value of plot_cost is         : 2.92119055435108 

 At row:79, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:79, column:180,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:180,the value of plot_cost is         : 2.907387151118117 

 At row:79, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:79, column:181,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:181,the value of plot_cost is         : 2.8943918082876694 

 At row:79, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:79, column:182,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:182,the value of plot_cost is         : 2.8822045258597364 

 At row:79, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:79, column:183,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:183,the value of plot_cost is         : 2.8708253038343186 

 At row:79, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:79, column:184,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:184,the value of plot_cost is         : 2.8602541422114154 

 At row:79, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:79, column:185,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:185,the value of plot_cost is         : 2.850491040991028 

 At row:79, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:79, column:186,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:186,the value of plot_cost is         : 2.8415360001731558 

 At row:79, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:79, column:187,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:187,the value of plot_cost is         : 2.833389019757799 

 At row:79, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:79, column:188,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:188,the value of plot_cost is         : 2.826050099744956 

 At row:79, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:79, column:189,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:189,the value of plot_cost is         : 2.8195192401346283 

 At row:79, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:79, column:190,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:190,the value of plot_cost is         : 2.8137964409268164 

 At row:79, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:79, column:191,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:191,the value of plot_cost is         : 2.808881702121519 

 At row:79, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:79, column:192,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:192,the value of plot_cost is         : 2.8047750237187374 

 At row:79, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:79, column:193,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:193,the value of plot_cost is         : 2.801476405718471 

 At row:79, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:79, column:194,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:194,the value of plot_cost is         : 2.798985848120718 

 At row:79, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:79, column:195,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:195,the value of plot_cost is         : 2.7973033509254814 

 At row:79, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:79, column:196,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:196,the value of plot_cost is         : 2.79642891413276 

 At row:79, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:79, column:197,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:197,the value of plot_cost is         : 2.7963625377425534 

 At row:79, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:79, column:198,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:198,the value of plot_cost is         : 2.797104221754862 

 At row:79, column:199,the value of plot_t0 is           : 3.0
 At row:79, column:199,the value of plot_t1 is           : 0.5879396984924623
 At row:79, column:199,the value of plot_cost is         : 2.798653966169685 

 At row:80, column:0,the value of plot_t0 is           : -1.0
 At row:80, column:0,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:0,the value of plot_cost is         : 17.772614652588132 

 At row:80, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:80, column:1,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:1,the value of plot_cost is         : 17.616846580353304 

 At row:80, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:80, column:2,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:2,the value of plot_cost is         : 17.461886568520995 

 At row:80, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:80, column:3,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:3,the value of plot_cost is         : 17.307734617091196 

 At row:80, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:80, column:4,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:4,the value of plot_cost is         : 17.154390726063912 

 At row:80, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:80, column:5,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:5,the value of plot_cost is         : 17.00185489543914 

 At row:80, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:80, column:6,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:6,the value of plot_cost is         : 16.85012712521689 

 At row:80, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:80, column:7,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:7,the value of plot_cost is         : 16.699207415397154 

 At row:80, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:80, column:8,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:8,the value of plot_cost is         : 16.54909576597993 

 At row:80, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:80, column:9,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:9,the value of plot_cost is         : 16.399792176965224 

 At row:80, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:80, column:10,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:10,the value of plot_cost is         : 16.25129664835303 

 At row:80, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:80, column:11,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:11,the value of plot_cost is         : 16.10360918014335 

 At row:80, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:80, column:12,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:12,the value of plot_cost is         : 15.956729772336192 

 At row:80, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:80, column:13,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:13,the value of plot_cost is         : 15.810658424931546 

 At row:80, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:80, column:14,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:14,the value of plot_cost is         : 15.665395137929414 

 At row:80, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:80, column:15,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:15,the value of plot_cost is         : 15.520939911329794 

 At row:80, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:80, column:16,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:16,the value of plot_cost is         : 15.377292745132696 

 At row:80, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:80, column:17,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:17,the value of plot_cost is         : 15.23445363933811 

 At row:80, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:80, column:18,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:18,the value of plot_cost is         : 15.092422593946036 

 At row:80, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:80, column:19,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:19,the value of plot_cost is         : 14.95119960895648 

 At row:80, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:80, column:20,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:20,the value of plot_cost is         : 14.81078468436944 

 At row:80, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:80, column:21,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:21,the value of plot_cost is         : 14.671177820184912 

 At row:80, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:80, column:22,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:22,the value of plot_cost is         : 14.532379016402903 

 At row:80, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:80, column:23,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:23,the value of plot_cost is         : 14.394388273023406 

 At row:80, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:80, column:24,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:24,the value of plot_cost is         : 14.257205590046425 

 At row:80, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:80, column:25,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:25,the value of plot_cost is         : 14.120830967471957 

 At row:80, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:80, column:26,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:26,the value of plot_cost is         : 13.985264405300008 

 At row:80, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:80, column:27,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:27,the value of plot_cost is         : 13.850505903530575 

 At row:80, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:80, column:28,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:28,the value of plot_cost is         : 13.716555462163655 

 At row:80, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:80, column:29,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:29,the value of plot_cost is         : 13.583413081199247 

 At row:80, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:80, column:30,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:30,the value of plot_cost is         : 13.451078760637353 

 At row:80, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:80, column:31,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:31,the value of plot_cost is         : 13.319552500477979 

 At row:80, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:80, column:32,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:32,the value of plot_cost is         : 13.188834300721119 

 At row:80, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:80, column:33,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:33,the value of plot_cost is         : 13.058924161366775 

 At row:80, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:80, column:34,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:34,the value of plot_cost is         : 12.929822082414944 

 At row:80, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:80, column:35,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:35,the value of plot_cost is         : 12.801528063865627 

 At row:80, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:80, column:36,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:36,the value of plot_cost is         : 12.674042105718828 

 At row:80, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:80, column:37,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:37,the value of plot_cost is         : 12.547364207974544 

 At row:80, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:80, column:38,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:38,the value of plot_cost is         : 12.421494370632773 

 At row:80, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:80, column:39,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:39,the value of plot_cost is         : 12.296432593693517 

 At row:80, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:80, column:40,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:40,the value of plot_cost is         : 12.172178877156778 

 At row:80, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:80, column:41,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:41,the value of plot_cost is         : 12.048733221022552 

 At row:80, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:80, column:42,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:42,the value of plot_cost is         : 11.926095625290847 

 At row:80, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:80, column:43,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:43,the value of plot_cost is         : 11.80426608996165 

 At row:80, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:80, column:44,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:44,the value of plot_cost is         : 11.68324461503497 

 At row:80, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:80, column:45,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:45,the value of plot_cost is         : 11.563031200510807 

 At row:80, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:80, column:46,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:46,the value of plot_cost is         : 11.443625846389157 

 At row:80, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:80, column:47,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:47,the value of plot_cost is         : 11.325028552670023 

 At row:80, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:80, column:48,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:48,the value of plot_cost is         : 11.207239319353405 

 At row:80, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:80, column:49,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:49,the value of plot_cost is         : 11.0902581464393 

 At row:80, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:80, column:50,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:50,the value of plot_cost is         : 10.974085033927711 

 At row:80, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:80, column:51,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:51,the value of plot_cost is         : 10.858719981818638 

 At row:80, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:80, column:52,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:52,the value of plot_cost is         : 10.744162990112079 

 At row:80, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:80, column:53,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:53,the value of plot_cost is         : 10.630414058808036 

 At row:80, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:80, column:54,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:54,the value of plot_cost is         : 10.517473187906507 

 At row:80, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:80, column:55,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:55,the value of plot_cost is         : 10.405340377407493 

 At row:80, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:80, column:56,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:56,the value of plot_cost is         : 10.294015627310996 

 At row:80, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:80, column:57,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:57,the value of plot_cost is         : 10.183498937617012 

 At row:80, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:80, column:58,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:58,the value of plot_cost is         : 10.073790308325545 

 At row:80, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:80, column:59,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:59,the value of plot_cost is         : 9.964889739436591 

 At row:80, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:80, column:60,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:60,the value of plot_cost is         : 9.856797230950153 

 At row:80, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:80, column:61,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:61,the value of plot_cost is         : 9.749512782866232 

 At row:80, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:80, column:62,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:62,the value of plot_cost is         : 9.643036395184824 

 At row:80, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:80, column:63,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:63,the value of plot_cost is         : 9.53736806790593 

 At row:80, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:80, column:64,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:64,the value of plot_cost is         : 9.432507801029553 

 At row:80, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:80, column:65,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:65,the value of plot_cost is         : 9.328455594555692 

 At row:80, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:80, column:66,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:66,the value of plot_cost is         : 9.225211448484345 

 At row:80, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:80, column:67,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:67,the value of plot_cost is         : 9.122775362815512 

 At row:80, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:80, column:68,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:68,the value of plot_cost is         : 9.021147337549195 

 At row:80, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:80, column:69,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:69,the value of plot_cost is         : 8.920327372685392 

 At row:80, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:80, column:70,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:70,the value of plot_cost is         : 8.820315468224104 

 At row:80, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:80, column:71,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:71,the value of plot_cost is         : 8.721111624165331 

 At row:80, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:80, column:72,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:72,the value of plot_cost is         : 8.622715840509075 

 At row:80, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:80, column:73,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:73,the value of plot_cost is         : 8.525128117255335 

 At row:80, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:80, column:74,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:74,the value of plot_cost is         : 8.428348454404107 

 At row:80, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:80, column:75,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:75,the value of plot_cost is         : 8.332376851955395 

 At row:80, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:80, column:76,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:76,the value of plot_cost is         : 8.2372133099092 

 At row:80, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:80, column:77,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:77,the value of plot_cost is         : 8.142857828265518 

 At row:80, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:80, column:78,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:78,the value of plot_cost is         : 8.049310407024352 

 At row:80, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:80, column:79,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:79,the value of plot_cost is         : 7.956571046185701 

 At row:80, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:80, column:80,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:80,the value of plot_cost is         : 7.864639745749564 

 At row:80, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:80, column:81,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:81,the value of plot_cost is         : 7.773516505715942 

 At row:80, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:80, column:82,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:82,the value of plot_cost is         : 7.683201326084837 

 At row:80, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:80, column:83,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:83,the value of plot_cost is         : 7.593694206856245 

 At row:80, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:80, column:84,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:84,the value of plot_cost is         : 7.50499514803017 

 At row:80, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:80, column:85,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:85,the value of plot_cost is         : 7.417104149606609 

 At row:80, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:80, column:86,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:86,the value of plot_cost is         : 7.330021211585564 

 At row:80, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:80, column:87,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:87,the value of plot_cost is         : 7.243746333967033 

 At row:80, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:80, column:88,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:88,the value of plot_cost is         : 7.158279516751019 

 At row:80, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:80, column:89,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:89,the value of plot_cost is         : 7.073620759937517 

 At row:80, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:80, column:90,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:90,the value of plot_cost is         : 6.989770063526532 

 At row:80, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:80, column:91,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:91,the value of plot_cost is         : 6.906727427518061 

 At row:80, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:80, column:92,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:92,the value of plot_cost is         : 6.824492851912107 

 At row:80, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:80, column:93,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:93,the value of plot_cost is         : 6.743066336708667 

 At row:80, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:80, column:94,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:94,the value of plot_cost is         : 6.662447881907742 

 At row:80, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:80, column:95,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:95,the value of plot_cost is         : 6.5826374875093325 

 At row:80, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:80, column:96,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:96,the value of plot_cost is         : 6.503635153513437 

 At row:80, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:80, column:97,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:97,the value of plot_cost is         : 6.425440879920058 

 At row:80, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:80, column:98,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:98,the value of plot_cost is         : 6.348054666729193 

 At row:80, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:80, column:99,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:99,the value of plot_cost is         : 6.2714765139408435 

 At row:80, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:80, column:100,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:100,the value of plot_cost is         : 6.19570642155501 

 At row:80, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:80, column:101,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:101,the value of plot_cost is         : 6.120744389571689 

 At row:80, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:80, column:102,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:102,the value of plot_cost is         : 6.0465904179908865 

 At row:80, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:80, column:103,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:103,the value of plot_cost is         : 5.9732445068125966 

 At row:80, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:80, column:104,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:104,the value of plot_cost is         : 5.900706656036822 

 At row:80, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:80, column:105,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:105,the value of plot_cost is         : 5.828976865663565 

 At row:80, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:80, column:106,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:106,the value of plot_cost is         : 5.758055135692819 

 At row:80, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:80, column:107,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:107,the value of plot_cost is         : 5.687941466124591 

 At row:80, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:80, column:108,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:108,the value of plot_cost is         : 5.6186358569588775 

 At row:80, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:80, column:109,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:109,the value of plot_cost is         : 5.550138308195678 

 At row:80, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:80, column:110,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:110,the value of plot_cost is         : 5.482448819834994 

 At row:80, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:80, column:111,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:111,the value of plot_cost is         : 5.415567391876827 

 At row:80, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:80, column:112,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:112,the value of plot_cost is         : 5.349494024321174 

 At row:80, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:80, column:113,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:113,the value of plot_cost is         : 5.284228717168036 

 At row:80, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:80, column:114,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:114,the value of plot_cost is         : 5.2197714704174105 

 At row:80, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:80, column:115,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:115,the value of plot_cost is         : 5.156122284069302 

 At row:80, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:80, column:116,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:116,the value of plot_cost is         : 5.093281158123711 

 At row:80, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:80, column:117,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:117,the value of plot_cost is         : 5.0312480925806335 

 At row:80, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:80, column:118,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:118,the value of plot_cost is         : 4.970023087440071 

 At row:80, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:80, column:119,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:119,the value of plot_cost is         : 4.909606142702021 

 At row:80, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:80, column:120,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:120,the value of plot_cost is         : 4.849997258366489 

 At row:80, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:80, column:121,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:121,the value of plot_cost is         : 4.7911964344334725 

 At row:80, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:80, column:122,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:122,the value of plot_cost is         : 4.73320367090297 

 At row:80, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:80, column:123,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:123,the value of plot_cost is         : 4.676018967774983 

 At row:80, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:80, column:124,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:124,the value of plot_cost is         : 4.619642325049509 

 At row:80, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:80, column:125,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:125,the value of plot_cost is         : 4.564073742726552 

 At row:80, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:80, column:126,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:126,the value of plot_cost is         : 4.509313220806111 

 At row:80, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:80, column:127,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:127,the value of plot_cost is         : 4.455360759288185 

 At row:80, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:80, column:128,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:128,the value of plot_cost is         : 4.4022163581727725 

 At row:80, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:80, column:129,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:129,the value of plot_cost is         : 4.349880017459874 

 At row:80, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:80, column:130,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:130,the value of plot_cost is         : 4.298351737149492 

 At row:80, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:80, column:131,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:131,the value of plot_cost is         : 4.247631517241627 

 At row:80, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:80, column:132,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:132,the value of plot_cost is         : 4.1977193577362755 

 At row:80, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:80, column:133,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:133,the value of plot_cost is         : 4.1486152586334395 

 At row:80, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:80, column:134,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:134,the value of plot_cost is         : 4.100319219933116 

 At row:80, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:80, column:135,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:135,the value of plot_cost is         : 4.052831241635309 

 At row:80, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:80, column:136,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:136,the value of plot_cost is         : 4.00615132374002 

 At row:80, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:80, column:137,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:137,the value of plot_cost is         : 3.9602794662472443 

 At row:80, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:80, column:138,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:138,the value of plot_cost is         : 3.9152156691569835 

 At row:80, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:80, column:139,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:139,the value of plot_cost is         : 3.870959932469235 

 At row:80, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:80, column:140,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:140,the value of plot_cost is         : 3.827512256184005 

 At row:80, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:80, column:141,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:141,the value of plot_cost is         : 3.78487264030129 

 At row:80, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:80, column:142,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:142,the value of plot_cost is         : 3.7430410848210904 

 At row:80, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:80, column:143,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:143,the value of plot_cost is         : 3.7020175897434044 

 At row:80, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:80, column:144,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:144,the value of plot_cost is         : 3.661802155068232 

 At row:80, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:80, column:145,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:145,the value of plot_cost is         : 3.6223947807955774 

 At row:80, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:80, column:146,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:146,the value of plot_cost is         : 3.5837954669254373 

 At row:80, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:80, column:147,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:147,the value of plot_cost is         : 3.5460042134578122 

 At row:80, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:80, column:148,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:148,the value of plot_cost is         : 3.5090210203927024 

 At row:80, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:80, column:149,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:149,the value of plot_cost is         : 3.4728458877301063 

 At row:80, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:80, column:150,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:150,the value of plot_cost is         : 3.437478815470026 

 At row:80, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:80, column:151,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:151,the value of plot_cost is         : 3.4029198036124617 

 At row:80, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:80, column:152,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:152,the value of plot_cost is         : 3.369168852157413 

 At row:80, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:80, column:153,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:153,the value of plot_cost is         : 3.3362259611048777 

 At row:80, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:80, column:154,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:154,the value of plot_cost is         : 3.3040911304548573 

 At row:80, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:80, column:155,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:155,the value of plot_cost is         : 3.2727643602073524 

 At row:80, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:80, column:156,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:156,the value of plot_cost is         : 3.242245650362364 

 At row:80, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:80, column:157,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:157,the value of plot_cost is         : 3.21253500091989 

 At row:80, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:80, column:158,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:158,the value of plot_cost is         : 3.183632411879931 

 At row:80, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:80, column:159,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:159,the value of plot_cost is         : 3.155537883242485 

 At row:80, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:80, column:160,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:160,the value of plot_cost is         : 3.1282514150075555 

 At row:80, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:80, column:161,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:161,the value of plot_cost is         : 3.101773007175143 

 At row:80, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:80, column:162,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:162,the value of plot_cost is         : 3.0761026597452443 

 At row:80, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:80, column:163,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:163,the value of plot_cost is         : 3.05124037271786 

 At row:80, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:80, column:164,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:164,the value of plot_cost is         : 3.0271861460929905 

 At row:80, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:80, column:165,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:165,the value of plot_cost is         : 3.003939979870637 

 At row:80, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:80, column:166,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:166,the value of plot_cost is         : 2.9815018740507995 

 At row:80, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:80, column:167,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:167,the value of plot_cost is         : 2.9598718286334758 

 At row:80, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:80, column:168,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:168,the value of plot_cost is         : 2.939049843618667 

 At row:80, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:80, column:169,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:169,the value of plot_cost is         : 2.9190359190063733 

 At row:80, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:80, column:170,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:170,the value of plot_cost is         : 2.8998300547965945 

 At row:80, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:80, column:171,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:171,the value of plot_cost is         : 2.881432250989332 

 At row:80, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:80, column:172,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:172,the value of plot_cost is         : 2.863842507584584 

 At row:80, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:80, column:173,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:173,the value of plot_cost is         : 2.847060824582351 

 At row:80, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:80, column:174,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:174,the value of plot_cost is         : 2.831087201982633 

 At row:80, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:80, column:175,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:175,the value of plot_cost is         : 2.81592163978543 

 At row:80, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:80, column:176,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:176,the value of plot_cost is         : 2.801564137990743 

 At row:80, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:80, column:177,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:177,the value of plot_cost is         : 2.788014696598571 

 At row:80, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:80, column:178,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:178,the value of plot_cost is         : 2.7752733156089135 

 At row:80, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:80, column:179,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:179,the value of plot_cost is         : 2.7633399950217696 

 At row:80, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:80, column:180,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:180,the value of plot_cost is         : 2.7522147348371426 

 At row:80, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:80, column:181,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:181,the value of plot_cost is         : 2.741897535055031 

 At row:80, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:80, column:182,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:182,the value of plot_cost is         : 2.732388395675434 

 At row:80, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:80, column:183,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:183,the value of plot_cost is         : 2.7236873166983515 

 At row:80, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:80, column:184,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:184,the value of plot_cost is         : 2.7157942981237837 

 At row:80, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:80, column:185,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:185,the value of plot_cost is         : 2.708709339951732 

 At row:80, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:80, column:186,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:186,the value of plot_cost is         : 2.7024324421821966 

 At row:80, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:80, column:187,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:187,the value of plot_cost is         : 2.696963604815174 

 At row:80, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:80, column:188,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:188,the value of plot_cost is         : 2.6923028278506678 

 At row:80, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:80, column:189,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:189,the value of plot_cost is         : 2.688450111288675 

 At row:80, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:80, column:190,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:190,the value of plot_cost is         : 2.685405455129198 

 At row:80, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:80, column:191,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:191,the value of plot_cost is         : 2.683168859372238 

 At row:80, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:80, column:192,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:192,the value of plot_cost is         : 2.681740324017792 

 At row:80, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:80, column:193,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:193,the value of plot_cost is         : 2.68111984906586 

 At row:80, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:80, column:194,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:194,the value of plot_cost is         : 2.681307434516444 

 At row:80, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:80, column:195,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:195,the value of plot_cost is         : 2.6823030803695427 

 At row:80, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:80, column:196,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:196,the value of plot_cost is         : 2.684106786625158 

 At row:80, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:80, column:197,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:197,the value of plot_cost is         : 2.6867185532832867 

 At row:80, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:80, column:198,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:198,the value of plot_cost is         : 2.690138380343931 

 At row:80, column:199,the value of plot_t0 is           : 3.0
 At row:80, column:199,the value of plot_t1 is           : 0.6080402010050252
 At row:80, column:199,the value of plot_cost is         : 2.694366267807089 

 At row:81, column:0,the value of plot_t0 is           : -1.0
 At row:81, column:0,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:0,the value of plot_cost is         : 17.147959142445895 

 At row:81, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:81, column:1,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:1,the value of plot_cost is         : 16.994869213259403 

 At row:81, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:81, column:2,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:2,the value of plot_cost is         : 16.84258734447543 

 At row:81, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:81, column:3,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:3,the value of plot_cost is         : 16.691113536093965 

 At row:81, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:81, column:4,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:4,the value of plot_cost is         : 16.54044778811502 

 At row:81, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:81, column:5,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:5,the value of plot_cost is         : 16.390590100538585 

 At row:81, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:81, column:6,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:6,the value of plot_cost is         : 16.241540473364665 

 At row:81, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:81, column:7,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:7,the value of plot_cost is         : 16.09329890659327 

 At row:81, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:81, column:8,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:8,the value of plot_cost is         : 15.945865400224381 

 At row:81, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:81, column:9,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:9,the value of plot_cost is         : 15.799239954258013 

 At row:81, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:81, column:10,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:10,the value of plot_cost is         : 15.653422568694154 

 At row:81, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:81, column:11,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:11,the value of plot_cost is         : 15.508413243532809 

 At row:81, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:81, column:12,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:12,the value of plot_cost is         : 15.364211978773985 

 At row:81, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:81, column:13,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:13,the value of plot_cost is         : 15.220818774417673 

 At row:81, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:81, column:14,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:14,the value of plot_cost is         : 15.078233630463878 

 At row:81, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:81, column:15,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:15,the value of plot_cost is         : 14.936456546912595 

 At row:81, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:81, column:16,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:16,the value of plot_cost is         : 14.795487523763828 

 At row:81, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:81, column:17,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:17,the value of plot_cost is         : 14.655326561017578 

 At row:81, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:81, column:18,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:18,the value of plot_cost is         : 14.515973658673845 

 At row:81, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:81, column:19,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:19,the value of plot_cost is         : 14.377428816732625 

 At row:81, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:81, column:20,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:20,the value of plot_cost is         : 14.239692035193915 

 At row:81, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:81, column:21,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:21,the value of plot_cost is         : 14.102763314057722 

 At row:81, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:81, column:22,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:22,the value of plot_cost is         : 13.966642653324051 

 At row:81, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:81, column:23,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:23,the value of plot_cost is         : 13.831330052992891 

 At row:81, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:81, column:24,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:24,the value of plot_cost is         : 13.696825513064246 

 At row:81, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:81, column:25,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:25,the value of plot_cost is         : 13.563129033538113 

 At row:81, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:81, column:26,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:26,the value of plot_cost is         : 13.430240614414497 

 At row:81, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:81, column:27,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:27,the value of plot_cost is         : 13.298160255693398 

 At row:81, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:81, column:28,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:28,the value of plot_cost is         : 13.166887957374815 

 At row:81, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:81, column:29,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:29,the value of plot_cost is         : 13.036423719458744 

 At row:81, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:81, column:30,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:30,the value of plot_cost is         : 12.90676754194519 

 At row:81, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:81, column:31,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:31,the value of plot_cost is         : 12.777919424834147 

 At row:81, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:81, column:32,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:32,the value of plot_cost is         : 12.649879368125625 

 At row:81, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:81, column:33,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:33,the value of plot_cost is         : 12.522647371819616 

 At row:81, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:81, column:34,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:34,the value of plot_cost is         : 12.396223435916122 

 At row:81, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:81, column:35,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:35,the value of plot_cost is         : 12.27060756041514 

 At row:81, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:81, column:36,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:36,the value of plot_cost is         : 12.145799745316674 

 At row:81, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:81, column:37,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:37,the value of plot_cost is         : 12.021799990620726 

 At row:81, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:81, column:38,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:38,the value of plot_cost is         : 11.898608296327293 

 At row:81, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:81, column:39,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:39,the value of plot_cost is         : 11.776224662436373 

 At row:81, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:81, column:40,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:40,the value of plot_cost is         : 11.65464908894797 

 At row:81, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:81, column:41,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:41,the value of plot_cost is         : 11.533881575862083 

 At row:81, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:81, column:42,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:42,the value of plot_cost is         : 11.413922123178708 

 At row:81, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:81, column:43,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:43,the value of plot_cost is         : 11.29477073089785 

 At row:81, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:81, column:44,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:44,the value of plot_cost is         : 11.176427399019506 

 At row:81, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:81, column:45,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:45,the value of plot_cost is         : 11.058892127543677 

 At row:81, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:81, column:46,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:46,the value of plot_cost is         : 10.942164916470363 

 At row:81, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:81, column:47,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:47,the value of plot_cost is         : 10.826245765799564 

 At row:81, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:81, column:48,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:48,the value of plot_cost is         : 10.711134675531282 

 At row:81, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:81, column:49,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:49,the value of plot_cost is         : 10.596831645665512 

 At row:81, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:81, column:50,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:50,the value of plot_cost is         : 10.48333667620226 

 At row:81, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:81, column:51,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:51,the value of plot_cost is         : 10.370649767141522 

 At row:81, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:81, column:52,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:52,the value of plot_cost is         : 10.2587709184833 

 At row:81, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:81, column:53,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:53,the value of plot_cost is         : 10.147700130227593 

 At row:81, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:81, column:54,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:54,the value of plot_cost is         : 10.037437402374398 

 At row:81, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:81, column:55,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:55,the value of plot_cost is         : 9.92798273492372 

 At row:81, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:81, column:56,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:56,the value of plot_cost is         : 9.819336127875559 

 At row:81, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:81, column:57,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:57,the value of plot_cost is         : 9.71149758122991 

 At row:81, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:81, column:58,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:58,the value of plot_cost is         : 9.604467094986779 

 At row:81, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:81, column:59,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:59,the value of plot_cost is         : 9.498244669146162 

 At row:81, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:81, column:60,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:60,the value of plot_cost is         : 9.392830303708058 

 At row:81, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:81, column:61,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:61,the value of plot_cost is         : 9.288223998672471 

 At row:81, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:81, column:62,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:62,the value of plot_cost is         : 9.1844257540394 

 At row:81, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:81, column:63,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:63,the value of plot_cost is         : 9.081435569808844 

 At row:81, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:81, column:64,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:64,the value of plot_cost is         : 8.9792534459808 

 At row:81, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:81, column:65,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:65,the value of plot_cost is         : 8.877879382555276 

 At row:81, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:81, column:66,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:66,the value of plot_cost is         : 8.777313379532263 

 At row:81, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:81, column:67,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:67,the value of plot_cost is         : 8.677555436911767 

 At row:81, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:81, column:68,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:68,the value of plot_cost is         : 8.578605554693786 

 At row:81, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:81, column:69,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:69,the value of plot_cost is         : 8.480463732878318 

 At row:81, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:81, column:70,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:70,the value of plot_cost is         : 8.383129971465367 

 At row:81, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:81, column:71,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:71,the value of plot_cost is         : 8.28660427045493 

 At row:81, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:81, column:72,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:72,the value of plot_cost is         : 8.190886629847009 

 At row:81, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:81, column:73,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:73,the value of plot_cost is         : 8.095977049641604 

 At row:81, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:81, column:74,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:74,the value of plot_cost is         : 8.001875529838713 

 At row:81, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:81, column:75,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:75,the value of plot_cost is         : 7.908582070438337 

 At row:81, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:81, column:76,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:76,the value of plot_cost is         : 7.8160966714404765 

 At row:81, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:81, column:77,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:77,the value of plot_cost is         : 7.724419332845131 

 At row:81, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:81, column:78,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:78,the value of plot_cost is         : 7.6335500546523 

 At row:81, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:81, column:79,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:79,the value of plot_cost is         : 7.543488836861984 

 At row:81, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:81, column:80,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:80,the value of plot_cost is         : 7.454235679474183 

 At row:81, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:81, column:81,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:81,the value of plot_cost is         : 7.365790582488899 

 At row:81, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:81, column:82,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:82,the value of plot_cost is         : 7.27815354590613 

 At row:81, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:81, column:83,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:83,the value of plot_cost is         : 7.191324569725873 

 At row:81, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:81, column:84,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:84,the value of plot_cost is         : 7.105303653948132 

 At row:81, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:81, column:85,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:85,the value of plot_cost is         : 7.020090798572909 

 At row:81, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:81, column:86,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:86,the value of plot_cost is         : 6.935686003600198 

 At row:81, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:81, column:87,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:87,the value of plot_cost is         : 6.852089269030003 

 At row:81, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:81, column:88,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:88,the value of plot_cost is         : 6.769300594862323 

 At row:81, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:81, column:89,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:89,the value of plot_cost is         : 6.687319981097159 

 At row:81, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:81, column:90,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:90,the value of plot_cost is         : 6.606147427734508 

 At row:81, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:81, column:91,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:91,the value of plot_cost is         : 6.525782934774374 

 At row:81, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:81, column:92,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:92,the value of plot_cost is         : 6.446226502216756 

 At row:81, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:81, column:93,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:93,the value of plot_cost is         : 6.367478130061651 

 At row:81, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:81, column:94,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:94,the value of plot_cost is         : 6.289537818309062 

 At row:81, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:81, column:95,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:95,the value of plot_cost is         : 6.212405566958988 

 At row:81, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:81, column:96,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:96,the value of plot_cost is         : 6.136081376011428 

 At row:81, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:81, column:97,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:97,the value of plot_cost is         : 6.060565245466385 

 At row:81, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:81, column:98,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:98,the value of plot_cost is         : 5.985857175323855 

 At row:81, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:81, column:99,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:99,the value of plot_cost is         : 5.911957165583841 

 At row:81, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:81, column:100,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:100,the value of plot_cost is         : 5.838865216246343 

 At row:81, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:81, column:101,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:101,the value of plot_cost is         : 5.76658132731136 

 At row:81, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:81, column:102,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:102,the value of plot_cost is         : 5.695105498778891 

 At row:81, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:81, column:103,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:103,the value of plot_cost is         : 5.624437730648937 

 At row:81, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:81, column:104,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:104,the value of plot_cost is         : 5.554578022921498 

 At row:81, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:81, column:105,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:105,the value of plot_cost is         : 5.485526375596577 

 At row:81, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:81, column:106,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:106,the value of plot_cost is         : 5.417282788674168 

 At row:81, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:81, column:107,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:107,the value of plot_cost is         : 5.349847262154275 

 At row:81, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:81, column:108,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:108,the value of plot_cost is         : 5.283219796036897 

 At row:81, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:81, column:109,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:109,the value of plot_cost is         : 5.217400390322033 

 At row:81, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:81, column:110,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:110,the value of plot_cost is         : 5.152389045009685 

 At row:81, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:81, column:111,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:111,the value of plot_cost is         : 5.0881857600998535 

 At row:81, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:81, column:112,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:112,the value of plot_cost is         : 5.024790535592537 

 At row:81, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:81, column:113,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:113,the value of plot_cost is         : 4.962203371487734 

 At row:81, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:81, column:114,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:114,the value of plot_cost is         : 4.9004242677854455 

 At row:81, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:81, column:115,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:115,the value of plot_cost is         : 4.8394532244856725 

 At row:81, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:81, column:116,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:116,the value of plot_cost is         : 4.7792902415884155 

 At row:81, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:81, column:117,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:117,the value of plot_cost is         : 4.719935319093675 

 At row:81, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:81, column:118,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:118,the value of plot_cost is         : 4.661388457001447 

 At row:81, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:81, column:119,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:119,the value of plot_cost is         : 4.6036496553117345 

 At row:81, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:81, column:120,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:120,the value of plot_cost is         : 4.546718914024537 

 At row:81, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:81, column:121,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:121,the value of plot_cost is         : 4.490596233139856 

 At row:81, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:81, column:122,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:122,the value of plot_cost is         : 4.43528161265769 

 At row:81, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:81, column:123,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:123,the value of plot_cost is         : 4.380775052578038 

 At row:81, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:81, column:124,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:124,the value of plot_cost is         : 4.3270765529009 

 At row:81, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:81, column:125,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:125,the value of plot_cost is         : 4.274186113626278 

 At row:81, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:81, column:126,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:126,the value of plot_cost is         : 4.222103734754173 

 At row:81, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:81, column:127,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:127,the value of plot_cost is         : 4.170829416284582 

 At row:81, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:81, column:128,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:128,the value of plot_cost is         : 4.120363158217506 

 At row:81, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:81, column:129,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:129,the value of plot_cost is         : 4.070704960552944 

 At row:81, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:81, column:130,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:130,the value of plot_cost is         : 4.021854823290897 

 At row:81, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:81, column:131,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:131,the value of plot_cost is         : 3.9738127464313675 

 At row:81, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:81, column:132,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:132,the value of plot_cost is         : 3.926578729974352 

 At row:81, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:81, column:133,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:133,the value of plot_cost is         : 3.8801527739198516 

 At row:81, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:81, column:134,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:134,the value of plot_cost is         : 3.8345348782678643 

 At row:81, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:81, column:135,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:135,the value of plot_cost is         : 3.789725043018393 

 At row:81, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:81, column:136,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:136,the value of plot_cost is         : 3.745723268171439 

 At row:81, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:81, column:137,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:137,the value of plot_cost is         : 3.702529553726999 

 At row:81, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:81, column:138,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:138,the value of plot_cost is         : 3.6601438996850737 

 At row:81, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:81, column:139,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:139,the value of plot_cost is         : 3.618566306045662 

 At row:81, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:81, column:140,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:140,the value of plot_cost is         : 3.5777967728087665 

 At row:81, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:81, column:141,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:141,the value of plot_cost is         : 3.5378352999743874 

 At row:81, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:81, column:142,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:142,the value of plot_cost is         : 3.4986818875425234 

 At row:81, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:81, column:143,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:143,the value of plot_cost is         : 3.460336535513173 

 At row:81, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:81, column:144,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:144,the value of plot_cost is         : 3.422799243886337 

 At row:81, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:81, column:145,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:145,the value of plot_cost is         : 3.386070012662018 

 At row:81, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:81, column:146,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:146,the value of plot_cost is         : 3.350148841840213 

 At row:81, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:81, column:147,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:147,the value of plot_cost is         : 3.3150357314209247 

 At row:81, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:81, column:148,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:148,the value of plot_cost is         : 3.2807306814041497 

 At row:81, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:81, column:149,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:149,the value of plot_cost is         : 3.2472336917898894 

 At row:81, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:81, column:150,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:150,the value of plot_cost is         : 3.2145447625781447 

 At row:81, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:81, column:151,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:151,the value of plot_cost is         : 3.182663893768917 

 At row:81, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:81, column:152,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:152,the value of plot_cost is         : 3.1515910853622033 

 At row:81, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:81, column:153,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:153,the value of plot_cost is         : 3.121326337358004 

 At row:81, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:81, column:154,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:154,the value of plot_cost is         : 3.091869649756319 

 At row:81, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:81, column:155,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:155,the value of plot_cost is         : 3.06322102255715 

 At row:81, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:81, column:156,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:156,the value of plot_cost is         : 3.035380455760497 

 At row:81, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:81, column:157,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:157,the value of plot_cost is         : 3.0083479493663585 

 At row:81, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:81, column:158,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:158,the value of plot_cost is         : 2.982123503374735 

 At row:81, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:81, column:159,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:159,the value of plot_cost is         : 2.956707117785625 

 At row:81, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:81, column:160,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:160,the value of plot_cost is         : 2.932098792599032 

 At row:81, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:81, column:161,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:161,the value of plot_cost is         : 2.9082985278149542 

 At row:81, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:81, column:162,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:162,the value of plot_cost is         : 2.8853063234333916 

 At row:81, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:81, column:163,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:163,the value of plot_cost is         : 2.8631221794543436 

 At row:81, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:81, column:164,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:164,the value of plot_cost is         : 2.8417460958778094 

 At row:81, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:81, column:165,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:165,the value of plot_cost is         : 2.821178072703791 

 At row:81, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:81, column:166,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:166,the value of plot_cost is         : 2.801418109932289 

 At row:81, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:81, column:167,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:167,the value of plot_cost is         : 2.7824662075633015 

 At row:81, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:81, column:168,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:168,the value of plot_cost is         : 2.764322365596829 

 At row:81, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:81, column:169,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:169,the value of plot_cost is         : 2.74698658403287 

 At row:81, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:81, column:170,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:170,the value of plot_cost is         : 2.7304588628714277 

 At row:81, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:81, column:171,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:171,the value of plot_cost is         : 2.714739202112501 

 At row:81, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:81, column:172,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:172,the value of plot_cost is         : 2.699827601756089 

 At row:81, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:81, column:173,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:173,the value of plot_cost is         : 2.685724061802192 

 At row:81, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:81, column:174,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:174,the value of plot_cost is         : 2.672428582250809 

 At row:81, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:81, column:175,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:175,the value of plot_cost is         : 2.6599411631019416 

 At row:81, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:81, column:176,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:176,the value of plot_cost is         : 2.64826180435559 

 At row:81, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:81, column:177,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:177,the value of plot_cost is         : 2.6373905060117537 

 At row:81, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:81, column:178,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:178,the value of plot_cost is         : 2.627327268070432 

 At row:81, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:81, column:179,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:179,the value of plot_cost is         : 2.618072090531624 

 At row:81, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:81, column:180,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:180,the value of plot_cost is         : 2.6096249733953325 

 At row:81, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:81, column:181,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:181,the value of plot_cost is         : 2.601985916661557 

 At row:81, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:81, column:182,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:182,the value of plot_cost is         : 2.595154920330295 

 At row:81, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:81, column:183,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:183,the value of plot_cost is         : 2.589131984401549 

 At row:81, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:81, column:184,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:184,the value of plot_cost is         : 2.583917108875317 

 At row:81, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:81, column:185,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:185,the value of plot_cost is         : 2.5795102937516003 

 At row:81, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:81, column:186,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:186,the value of plot_cost is         : 2.5759115390304004 

 At row:81, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:81, column:187,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:187,the value of plot_cost is         : 2.573120844711714 

 At row:81, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:81, column:188,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:188,the value of plot_cost is         : 2.571138210795543 

 At row:81, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:81, column:189,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:189,the value of plot_cost is         : 2.569963637281887 

 At row:81, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:81, column:190,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:190,the value of plot_cost is         : 2.5695971241707456 

 At row:81, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:81, column:191,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:191,the value of plot_cost is         : 2.5700386714621213 

 At row:81, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:81, column:192,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:192,the value of plot_cost is         : 2.57128827915601 

 At row:81, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:81, column:193,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:193,the value of plot_cost is         : 2.573345947252415 

 At row:81, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:81, column:194,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:194,the value of plot_cost is         : 2.576211675751333 

 At row:81, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:81, column:195,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:195,the value of plot_cost is         : 2.5798854646527674 

 At row:81, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:81, column:196,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:196,the value of plot_cost is         : 2.5843673139567187 

 At row:81, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:81, column:197,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:197,the value of plot_cost is         : 2.5896572236631843 

 At row:81, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:81, column:198,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:198,the value of plot_cost is         : 2.595755193772164 

 At row:81, column:199,the value of plot_t0 is           : 3.0
 At row:81, column:199,the value of plot_t1 is           : 0.6281407035175879
 At row:81, column:199,the value of plot_cost is         : 2.6026612242836573 

 At row:82, column:0,the value of plot_t0 is           : -1.0
 At row:82, column:0,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:0,the value of plot_cost is         : 16.535886287142816 

 At row:82, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:82, column:1,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:1,the value of plot_cost is         : 16.385474501004662 

 At row:82, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:82, column:2,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:2,the value of plot_cost is         : 16.23587077526902 

 At row:82, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:82, column:3,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:3,the value of plot_cost is         : 16.087075109935896 

 At row:82, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:82, column:4,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:4,the value of plot_cost is         : 15.939087505005284 

 At row:82, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:82, column:5,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:5,the value of plot_cost is         : 15.791907960477186 

 At row:82, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:82, column:6,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:6,the value of plot_cost is         : 15.645536476351603 

 At row:82, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:82, column:7,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:7,the value of plot_cost is         : 15.499973052628539 

 At row:82, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:82, column:8,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:8,the value of plot_cost is         : 15.355217689307986 

 At row:82, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:82, column:9,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:9,the value of plot_cost is         : 15.211270386389952 

 At row:82, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:82, column:10,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:10,the value of plot_cost is         : 15.06813114387443 

 At row:82, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:82, column:11,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:11,the value of plot_cost is         : 14.925799961761424 

 At row:82, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:82, column:12,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:12,the value of plot_cost is         : 14.784276840050936 

 At row:82, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:82, column:13,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:13,the value of plot_cost is         : 14.643561778742958 

 At row:82, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:82, column:14,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:14,the value of plot_cost is         : 14.503654777837498 

 At row:82, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:82, column:15,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:15,the value of plot_cost is         : 14.364555837334551 

 At row:82, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:82, column:16,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:16,the value of plot_cost is         : 14.226264957234122 

 At row:82, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:82, column:17,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:17,the value of plot_cost is         : 14.088782137536207 

 At row:82, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:82, column:18,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:18,the value of plot_cost is         : 13.952107378240806 

 At row:82, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:82, column:19,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:19,the value of plot_cost is         : 13.816240679347924 

 At row:82, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:82, column:20,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:20,the value of plot_cost is         : 13.681182040857552 

 At row:82, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:82, column:21,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:21,the value of plot_cost is         : 13.546931462769697 

 At row:82, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:82, column:22,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:22,the value of plot_cost is         : 13.413488945084355 

 At row:82, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:82, column:23,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:23,the value of plot_cost is         : 13.280854487801536 

 At row:82, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:82, column:24,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:24,the value of plot_cost is         : 13.149028090921224 

 At row:82, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:82, column:25,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:25,the value of plot_cost is         : 13.018009754443428 

 At row:82, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:82, column:26,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:26,the value of plot_cost is         : 12.887799478368148 

 At row:82, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:82, column:27,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:27,the value of plot_cost is         : 12.758397262695384 

 At row:82, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:82, column:28,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:28,the value of plot_cost is         : 12.629803107425138 

 At row:82, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:82, column:29,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:29,the value of plot_cost is         : 12.502017012557404 

 At row:82, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:82, column:30,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:30,the value of plot_cost is         : 12.375038978092181 

 At row:82, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:82, column:31,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:31,the value of plot_cost is         : 12.248869004029478 

 At row:82, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:82, column:32,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:32,the value of plot_cost is         : 12.12350709036929 

 At row:82, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:82, column:33,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:33,the value of plot_cost is         : 11.998953237111616 

 At row:82, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:82, column:34,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:34,the value of plot_cost is         : 11.875207444256455 

 At row:82, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:82, column:35,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:35,the value of plot_cost is         : 11.752269711803814 

 At row:82, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:82, column:36,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:36,the value of plot_cost is         : 11.630140039753684 

 At row:82, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:82, column:37,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:37,the value of plot_cost is         : 11.50881842810607 

 At row:82, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:82, column:38,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:38,the value of plot_cost is         : 11.388304876860973 

 At row:82, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:82, column:39,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:39,the value of plot_cost is         : 11.268599386018387 

 At row:82, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:82, column:40,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:40,the value of plot_cost is         : 11.14970195557832 

 At row:82, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:82, column:41,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:41,the value of plot_cost is         : 11.031612585540765 

 At row:82, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:82, column:42,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:42,the value of plot_cost is         : 10.91433127590573 

 At row:82, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:82, column:43,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:43,the value of plot_cost is         : 10.79785802667321 

 At row:82, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:82, column:44,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:44,the value of plot_cost is         : 10.682192837843198 

 At row:82, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:82, column:45,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:45,the value of plot_cost is         : 10.567335709415707 

 At row:82, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:82, column:46,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:46,the value of plot_cost is         : 10.453286641390727 

 At row:82, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:82, column:47,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:47,the value of plot_cost is         : 10.340045633768264 

 At row:82, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:82, column:48,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:48,the value of plot_cost is         : 10.22761268654832 

 At row:82, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:82, column:49,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:49,the value of plot_cost is         : 10.115987799730886 

 At row:82, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:82, column:50,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:50,the value of plot_cost is         : 10.00517097331597 

 At row:82, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:82, column:51,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:51,the value of plot_cost is         : 9.895162207303565 

 At row:82, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:82, column:52,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:52,the value of plot_cost is         : 9.785961501693679 

 At row:82, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:82, column:53,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:53,the value of plot_cost is         : 9.677568856486307 

 At row:82, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:82, column:54,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:54,the value of plot_cost is         : 9.56998427168145 

 At row:82, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:82, column:55,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:55,the value of plot_cost is         : 9.463207747279107 

 At row:82, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:82, column:56,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:56,the value of plot_cost is         : 9.357239283279279 

 At row:82, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:82, column:57,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:57,the value of plot_cost is         : 9.252078879681969 

 At row:82, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:82, column:58,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:58,the value of plot_cost is         : 9.147726536487173 

 At row:82, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:82, column:59,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:59,the value of plot_cost is         : 9.04418225369489 

 At row:82, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:82, column:60,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:60,the value of plot_cost is         : 8.941446031305125 

 At row:82, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:82, column:61,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:61,the value of plot_cost is         : 8.839517869317872 

 At row:82, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:82, column:62,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:62,the value of plot_cost is         : 8.738397767733137 

 At row:82, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:82, column:63,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:63,the value of plot_cost is         : 8.638085726550916 

 At row:82, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:82, column:64,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:64,the value of plot_cost is         : 8.538581745771209 

 At row:82, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:82, column:65,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:65,the value of plot_cost is         : 8.439885825394018 

 At row:82, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:82, column:66,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:66,the value of plot_cost is         : 8.341997965419342 

 At row:82, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:82, column:67,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:67,the value of plot_cost is         : 8.244918165847182 

 At row:82, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:82, column:68,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:68,the value of plot_cost is         : 8.148646426677537 

 At row:82, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:82, column:69,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:69,the value of plot_cost is         : 8.053182747910405 

 At row:82, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:82, column:70,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:70,the value of plot_cost is         : 7.958527129545789 

 At row:82, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:82, column:71,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:71,the value of plot_cost is         : 7.8646795715836895 

 At row:82, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:82, column:72,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:72,the value of plot_cost is         : 7.771640074024103 

 At row:82, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:82, column:73,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:73,the value of plot_cost is         : 7.679408636867033 

 At row:82, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:82, column:74,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:74,the value of plot_cost is         : 7.587985260112477 

 At row:82, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:82, column:75,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:75,the value of plot_cost is         : 7.497369943760438 

 At row:82, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:82, column:76,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:76,the value of plot_cost is         : 7.407562687810913 

 At row:82, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:82, column:77,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:77,the value of plot_cost is         : 7.318563492263902 

 At row:82, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:82, column:78,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:78,the value of plot_cost is         : 7.230372357119409 

 At row:82, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:82, column:79,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:79,the value of plot_cost is         : 7.142989282377428 

 At row:82, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:82, column:80,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:80,the value of plot_cost is         : 7.056414268037964 

 At row:82, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:82, column:81,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:81,the value of plot_cost is         : 6.970647314101015 

 At row:82, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:82, column:82,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:82,the value of plot_cost is         : 6.885688420566578 

 At row:82, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:82, column:83,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:83,the value of plot_cost is         : 6.80153758743466 

 At row:82, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:82, column:84,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:84,the value of plot_cost is         : 6.718194814705255 

 At row:82, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:82, column:85,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:85,the value of plot_cost is         : 6.635660102378367 

 At row:82, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:82, column:86,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:86,the value of plot_cost is         : 6.553933450453992 

 At row:82, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:82, column:87,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:87,the value of plot_cost is         : 6.473014858932133 

 At row:82, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:82, column:88,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:88,the value of plot_cost is         : 6.392904327812789 

 At row:82, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:82, column:89,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:89,the value of plot_cost is         : 6.313601857095959 

 At row:82, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:82, column:90,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:90,the value of plot_cost is         : 6.235107446781646 

 At row:82, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:82, column:91,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:91,the value of plot_cost is         : 6.1574210968698475 

 At row:82, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:82, column:92,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:92,the value of plot_cost is         : 6.080542807360564 

 At row:82, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:82, column:93,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:93,the value of plot_cost is         : 6.004472578253794 

 At row:82, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:82, column:94,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:94,the value of plot_cost is         : 5.929210409549541 

 At row:82, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:82, column:95,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:95,the value of plot_cost is         : 5.854756301247804 

 At row:82, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:82, column:96,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:96,the value of plot_cost is         : 5.78111025334858 

 At row:82, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:82, column:97,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:97,the value of plot_cost is         : 5.708272265851872 

 At row:82, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:82, column:98,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:98,the value of plot_cost is         : 5.636242338757678 

 At row:82, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:82, column:99,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:99,the value of plot_cost is         : 5.565020472066 

 At row:82, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:82, column:100,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:100,the value of plot_cost is         : 5.494606665776838 

 At row:82, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:82, column:101,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:101,the value of plot_cost is         : 5.42500091989019 

 At row:82, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:82, column:102,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:102,the value of plot_cost is         : 5.356203234406056 

 At row:82, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:82, column:103,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:103,the value of plot_cost is         : 5.288213609324439 

 At row:82, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:82, column:104,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:104,the value of plot_cost is         : 5.2210320446453355 

 At row:82, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:82, column:105,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:105,the value of plot_cost is         : 5.15465854036875 

 At row:82, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:82, column:106,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:106,the value of plot_cost is         : 5.089093096494676 

 At row:82, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:82, column:107,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:107,the value of plot_cost is         : 5.024335713023119 

 At row:82, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:82, column:108,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:108,the value of plot_cost is         : 4.960386389954077 

 At row:82, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:82, column:109,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:109,the value of plot_cost is         : 4.897245127287549 

 At row:82, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:82, column:110,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:110,the value of plot_cost is         : 4.834911925023537 

 At row:82, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:82, column:111,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:111,the value of plot_cost is         : 4.7733867831620405 

 At row:82, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:82, column:112,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:112,the value of plot_cost is         : 4.712669701703059 

 At row:82, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:82, column:113,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:113,the value of plot_cost is         : 4.652760680646591 

 At row:82, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:82, column:114,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:114,the value of plot_cost is         : 4.5936597199926394 

 At row:82, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:82, column:115,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:115,the value of plot_cost is         : 4.535366819741203 

 At row:82, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:82, column:116,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:116,the value of plot_cost is         : 4.477881979892282 

 At row:82, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:82, column:117,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:117,the value of plot_cost is         : 4.421205200445876 

 At row:82, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:82, column:118,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:118,the value of plot_cost is         : 4.365336481401984 

 At row:82, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:82, column:119,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:119,the value of plot_cost is         : 4.310275822760608 

 At row:82, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:82, column:120,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:120,the value of plot_cost is         : 4.256023224521746 

 At row:82, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:82, column:121,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:121,the value of plot_cost is         : 4.202578686685401 

 At row:82, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:82, column:122,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:122,the value of plot_cost is         : 4.14994220925157 

 At row:82, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:82, column:123,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:123,the value of plot_cost is         : 4.0981137922202535 

 At row:82, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:82, column:124,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:124,the value of plot_cost is         : 4.047093435591452 

 At row:82, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:82, column:125,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:125,the value of plot_cost is         : 3.996881139365166 

 At row:82, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:82, column:126,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:126,the value of plot_cost is         : 3.947476903541397 

 At row:82, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:82, column:127,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:127,the value of plot_cost is         : 3.898880728120141 

 At row:82, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:82, column:128,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:128,the value of plot_cost is         : 3.8510926131014007 

 At row:82, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:82, column:129,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:129,the value of plot_cost is         : 3.804112558485174 

 At row:82, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:82, column:130,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:130,the value of plot_cost is         : 3.7579405642714634 

 At row:82, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:82, column:131,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:131,the value of plot_cost is         : 3.7125766304602696 

 At row:82, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:82, column:132,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:132,the value of plot_cost is         : 3.6680207570515897 

 At row:82, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:82, column:133,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:133,the value of plot_cost is         : 3.6242729440454244 

 At row:82, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:82, column:134,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:134,the value of plot_cost is         : 3.5813331914417734 

 At row:82, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:82, column:135,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:135,the value of plot_cost is         : 3.539201499240639 

 At row:82, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:82, column:136,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:136,the value of plot_cost is         : 3.497877867442019 

 At row:82, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:82, column:137,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:137,the value of plot_cost is         : 3.457362296045915 

 At row:82, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:82, column:138,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:138,the value of plot_cost is         : 3.4176547850523256 

 At row:82, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:82, column:139,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:139,the value of plot_cost is         : 3.37875533446125 

 At row:82, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:82, column:140,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:140,the value of plot_cost is         : 3.3406639442726904 

 At row:82, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:82, column:141,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:141,the value of plot_cost is         : 3.303380614486647 

 At row:82, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:82, column:142,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:142,the value of plot_cost is         : 3.2669053451031176 

 At row:82, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:82, column:143,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:143,the value of plot_cost is         : 3.231238136122103 

 At row:82, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:82, column:144,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:144,the value of plot_cost is         : 3.196378987543604 

 At row:82, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:82, column:145,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:145,the value of plot_cost is         : 3.16232789936762 

 At row:82, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:82, column:146,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:146,the value of plot_cost is         : 3.1290848715941513 

 At row:82, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:82, column:147,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:147,the value of plot_cost is         : 3.0966499042231974 

 At row:82, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:82, column:148,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:148,the value of plot_cost is         : 3.0650229972547587 

 At row:82, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:82, column:149,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:149,the value of plot_cost is         : 3.0342041506888346 

 At row:82, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:82, column:150,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:150,the value of plot_cost is         : 3.0041933645254257 

 At row:82, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:82, column:151,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:151,the value of plot_cost is         : 2.974990638764533 

 At row:82, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:82, column:152,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:152,the value of plot_cost is         : 2.946595973406155 

 At row:82, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:82, column:153,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:153,the value of plot_cost is         : 2.9190093684502916 

 At row:82, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:82, column:154,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:154,the value of plot_cost is         : 2.8922308238969427 

 At row:82, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:82, column:155,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:155,the value of plot_cost is         : 2.8662603397461095 

 At row:82, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:82, column:156,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:156,the value of plot_cost is         : 2.8410979159977923 

 At row:82, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:82, column:157,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:157,the value of plot_cost is         : 2.8167435526519893 

 At row:82, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:82, column:158,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:158,the value of plot_cost is         : 2.7931972497087014 

 At row:82, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:82, column:159,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:159,the value of plot_cost is         : 2.770459007167928 

 At row:82, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:82, column:160,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:160,the value of plot_cost is         : 2.74852882502967 

 At row:82, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:82, column:161,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:161,the value of plot_cost is         : 2.7274067032939278 

 At row:82, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:82, column:162,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:162,the value of plot_cost is         : 2.707092641960701 

 At row:82, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:82, column:163,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:163,the value of plot_cost is         : 2.6875866410299882 

 At row:82, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:82, column:164,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:164,the value of plot_cost is         : 2.6688887005017903 

 At row:82, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:82, column:165,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:165,the value of plot_cost is         : 2.6509988203761083 

 At row:82, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:82, column:166,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:166,the value of plot_cost is         : 2.633917000652941 

 At row:82, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:82, column:167,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:167,the value of plot_cost is         : 2.61764324133229 

 At row:82, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:82, column:168,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:168,the value of plot_cost is         : 2.6021775424141524 

 At row:82, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:82, column:169,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:169,the value of plot_cost is         : 2.58751990389853 

 At row:82, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:82, column:170,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:170,the value of plot_cost is         : 2.5736703257854234 

 At row:82, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:82, column:171,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:171,the value of plot_cost is         : 2.5606288080748323 

 At row:82, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:82, column:172,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:172,the value of plot_cost is         : 2.548395350766756 

 At row:82, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:82, column:173,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:173,the value of plot_cost is         : 2.536969953861194 

 At row:82, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:82, column:174,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:174,the value of plot_cost is         : 2.526352617358147 

 At row:82, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:82, column:175,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:175,the value of plot_cost is         : 2.516543341257616 

 At row:82, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:82, column:176,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:176,the value of plot_cost is         : 2.5075421255596 

 At row:82, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:82, column:177,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:177,the value of plot_cost is         : 2.499348970264099 

 At row:82, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:82, column:178,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:178,the value of plot_cost is         : 2.4919638753711126 

 At row:82, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:82, column:179,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:179,the value of plot_cost is         : 2.4853868408806408 

 At row:82, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:82, column:180,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:180,the value of plot_cost is         : 2.479617866792685 

 At row:82, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:82, column:181,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:181,the value of plot_cost is         : 2.4746569531072447 

 At row:82, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:82, column:182,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:182,the value of plot_cost is         : 2.470504099824319 

 At row:82, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:82, column:183,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:183,the value of plot_cost is         : 2.4671593069439086 

 At row:82, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:82, column:184,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:184,the value of plot_cost is         : 2.4646225744660124 

 At row:82, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:82, column:185,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:185,the value of plot_cost is         : 2.462893902390632 

 At row:82, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:82, column:186,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:186,the value of plot_cost is         : 2.461973290717767 

 At row:82, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:82, column:187,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:187,the value of plot_cost is         : 2.461860739447417 

 At row:82, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:82, column:188,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:188,the value of plot_cost is         : 2.4625562485795816 

 At row:82, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:82, column:189,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:189,the value of plot_cost is         : 2.464059818114261 

 At row:82, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:82, column:190,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:190,the value of plot_cost is         : 2.4663714480514556 

 At row:82, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:82, column:191,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:191,the value of plot_cost is         : 2.4694911383911666 

 At row:82, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:82, column:192,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:192,the value of plot_cost is         : 2.4734188891333915 

 At row:82, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:82, column:193,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:193,the value of plot_cost is         : 2.478154700278132 

 At row:82, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:82, column:194,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:194,the value of plot_cost is         : 2.483698571825386 

 At row:82, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:82, column:195,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:195,the value of plot_cost is         : 2.490050503775157 

 At row:82, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:82, column:196,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:196,the value of plot_cost is         : 2.4972104961274426 

 At row:82, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:82, column:197,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:197,the value of plot_cost is         : 2.5051785488822436 

 At row:82, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:82, column:198,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:198,the value of plot_cost is         : 2.513954662039559 

 At row:82, column:199,the value of plot_t0 is           : 3.0
 At row:82, column:199,the value of plot_t1 is           : 0.6482412060301508
 At row:82, column:199,the value of plot_cost is         : 2.5235388355993895 

 At row:83, column:0,the value of plot_t0 is           : -1.0
 At row:83, column:0,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:0,the value of plot_cost is         : 15.936396086678904 

 At row:83, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:83, column:1,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:1,the value of plot_cost is         : 15.788662443589082 

 At row:83, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:83, column:2,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:2,the value of plot_cost is         : 15.641736860901776 

 At row:83, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:83, column:3,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:3,the value of plot_cost is         : 15.495619338616985 

 At row:83, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:83, column:4,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:4,the value of plot_cost is         : 15.350309876734709 

 At row:83, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:83, column:5,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:5,the value of plot_cost is         : 15.205808475254948 

 At row:83, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:83, column:6,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:6,the value of plot_cost is         : 15.062115134177702 

 At row:83, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:83, column:7,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:7,the value of plot_cost is         : 14.919229853502973 

 At row:83, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:83, column:8,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:8,the value of plot_cost is         : 14.777152633230758 

 At row:83, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:83, column:9,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:9,the value of plot_cost is         : 14.635883473361057 

 At row:83, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:83, column:10,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:10,the value of plot_cost is         : 14.49542237389387 

 At row:83, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:83, column:11,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:11,the value of plot_cost is         : 14.355769334829201 

 At row:83, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:83, column:12,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:12,the value of plot_cost is         : 14.216924356167047 

 At row:83, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:83, column:13,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:13,the value of plot_cost is         : 14.078887437907408 

 At row:83, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:83, column:14,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:14,the value of plot_cost is         : 13.94165858005028 

 At row:83, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:83, column:15,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:15,the value of plot_cost is         : 13.805237782595675 

 At row:83, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:83, column:16,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:16,the value of plot_cost is         : 13.669625045543578 

 At row:83, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:83, column:17,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:17,the value of plot_cost is         : 13.534820368893998 

 At row:83, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:83, column:18,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:18,the value of plot_cost is         : 13.400823752646934 

 At row:83, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:83, column:19,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:19,the value of plot_cost is         : 13.267635196802388 

 At row:83, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:83, column:20,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:20,the value of plot_cost is         : 13.135254701360353 

 At row:83, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:83, column:21,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:21,the value of plot_cost is         : 13.003682266320832 

 At row:83, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:83, column:22,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:22,the value of plot_cost is         : 12.872917891683826 

 At row:83, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:83, column:23,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:23,the value of plot_cost is         : 12.74296157744934 

 At row:83, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:83, column:24,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:24,the value of plot_cost is         : 12.613813323617364 

 At row:83, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:83, column:25,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:25,the value of plot_cost is         : 12.485473130187906 

 At row:83, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:83, column:26,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:26,the value of plot_cost is         : 12.357940997160963 

 At row:83, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:83, column:27,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:27,the value of plot_cost is         : 12.23121692453653 

 At row:83, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:83, column:28,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:28,the value of plot_cost is         : 12.10530091231462 

 At row:83, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:83, column:29,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:29,the value of plot_cost is         : 11.980192960495222 

 At row:83, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:83, column:30,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:30,the value of plot_cost is         : 11.85589306907834 

 At row:83, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:83, column:31,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:31,the value of plot_cost is         : 11.732401238063972 

 At row:83, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:83, column:32,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:32,the value of plot_cost is         : 11.609717467452116 

 At row:83, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:83, column:33,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:33,the value of plot_cost is         : 11.487841757242778 

 At row:83, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:83, column:34,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:34,the value of plot_cost is         : 11.366774107435957 

 At row:83, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:83, column:35,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:35,the value of plot_cost is         : 11.246514518031649 

 At row:83, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:83, column:36,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:36,the value of plot_cost is         : 11.127062989029854 

 At row:83, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:83, column:37,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:37,the value of plot_cost is         : 11.008419520430573 

 At row:83, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:83, column:38,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:38,the value of plot_cost is         : 10.890584112233814 

 At row:83, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:83, column:39,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:39,the value of plot_cost is         : 10.773556764439567 

 At row:83, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:83, column:40,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:40,the value of plot_cost is         : 10.657337477047836 

 At row:83, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:83, column:41,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:41,the value of plot_cost is         : 10.541926250058617 

 At row:83, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:83, column:42,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:42,the value of plot_cost is         : 10.427323083471913 

 At row:83, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:83, column:43,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:43,the value of plot_cost is         : 10.313527977287727 

 At row:83, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:83, column:44,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:44,the value of plot_cost is         : 10.200540931506055 

 At row:83, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:83, column:45,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:45,the value of plot_cost is         : 10.088361946126899 

 At row:83, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:83, column:46,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:46,the value of plot_cost is         : 9.976991021150257 

 At row:83, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:83, column:47,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:47,the value of plot_cost is         : 9.866428156576127 

 At row:83, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:83, column:48,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:48,the value of plot_cost is         : 9.756673352404519 

 At row:83, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:83, column:49,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:49,the value of plot_cost is         : 9.647726608635418 

 At row:83, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:83, column:50,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:50,the value of plot_cost is         : 9.539587925268838 

 At row:83, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:83, column:51,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:51,the value of plot_cost is         : 9.432257302304771 

 At row:83, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:83, column:52,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:52,the value of plot_cost is         : 9.325734739743218 

 At row:83, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:83, column:53,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:53,the value of plot_cost is         : 9.220020237584185 

 At row:83, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:83, column:54,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:54,the value of plot_cost is         : 9.115113795827662 

 At row:83, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:83, column:55,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:55,the value of plot_cost is         : 9.011015414473656 

 At row:83, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:83, column:56,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:56,the value of plot_cost is         : 8.907725093522167 

 At row:83, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:83, column:57,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:57,the value of plot_cost is         : 8.80524283297319 

 At row:83, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:83, column:58,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:58,the value of plot_cost is         : 8.703568632826729 

 At row:83, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:83, column:59,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:59,the value of plot_cost is         : 8.602702493082782 

 At row:83, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:83, column:60,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:60,the value of plot_cost is         : 8.50264441374135 

 At row:83, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:83, column:61,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:61,the value of plot_cost is         : 8.403394394802437 

 At row:83, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:83, column:62,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:62,the value of plot_cost is         : 8.304952436266035 

 At row:83, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:83, column:63,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:63,the value of plot_cost is         : 8.207318538132151 

 At row:83, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:83, column:64,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:64,the value of plot_cost is         : 8.11049270040078 

 At row:83, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:83, column:65,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:65,the value of plot_cost is         : 8.014474923071925 

 At row:83, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:83, column:66,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:66,the value of plot_cost is         : 7.919265206145584 

 At row:83, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:83, column:67,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:67,the value of plot_cost is         : 7.8248635496217585 

 At row:83, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:83, column:68,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:68,the value of plot_cost is         : 7.731269953500449 

 At row:83, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:83, column:69,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:69,the value of plot_cost is         : 7.638484417781655 

 At row:83, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:83, column:70,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:70,the value of plot_cost is         : 7.546506942465374 

 At row:83, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:83, column:71,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:71,the value of plot_cost is         : 7.4553375275516105 

 At row:83, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:83, column:72,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:72,the value of plot_cost is         : 7.3649761730403585 

 At row:83, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:83, column:73,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:73,the value of plot_cost is         : 7.275422878931626 

 At row:83, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:83, column:74,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:74,the value of plot_cost is         : 7.186677645225406 

 At row:83, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:83, column:75,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:75,the value of plot_cost is         : 7.098740471921702 

 At row:83, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:83, column:76,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:76,the value of plot_cost is         : 7.011611359020513 

 At row:83, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:83, column:77,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:77,the value of plot_cost is         : 6.925290306521836 

 At row:83, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:83, column:78,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:78,the value of plot_cost is         : 6.839777314425678 

 At row:83, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:83, column:79,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:79,the value of plot_cost is         : 6.755072382732035 

 At row:83, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:83, column:80,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:80,the value of plot_cost is         : 6.6711755114409055 

 At row:83, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:83, column:81,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:81,the value of plot_cost is         : 6.588086700552291 

 At row:83, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:83, column:82,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:82,the value of plot_cost is         : 6.5058059500661924 

 At row:83, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:83, column:83,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:83,the value of plot_cost is         : 6.424333259982608 

 At row:83, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:83, column:84,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:84,the value of plot_cost is         : 6.34366863030154 

 At row:83, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:83, column:85,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:85,the value of plot_cost is         : 6.263812061022986 

 At row:83, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:83, column:86,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:86,the value of plot_cost is         : 6.184763552146949 

 At row:83, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:83, column:87,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:87,the value of plot_cost is         : 6.106523103673425 

 At row:83, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:83, column:88,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:88,the value of plot_cost is         : 6.0290907156024165 

 At row:83, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:83, column:89,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:89,the value of plot_cost is         : 5.952466387933924 

 At row:83, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:83, column:90,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:90,the value of plot_cost is         : 5.876650120667945 

 At row:83, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:83, column:91,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:91,the value of plot_cost is         : 5.801641913804484 

 At row:83, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:83, column:92,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:92,the value of plot_cost is         : 5.727441767343533 

 At row:83, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:83, column:93,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:93,the value of plot_cost is         : 5.654049681285102 

 At row:83, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:83, column:94,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:94,the value of plot_cost is         : 5.581465655629184 

 At row:83, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:83, column:95,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:95,the value of plot_cost is         : 5.509689690375781 

 At row:83, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:83, column:96,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:96,the value of plot_cost is         : 5.438721785524894 

 At row:83, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:83, column:97,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:97,the value of plot_cost is         : 5.368561941076521 

 At row:83, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:83, column:98,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:98,the value of plot_cost is         : 5.299210157030664 

 At row:83, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:83, column:99,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:99,the value of plot_cost is         : 5.230666433387322 

 At row:83, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:83, column:100,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:100,the value of plot_cost is         : 5.162930770146496 

 At row:83, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:83, column:101,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:101,the value of plot_cost is         : 5.096003167308184 

 At row:83, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:83, column:102,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:102,the value of plot_cost is         : 5.029883624872384 

 At row:83, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:83, column:103,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:103,the value of plot_cost is         : 4.964572142839103 

 At row:83, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:83, column:104,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:104,the value of plot_cost is         : 4.900068721208337 

 At row:83, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:83, column:105,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:105,the value of plot_cost is         : 4.836373359980086 

 At row:83, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:83, column:106,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:106,the value of plot_cost is         : 4.773486059154348 

 At row:83, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:83, column:107,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:107,the value of plot_cost is         : 4.711406818731127 

 At row:83, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:83, column:108,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:108,the value of plot_cost is         : 4.650135638710419 

 At row:83, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:83, column:109,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:109,the value of plot_cost is         : 4.589672519092228 

 At row:83, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:83, column:110,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:110,the value of plot_cost is         : 4.530017459876552 

 At row:83, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:83, column:111,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:111,the value of plot_cost is         : 4.471170461063392 

 At row:83, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:83, column:112,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:112,the value of plot_cost is         : 4.413131522652744 

 At row:83, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:83, column:113,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:113,the value of plot_cost is         : 4.3559006446446125 

 At row:83, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:83, column:114,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:114,the value of plot_cost is         : 4.299477827038998 

 At row:83, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:83, column:115,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:115,the value of plot_cost is         : 4.243863069835896 

 At row:83, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:83, column:116,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:116,the value of plot_cost is         : 4.189056373035312 

 At row:83, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:83, column:117,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:117,the value of plot_cost is         : 4.13505773663724 

 At row:83, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:83, column:118,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:118,the value of plot_cost is         : 4.081867160641684 

 At row:83, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:83, column:119,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:119,the value of plot_cost is         : 4.029484645048644 

 At row:83, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:83, column:120,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:120,the value of plot_cost is         : 3.9779101898581186 

 At row:83, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:83, column:121,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:121,the value of plot_cost is         : 3.927143795070109 

 At row:83, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:83, column:122,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:122,the value of plot_cost is         : 3.8771854606846126 

 At row:83, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:83, column:123,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:123,the value of plot_cost is         : 3.8280351867016313 

 At row:83, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:83, column:124,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:124,the value of plot_cost is         : 3.7796929731211675 

 At row:83, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:83, column:125,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:125,the value of plot_cost is         : 3.7321588199432174 

 At row:83, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:83, column:126,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:126,the value of plot_cost is         : 3.6854327271677834 

 At row:83, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:83, column:127,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:127,the value of plot_cost is         : 3.6395146947948622 

 At row:83, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:83, column:128,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:128,the value of plot_cost is         : 3.5944047228244576 

 At row:83, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:83, column:129,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:129,the value of plot_cost is         : 3.550102811256569 

 At row:83, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:83, column:130,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:130,the value of plot_cost is         : 3.5066089600911936 

 At row:83, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:83, column:131,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:131,the value of plot_cost is         : 3.4639231693283343 

 At row:83, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:83, column:132,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:132,the value of plot_cost is         : 3.4220454389679893 

 At row:83, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:83, column:133,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:133,the value of plot_cost is         : 3.3809757690101603 

 At row:83, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:83, column:134,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:134,the value of plot_cost is         : 3.3407141594548464 

 At row:83, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:83, column:135,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:135,the value of plot_cost is         : 3.3012606103020468 

 At row:83, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:83, column:136,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:136,the value of plot_cost is         : 3.2626151215517636 

 At row:83, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:83, column:137,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:137,the value of plot_cost is         : 3.2247776932039938 

 At row:83, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:83, column:138,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:138,the value of plot_cost is         : 3.187748325258739 

 At row:83, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:83, column:139,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:139,the value of plot_cost is         : 3.1515270177160017 

 At row:83, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:83, column:140,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:140,the value of plot_cost is         : 3.1161137705757773 

 At row:83, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:83, column:141,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:141,the value of plot_cost is         : 3.08150858383807 

 At row:83, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:83, column:142,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:142,the value of plot_cost is         : 3.047711457502875 

 At row:83, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:83, column:143,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:143,the value of plot_cost is         : 3.014722391570196 

 At row:83, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:83, column:144,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:144,the value of plot_cost is         : 2.982541386040034 

 At row:83, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:83, column:145,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:145,the value of plot_cost is         : 2.9511684409123853 

 At row:83, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:83, column:146,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:146,the value of plot_cost is         : 2.9206035561872525 

 At row:83, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:83, column:147,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:147,the value of plot_cost is         : 2.890846731864633 

 At row:83, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:83, column:148,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:148,the value of plot_cost is         : 2.86189796794453 

 At row:83, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:83, column:149,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:149,the value of plot_cost is         : 2.8337572644269438 

 At row:83, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:83, column:150,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:150,the value of plot_cost is         : 2.8064246213118706 

 At row:83, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:83, column:151,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:151,the value of plot_cost is         : 2.7799000385993122 

 At row:83, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:83, column:152,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:152,the value of plot_cost is         : 2.75418351628927 

 At row:83, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:83, column:153,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:153,the value of plot_cost is         : 2.729275054381742 

 At row:83, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:83, column:154,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:154,the value of plot_cost is         : 2.70517465287673 

 At row:83, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:83, column:155,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:155,the value of plot_cost is         : 2.6818823117742325 

 At row:83, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:83, column:156,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:156,the value of plot_cost is         : 2.6593980310742498 

 At row:83, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:83, column:157,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:157,the value of plot_cost is         : 2.6377218107767826 

 At row:83, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:83, column:158,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:158,the value of plot_cost is         : 2.61685365088183 

 At row:83, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:83, column:159,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:159,the value of plot_cost is         : 2.596793551389394 

 At row:83, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:83, column:160,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:160,the value of plot_cost is         : 2.5775415122994723 

 At row:83, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:83, column:161,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:161,the value of plot_cost is         : 2.5590975336120643 

 At row:83, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:83, column:162,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:162,the value of plot_cost is         : 2.5414616153271727 

 At row:83, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:83, column:163,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:163,the value of plot_cost is         : 2.524633757444796 

 At row:83, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:83, column:164,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:164,the value of plot_cost is         : 2.508613959964935 

 At row:83, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:83, column:165,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:165,the value of plot_cost is         : 2.493402222887589 

 At row:83, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:83, column:166,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:166,the value of plot_cost is         : 2.478998546212756 

 At row:83, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:83, column:167,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:167,the value of plot_cost is         : 2.4654029299404403 

 At row:83, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:83, column:168,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:168,the value of plot_cost is         : 2.452615374070639 

 At row:83, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:83, column:169,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:169,the value of plot_cost is         : 2.440635878603354 

 At row:83, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:83, column:170,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:170,the value of plot_cost is         : 2.4294644435385826 

 At row:83, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:83, column:171,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:171,the value of plot_cost is         : 2.419101068876326 

 At row:83, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:83, column:172,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:172,the value of plot_cost is         : 2.4095457546165853 

 At row:83, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:83, column:173,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:173,the value of plot_cost is         : 2.400798500759359 

 At row:83, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:83, column:174,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:174,the value of plot_cost is         : 2.392859307304649 

 At row:83, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:83, column:175,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:175,the value of plot_cost is         : 2.3857281742524536 

 At row:83, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:83, column:176,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:176,the value of plot_cost is         : 2.3794051016027717 

 At row:83, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:83, column:177,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:177,the value of plot_cost is         : 2.3738900893556063 

 At row:83, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:83, column:178,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:178,the value of plot_cost is         : 2.369183137510956 

 At row:83, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:83, column:179,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:179,the value of plot_cost is         : 2.3652842460688217 

 At row:83, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:83, column:180,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:180,the value of plot_cost is         : 2.3621934150292017 

 At row:83, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:83, column:181,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:181,the value of plot_cost is         : 2.3599106443920954 

 At row:83, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:83, column:182,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:182,the value of plot_cost is         : 2.3584359341575056 

 At row:83, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:83, column:183,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:183,the value of plot_cost is         : 2.35776928432543 

 At row:83, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:83, column:184,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:184,the value of plot_cost is         : 2.357910694895872 

 At row:83, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:83, column:185,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:185,the value of plot_cost is         : 2.358860165868827 

 At row:83, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:83, column:186,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:186,the value of plot_cost is         : 2.360617697244297 

 At row:83, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:83, column:187,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:187,the value of plot_cost is         : 2.363183289022282 

 At row:83, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:83, column:188,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:188,the value of plot_cost is         : 2.3665569412027825 

 At row:83, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:83, column:189,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:189,the value of plot_cost is         : 2.3707386537857995 

 At row:83, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:83, column:190,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:190,the value of plot_cost is         : 2.3757284267713294 

 At row:83, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:83, column:191,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:191,the value of plot_cost is         : 2.3815262601593745 

 At row:83, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:83, column:192,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:192,the value of plot_cost is         : 2.3881321539499356 

 At row:83, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:83, column:193,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:193,the value of plot_cost is         : 2.395546108143011 

 At row:83, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:83, column:194,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:194,the value of plot_cost is         : 2.4037681227386027 

 At row:83, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:83, column:195,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:195,the value of plot_cost is         : 2.4127981977367097 

 At row:83, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:83, column:196,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:196,the value of plot_cost is         : 2.4226363331373304 

 At row:83, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:83, column:197,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:197,the value of plot_cost is         : 2.4332825289404663 

 At row:83, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:83, column:198,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:198,the value of plot_cost is         : 2.444736785146117 

 At row:83, column:199,the value of plot_t0 is           : 3.0
 At row:83, column:199,the value of plot_t1 is           : 0.6683417085427137
 At row:83, column:199,the value of plot_cost is         : 2.456999101754285 

 At row:84, column:0,the value of plot_t0 is           : -1.0
 At row:84, column:0,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:0,the value of plot_cost is         : 15.349488541054154 

 At row:84, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:84, column:1,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:1,the value of plot_cost is         : 15.20443304101267 

 At row:84, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:84, column:2,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:2,the value of plot_cost is         : 15.0601856013737 

 At row:84, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:84, column:3,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:3,the value of plot_cost is         : 14.916746222137245 

 At row:84, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:84, column:4,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:4,the value of plot_cost is         : 14.774114903303307 

 At row:84, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:84, column:5,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:5,the value of plot_cost is         : 14.632291644871879 

 At row:84, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:84, column:6,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:6,the value of plot_cost is         : 14.491276446842969 

 At row:84, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:84, column:7,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:7,the value of plot_cost is         : 14.351069309216578 

 At row:84, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:84, column:8,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:8,the value of plot_cost is         : 14.211670231992699 

 At row:84, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:84, column:9,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:9,the value of plot_cost is         : 14.073079215171335 

 At row:84, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:84, column:10,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:10,the value of plot_cost is         : 13.935296258752482 

 At row:84, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:84, column:11,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:11,the value of plot_cost is         : 13.798321362736148 

 At row:84, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:84, column:12,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:12,the value of plot_cost is         : 13.66215452712233 

 At row:84, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:84, column:13,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:13,the value of plot_cost is         : 13.526795751911026 

 At row:84, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:84, column:14,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:14,the value of plot_cost is         : 13.392245037102239 

 At row:84, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:84, column:15,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:15,the value of plot_cost is         : 13.258502382695962 

 At row:84, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:84, column:16,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:16,the value of plot_cost is         : 13.125567788692202 

 At row:84, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:84, column:17,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:17,the value of plot_cost is         : 12.993441255090959 

 At row:84, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:84, column:18,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:18,the value of plot_cost is         : 12.862122781892232 

 At row:84, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:84, column:19,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:19,the value of plot_cost is         : 12.73161236909602 

 At row:84, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:84, column:20,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:20,the value of plot_cost is         : 12.60191001670232 

 At row:84, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:84, column:21,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:21,the value of plot_cost is         : 12.473015724711134 

 At row:84, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:84, column:22,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:22,the value of plot_cost is         : 12.344929493122468 

 At row:84, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:84, column:23,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:23,the value of plot_cost is         : 12.217651321936312 

 At row:84, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:84, column:24,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:24,the value of plot_cost is         : 12.091181211152678 

 At row:84, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:84, column:25,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:25,the value of plot_cost is         : 11.965519160771553 

 At row:84, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:84, column:26,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:26,the value of plot_cost is         : 11.84066517079294 

 At row:84, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:84, column:27,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:27,the value of plot_cost is         : 11.71661924121685 

 At row:84, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:84, column:28,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:28,the value of plot_cost is         : 11.593381372043273 

 At row:84, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:84, column:29,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:29,the value of plot_cost is         : 11.470951563272212 

 At row:84, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:84, column:30,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:30,the value of plot_cost is         : 11.349329814903662 

 At row:84, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:84, column:31,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:31,the value of plot_cost is         : 11.228516126937627 

 At row:84, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:84, column:32,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:32,the value of plot_cost is         : 11.108510499374113 

 At row:84, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:84, column:33,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:33,the value of plot_cost is         : 10.989312932213112 

 At row:84, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:84, column:34,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:34,the value of plot_cost is         : 10.870923425454624 

 At row:84, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:84, column:35,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:35,the value of plot_cost is         : 10.753341979098652 

 At row:84, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:84, column:36,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:36,the value of plot_cost is         : 10.636568593145194 

 At row:84, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:84, column:37,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:37,the value of plot_cost is         : 10.520603267594254 

 At row:84, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:84, column:38,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:38,the value of plot_cost is         : 10.405446002445826 

 At row:84, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:84, column:39,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:39,the value of plot_cost is         : 10.291096797699911 

 At row:84, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:84, column:40,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:40,the value of plot_cost is         : 10.177555653356515 

 At row:84, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:84, column:41,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:41,the value of plot_cost is         : 10.064822569415632 

 At row:84, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:84, column:42,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:42,the value of plot_cost is         : 9.952897545877267 

 At row:84, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:84, column:43,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:43,the value of plot_cost is         : 9.841780582741416 

 At row:84, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:84, column:44,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:44,the value of plot_cost is         : 9.73147168000808 

 At row:84, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:84, column:45,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:45,the value of plot_cost is         : 9.621970837677258 

 At row:84, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:84, column:46,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:46,the value of plot_cost is         : 9.51327805574895 

 At row:84, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:84, column:47,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:47,the value of plot_cost is         : 9.405393334223161 

 At row:84, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:84, column:48,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:48,the value of plot_cost is         : 9.298316673099885 

 At row:84, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:84, column:49,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:49,the value of plot_cost is         : 9.192048072379125 

 At row:84, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:84, column:50,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:50,the value of plot_cost is         : 9.086587532060879 

 At row:84, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:84, column:51,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:51,the value of plot_cost is         : 8.981935052145147 

 At row:84, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:84, column:52,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:52,the value of plot_cost is         : 8.878090632631931 

 At row:84, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:84, column:53,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:53,the value of plot_cost is         : 8.775054273521233 

 At row:84, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:84, column:54,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:54,the value of plot_cost is         : 8.672825974813044 

 At row:84, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:84, column:55,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:55,the value of plot_cost is         : 8.571405736507375 

 At row:84, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:84, column:56,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:56,the value of plot_cost is         : 8.47079355860422 

 At row:84, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:84, column:57,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:57,the value of plot_cost is         : 8.37098944110358 

 At row:84, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:84, column:58,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:58,the value of plot_cost is         : 8.271993384005455 

 At row:84, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:84, column:59,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:59,the value of plot_cost is         : 8.173805387309843 

 At row:84, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:84, column:60,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:60,the value of plot_cost is         : 8.076425451016748 

 At row:84, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:84, column:61,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:61,the value of plot_cost is         : 7.9798535751261666 

 At row:84, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:84, column:62,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:62,the value of plot_cost is         : 7.884089759638103 

 At row:84, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:84, column:63,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:63,the value of plot_cost is         : 7.789134004552555 

 At row:84, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:84, column:64,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:64,the value of plot_cost is         : 7.694986309869519 

 At row:84, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:84, column:65,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:65,the value of plot_cost is         : 7.6016466755889995 

 At row:84, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:84, column:66,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:66,the value of plot_cost is         : 7.509115101710995 

 At row:84, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:84, column:67,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:67,the value of plot_cost is         : 7.417391588235505 

 At row:84, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:84, column:68,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:68,the value of plot_cost is         : 7.326476135162532 

 At row:84, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:84, column:69,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:69,the value of plot_cost is         : 7.236368742492072 

 At row:84, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:84, column:70,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:70,the value of plot_cost is         : 7.147069410224128 

 At row:84, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:84, column:71,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:71,the value of plot_cost is         : 7.058578138358698 

 At row:84, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:84, column:72,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:72,the value of plot_cost is         : 6.9708949268957845 

 At row:84, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:84, column:73,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:73,the value of plot_cost is         : 6.8840197758353865 

 At row:84, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:84, column:74,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:74,the value of plot_cost is         : 6.797952685177502 

 At row:84, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:84, column:75,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:75,the value of plot_cost is         : 6.712693654922134 

 At row:84, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:84, column:76,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:76,the value of plot_cost is         : 6.628242685069279 

 At row:84, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:84, column:77,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:77,the value of plot_cost is         : 6.544599775618941 

 At row:84, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:84, column:78,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:78,the value of plot_cost is         : 6.461764926571118 

 At row:84, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:84, column:79,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:79,the value of plot_cost is         : 6.379738137925808 

 At row:84, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:84, column:80,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:80,the value of plot_cost is         : 6.298519409683015 

 At row:84, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:84, column:81,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:81,the value of plot_cost is         : 6.2181087418427365 

 At row:84, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:84, column:82,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:82,the value of plot_cost is         : 6.138506134404975 

 At row:84, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:84, column:83,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:83,the value of plot_cost is         : 6.059711587369728 

 At row:84, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:84, column:84,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:84,the value of plot_cost is         : 5.981725100736995 

 At row:84, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:84, column:85,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:85,the value of plot_cost is         : 5.9045466745067765 

 At row:84, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:84, column:86,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:86,the value of plot_cost is         : 5.8281763086790725 

 At row:84, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:84, column:87,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:87,the value of plot_cost is         : 5.7526140032538855 

 At row:84, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:84, column:88,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:88,the value of plot_cost is         : 5.677859758231214 

 At row:84, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:84, column:89,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:89,the value of plot_cost is         : 5.603913573611056 

 At row:84, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:84, column:90,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:90,the value of plot_cost is         : 5.5307754493934125 

 At row:84, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:84, column:91,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:91,the value of plot_cost is         : 5.458445385578286 

 At row:84, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:84, column:92,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:92,the value of plot_cost is         : 5.386923382165674 

 At row:84, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:84, column:93,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:93,the value of plot_cost is         : 5.316209439155577 

 At row:84, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:84, column:94,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:94,the value of plot_cost is         : 5.2463035565479945 

 At row:84, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:84, column:95,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:95,the value of plot_cost is         : 5.177205734342928 

 At row:84, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:84, column:96,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:96,the value of plot_cost is         : 5.108915972540375 

 At row:84, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:84, column:97,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:97,the value of plot_cost is         : 5.041434271140338 

 At row:84, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:84, column:98,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:98,the value of plot_cost is         : 4.974760630142818 

 At row:84, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:84, column:99,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:99,the value of plot_cost is         : 4.9088950495478105 

 At row:84, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:84, column:100,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:100,the value of plot_cost is         : 4.84383752935532 

 At row:84, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:84, column:101,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:101,the value of plot_cost is         : 4.779588069565342 

 At row:84, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:84, column:102,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:102,the value of plot_cost is         : 4.716146670177881 

 At row:84, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:84, column:103,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:103,the value of plot_cost is         : 4.6535133311929355 

 At row:84, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:84, column:104,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:104,the value of plot_cost is         : 4.591688052610503 

 At row:84, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:84, column:105,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:105,the value of plot_cost is         : 4.530670834430588 

 At row:84, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:84, column:106,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:106,the value of plot_cost is         : 4.470461676653187 

 At row:84, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:84, column:107,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:107,the value of plot_cost is         : 4.4110605792783 

 At row:84, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:84, column:108,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:108,the value of plot_cost is         : 4.352467542305931 

 At row:84, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:84, column:109,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:109,the value of plot_cost is         : 4.294682565736074 

 At row:84, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:84, column:110,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:110,the value of plot_cost is         : 4.237705649568732 

 At row:84, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:84, column:111,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:111,the value of plot_cost is         : 4.181536793803907 

 At row:84, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:84, column:112,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:112,the value of plot_cost is         : 4.126175998441598 

 At row:84, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:84, column:113,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:113,the value of plot_cost is         : 4.071623263481803 

 At row:84, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:84, column:114,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:114,the value of plot_cost is         : 4.017878588924521 

 At row:84, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:84, column:115,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:115,the value of plot_cost is         : 3.964941974769755 

 At row:84, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:84, column:116,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:116,the value of plot_cost is         : 3.9128134210175056 

 At row:84, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:84, column:117,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:117,the value of plot_cost is         : 3.861492927667771 

 At row:84, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:84, column:118,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:118,the value of plot_cost is         : 3.8109804947205523 

 At row:84, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:84, column:119,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:119,the value of plot_cost is         : 3.761276122175846 

 At row:84, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:84, column:120,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:120,the value of plot_cost is         : 3.7123798100336556 

 At row:84, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:84, column:121,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:121,the value of plot_cost is         : 3.6642915582939812 

 At row:84, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:84, column:122,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:122,the value of plot_cost is         : 3.6170113669568225 

 At row:84, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:84, column:123,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:123,the value of plot_cost is         : 3.570539236022179 

 At row:84, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:84, column:124,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:124,the value of plot_cost is         : 3.524875165490048 

 At row:84, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:84, column:125,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:125,the value of plot_cost is         : 3.4800191553604334 

 At row:84, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:84, column:126,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:126,the value of plot_cost is         : 3.4359712056333347 

 At row:84, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:84, column:127,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:127,the value of plot_cost is         : 3.3927313163087516 

 At row:84, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:84, column:128,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:128,the value of plot_cost is         : 3.3502994873866827 

 At row:84, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:84, column:129,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:129,the value of plot_cost is         : 3.308675718867127 

 At row:84, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:84, column:130,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:130,the value of plot_cost is         : 3.267860010750088 

 At row:84, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:84, column:131,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:131,the value of plot_cost is         : 3.2278523630355647 

 At row:84, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:84, column:132,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:132,the value of plot_cost is         : 3.1886527757235568 

 At row:84, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:84, column:133,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:133,the value of plot_cost is         : 3.1502612488140636 

 At row:84, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:84, column:134,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:134,the value of plot_cost is         : 3.1126777823070837 

 At row:84, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:84, column:135,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:135,the value of plot_cost is         : 3.0759023762026194 

 At row:84, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:84, column:136,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:136,the value of plot_cost is         : 3.0399350305006725 

 At row:84, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:84, column:137,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:137,the value of plot_cost is         : 3.00477574520124 

 At row:84, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:84, column:138,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:138,the value of plot_cost is         : 2.970424520304322 

 At row:84, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:84, column:139,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:139,the value of plot_cost is         : 2.936881355809918 

 At row:84, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:84, column:140,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:140,the value of plot_cost is         : 2.9041462517180294 

 At row:84, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:84, column:141,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:141,the value of plot_cost is         : 2.872219208028657 

 At row:84, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:84, column:142,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:142,the value of plot_cost is         : 2.8411002247418 

 At row:84, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:84, column:143,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:143,the value of plot_cost is         : 2.8107893018574575 

 At row:84, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:84, column:144,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:144,the value of plot_cost is         : 2.7812864393756285 

 At row:84, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:84, column:145,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:145,the value of plot_cost is         : 2.7525916372963155 

 At row:84, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:84, column:146,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:146,the value of plot_cost is         : 2.724704895619518 

 At row:84, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:84, column:147,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:147,the value of plot_cost is         : 2.6976262143452368 

 At row:84, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:84, column:148,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:148,the value of plot_cost is         : 2.6713555934734696 

 At row:84, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:84, column:149,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:149,the value of plot_cost is         : 2.6458930330042167 

 At row:84, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:84, column:150,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:150,the value of plot_cost is         : 2.6212385329374794 

 At row:84, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:84, column:151,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:151,the value of plot_cost is         : 2.5973920932732577 

 At row:84, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:84, column:152,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:152,the value of plot_cost is         : 2.5743537140115516 

 At row:84, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:84, column:153,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:153,the value of plot_cost is         : 2.552123395152359 

 At row:84, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:84, column:154,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:154,the value of plot_cost is         : 2.5307011366956815 

 At row:84, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:84, column:155,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:155,the value of plot_cost is         : 2.5100869386415194 

 At row:84, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:84, column:156,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:156,the value of plot_cost is         : 2.490280800989874 

 At row:84, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:84, column:157,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:157,the value of plot_cost is         : 2.471282723740743 

 At row:84, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:84, column:158,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:158,the value of plot_cost is         : 2.453092706894126 

 At row:84, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:84, column:159,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:159,the value of plot_cost is         : 2.4357107504500246 

 At row:84, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:84, column:160,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:160,the value of plot_cost is         : 2.4191368544084377 

 At row:84, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:84, column:161,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:161,the value of plot_cost is         : 2.4033710187693678 

 At row:84, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:84, column:162,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:162,the value of plot_cost is         : 2.3884132435328116 

 At row:84, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:84, column:163,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:163,the value of plot_cost is         : 2.3742635286987706 

 At row:84, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:84, column:164,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:164,the value of plot_cost is         : 2.360921874267244 

 At row:84, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:84, column:165,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:165,the value of plot_cost is         : 2.348388280238233 

 At row:84, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:84, column:166,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:166,the value of plot_cost is         : 2.336662746611738 

 At row:84, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:84, column:167,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:167,the value of plot_cost is         : 2.3257452733877577 

 At row:84, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:84, column:168,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:168,the value of plot_cost is         : 2.3156358605662923 

 At row:84, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:84, column:169,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:169,the value of plot_cost is         : 2.3063345081473408 

 At row:84, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:84, column:170,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:170,the value of plot_cost is         : 2.297841216130905 

 At row:84, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:84, column:171,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:171,the value of plot_cost is         : 2.290155984516986 

 At row:84, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:84, column:172,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:172,the value of plot_cost is         : 2.283278813305581 

 At row:84, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:84, column:173,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:173,the value of plot_cost is         : 2.2772097024966906 

 At row:84, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:84, column:174,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:174,the value of plot_cost is         : 2.2719486520903147 

 At row:84, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:84, column:175,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:175,the value of plot_cost is         : 2.267495662086455 

 At row:84, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:84, column:176,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:176,the value of plot_cost is         : 2.2638507324851105 

 At row:84, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:84, column:177,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:177,the value of plot_cost is         : 2.2610138632862813 

 At row:84, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:84, column:178,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:178,the value of plot_cost is         : 2.258985054489967 

 At row:84, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:84, column:179,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:179,the value of plot_cost is         : 2.257764306096166 

 At row:84, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:84, column:180,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:180,the value of plot_cost is         : 2.2573516181048814 

 At row:84, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:84, column:181,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:181,the value of plot_cost is         : 2.257746990516113 

 At row:84, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:84, column:182,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:182,the value of plot_cost is         : 2.2589504233298583 

 At row:84, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:84, column:183,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:183,the value of plot_cost is         : 2.2609619165461194 

 At row:84, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:84, column:184,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:184,the value of plot_cost is         : 2.2637814701648944 

 At row:84, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:84, column:185,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:185,the value of plot_cost is         : 2.2674090841861854 

 At row:84, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:84, column:186,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:186,the value of plot_cost is         : 2.2718447586099924 

 At row:84, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:84, column:187,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:187,the value of plot_cost is         : 2.277088493436313 

 At row:84, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:84, column:188,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:188,the value of plot_cost is         : 2.2831402886651495 

 At row:84, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:84, column:189,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:189,the value of plot_cost is         : 2.2900001442965 

 At row:84, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:84, column:190,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:190,the value of plot_cost is         : 2.2976680603303667 

 At row:84, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:84, column:191,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:191,the value of plot_cost is         : 2.306144036766749 

 At row:84, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:84, column:192,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:192,the value of plot_cost is         : 2.3154280736056454 

 At row:84, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:84, column:193,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:193,the value of plot_cost is         : 2.3255201708470565 

 At row:84, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:84, column:194,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:194,the value of plot_cost is         : 2.3364203284909837 

 At row:84, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:84, column:195,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:195,the value of plot_cost is         : 2.3481285465374246 

 At row:84, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:84, column:196,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:196,the value of plot_cost is         : 2.3606448249863825 

 At row:84, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:84, column:197,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:197,the value of plot_cost is         : 2.373969163837854 

 At row:84, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:84, column:198,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:198,the value of plot_cost is         : 2.3881015630918414 

 At row:84, column:199,the value of plot_t0 is           : 3.0
 At row:84, column:199,the value of plot_t1 is           : 0.6884422110552764
 At row:84, column:199,the value of plot_cost is         : 2.4030420227483433 

 At row:85, column:0,the value of plot_t0 is           : -1.0
 At row:85, column:0,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:0,the value of plot_cost is         : 14.775163650268567 

 At row:85, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:85, column:1,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:1,the value of plot_cost is         : 14.632786293275416 

 At row:85, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:85, column:2,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:2,the value of plot_cost is         : 14.491216996684784 

 At row:85, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:85, column:3,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:3,the value of plot_cost is         : 14.350455760496665 

 At row:85, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:85, column:4,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:4,the value of plot_cost is         : 14.210502584711062 

 At row:85, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:85, column:5,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:5,the value of plot_cost is         : 14.071357469327971 

 At row:85, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:85, column:6,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:6,the value of plot_cost is         : 13.933020414347396 

 At row:85, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:85, column:7,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:7,the value of plot_cost is         : 13.79549141976934 

 At row:85, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:85, column:8,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:8,the value of plot_cost is         : 13.658770485593795 

 At row:85, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:85, column:9,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:9,the value of plot_cost is         : 13.522857611820768 

 At row:85, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:85, column:10,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:10,the value of plot_cost is         : 13.387752798450254 

 At row:85, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:85, column:11,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:11,the value of plot_cost is         : 13.253456045482249 

 At row:85, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:85, column:12,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:12,the value of plot_cost is         : 13.11996735291677 

 At row:85, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:85, column:13,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:13,the value of plot_cost is         : 12.9872867207538 

 At row:85, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:85, column:14,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:14,the value of plot_cost is         : 12.85541414899335 

 At row:85, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:85, column:15,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:15,the value of plot_cost is         : 12.72434963763541 

 At row:85, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:85, column:16,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:16,the value of plot_cost is         : 12.594093186679986 

 At row:85, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:85, column:17,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:17,the value of plot_cost is         : 12.464644796127077 

 At row:85, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:85, column:18,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:18,the value of plot_cost is         : 12.336004465976686 

 At row:85, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:85, column:19,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:19,the value of plot_cost is         : 12.208172196228809 

 At row:85, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:85, column:20,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:20,the value of plot_cost is         : 12.081147986883444 

 At row:85, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:85, column:21,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:21,the value of plot_cost is         : 11.954931837940595 

 At row:85, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:85, column:22,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:22,the value of plot_cost is         : 11.829523749400263 

 At row:85, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:85, column:23,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:23,the value of plot_cost is         : 11.704923721262446 

 At row:85, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:85, column:24,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:24,the value of plot_cost is         : 11.581131753527142 

 At row:85, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:85, column:25,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:25,the value of plot_cost is         : 11.458147846194356 

 At row:85, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:85, column:26,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:26,the value of plot_cost is         : 11.335971999264082 

 At row:85, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:85, column:27,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:27,the value of plot_cost is         : 11.214604212736326 

 At row:85, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:85, column:28,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:28,the value of plot_cost is         : 11.094044486611084 

 At row:85, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:85, column:29,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:29,the value of plot_cost is         : 10.974292820888358 

 At row:85, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:85, column:30,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:30,the value of plot_cost is         : 10.855349215568145 

 At row:85, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:85, column:31,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:31,the value of plot_cost is         : 10.737213670650448 

 At row:85, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:85, column:32,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:32,the value of plot_cost is         : 10.619886186135266 

 At row:85, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:85, column:33,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:33,the value of plot_cost is         : 10.503366762022601 

 At row:85, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:85, column:34,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:34,the value of plot_cost is         : 10.38765539831245 

 At row:85, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:85, column:35,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:35,the value of plot_cost is         : 10.272752095004812 

 At row:85, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:85, column:36,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:36,the value of plot_cost is         : 10.15865685209969 

 At row:85, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:85, column:37,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:37,the value of plot_cost is         : 10.045369669597084 

 At row:85, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:85, column:38,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:38,the value of plot_cost is         : 9.932890547496994 

 At row:85, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:85, column:39,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:39,the value of plot_cost is         : 9.821219485799418 

 At row:85, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:85, column:40,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:40,the value of plot_cost is         : 9.710356484504358 

 At row:85, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:85, column:41,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:41,the value of plot_cost is         : 9.60030154361181 

 At row:85, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:85, column:42,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:42,the value of plot_cost is         : 9.491054663121778 

 At row:85, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:85, column:43,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:43,the value of plot_cost is         : 9.382615843034264 

 At row:85, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:85, column:44,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:44,the value of plot_cost is         : 9.274985083349263 

 At row:85, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:85, column:45,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:45,the value of plot_cost is         : 9.168162384066777 

 At row:85, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:85, column:46,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:46,the value of plot_cost is         : 9.062147745186806 

 At row:85, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:85, column:47,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:47,the value of plot_cost is         : 8.95694116670935 

 At row:85, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:85, column:48,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:48,the value of plot_cost is         : 8.852542648634412 

 At row:85, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:85, column:49,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:49,the value of plot_cost is         : 8.748952190961985 

 At row:85, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:85, column:50,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:50,the value of plot_cost is         : 8.646169793692076 

 At row:85, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:85, column:51,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:51,the value of plot_cost is         : 8.544195456824678 

 At row:85, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:85, column:52,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:52,the value of plot_cost is         : 8.443029180359801 

 At row:85, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:85, column:53,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:53,the value of plot_cost is         : 8.342670964297435 

 At row:85, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:85, column:54,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:54,the value of plot_cost is         : 8.243120808637586 

 At row:85, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:85, column:55,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:55,the value of plot_cost is         : 8.14437871338025 

 At row:85, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:85, column:56,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:56,the value of plot_cost is         : 8.04644467852543 

 At row:85, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:85, column:57,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:57,the value of plot_cost is         : 7.949318704073125 

 At row:85, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:85, column:58,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:58,the value of plot_cost is         : 7.853000790023339 

 At row:85, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:85, column:59,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:59,the value of plot_cost is         : 7.757490936376062 

 At row:85, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:85, column:60,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:60,the value of plot_cost is         : 7.662789143131302 

 At row:85, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:85, column:61,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:61,the value of plot_cost is         : 7.568895410289057 

 At row:85, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:85, column:62,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:62,the value of plot_cost is         : 7.47580973784933 

 At row:85, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:85, column:63,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:63,the value of plot_cost is         : 7.383532125812117 

 At row:85, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:85, column:64,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:64,the value of plot_cost is         : 7.292062574177416 

 At row:85, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:85, column:65,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:65,the value of plot_cost is         : 7.201401082945233 

 At row:85, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:85, column:66,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:66,the value of plot_cost is         : 7.111547652115563 

 At row:85, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:85, column:67,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:67,the value of plot_cost is         : 7.022502281688411 

 At row:85, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:85, column:68,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:68,the value of plot_cost is         : 6.934264971663772 

 At row:85, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:85, column:69,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:69,the value of plot_cost is         : 6.846835722041647 

 At row:85, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:85, column:70,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:70,the value of plot_cost is         : 6.76021453282204 

 At row:85, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:85, column:71,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:71,the value of plot_cost is         : 6.674401404004945 

 At row:85, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:85, column:72,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:72,the value of plot_cost is         : 6.589396335590368 

 At row:85, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:85, column:73,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:73,the value of plot_cost is         : 6.505199327578306 

 At row:85, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:85, column:74,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:74,the value of plot_cost is         : 6.421810379968757 

 At row:85, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:85, column:75,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:75,the value of plot_cost is         : 6.339229492761724 

 At row:85, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:85, column:76,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:76,the value of plot_cost is         : 6.257456665957204 

 At row:85, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:85, column:77,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:77,the value of plot_cost is         : 6.176491899555203 

 At row:85, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:85, column:78,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:78,the value of plot_cost is         : 6.096335193555717 

 At row:85, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:85, column:79,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:79,the value of plot_cost is         : 6.016986547958742 

 At row:85, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:85, column:80,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:80,the value of plot_cost is         : 5.938445962764286 

 At row:85, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:85, column:81,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:81,the value of plot_cost is         : 5.860713437972342 

 At row:85, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:85, column:82,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:82,the value of plot_cost is         : 5.783788973582915 

 At row:85, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:85, column:83,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:83,the value of plot_cost is         : 5.707672569596004 

 At row:85, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:85, column:84,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:84,the value of plot_cost is         : 5.632364226011606 

 At row:85, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:85, column:85,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:85,the value of plot_cost is         : 5.557863942829724 

 At row:85, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:85, column:86,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:86,the value of plot_cost is         : 5.484171720050356 

 At row:85, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:85, column:87,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:87,the value of plot_cost is         : 5.411287557673505 

 At row:85, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:85, column:88,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:88,the value of plot_cost is         : 5.339211455699169 

 At row:85, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:85, column:89,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:89,the value of plot_cost is         : 5.2679434141273465 

 At row:85, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:85, column:90,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:90,the value of plot_cost is         : 5.19748343295804 

 At row:85, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:85, column:91,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:91,the value of plot_cost is         : 5.127831512191247 

 At row:85, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:85, column:92,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:92,the value of plot_cost is         : 5.058987651826972 

 At row:85, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:85, column:93,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:93,the value of plot_cost is         : 4.990951851865211 

 At row:85, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:85, column:94,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:94,the value of plot_cost is         : 4.923724112305964 

 At row:85, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:85, column:95,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:95,the value of plot_cost is         : 4.857304433149233 

 At row:85, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:85, column:96,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:96,the value of plot_cost is         : 4.791692814395016 

 At row:85, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:85, column:97,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:97,the value of plot_cost is         : 4.726889256043315 

 At row:85, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:85, column:98,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:98,the value of plot_cost is         : 4.66289375809413 

 At row:85, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:85, column:99,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:99,the value of plot_cost is         : 4.599706320547458 

 At row:85, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:85, column:100,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:100,the value of plot_cost is         : 4.537326943403304 

 At row:85, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:85, column:101,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:101,the value of plot_cost is         : 4.475755626661662 

 At row:85, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:85, column:102,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:102,the value of plot_cost is         : 4.414992370322537 

 At row:85, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:85, column:103,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:103,the value of plot_cost is         : 4.355037174385927 

 At row:85, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:85, column:104,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:104,the value of plot_cost is         : 4.29589003885183 

 At row:85, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:85, column:105,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:105,the value of plot_cost is         : 4.237550963720251 

 At row:85, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:85, column:106,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:106,the value of plot_cost is         : 4.180019948991184 

 At row:85, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:85, column:107,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:107,the value of plot_cost is         : 4.123296994664635 

 At row:85, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:85, column:108,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:108,the value of plot_cost is         : 4.067382100740601 

 At row:85, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:85, column:109,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:109,the value of plot_cost is         : 4.012275267219079 

 At row:85, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:85, column:110,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:110,the value of plot_cost is         : 3.9579764941000732 

 At row:85, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:85, column:111,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:111,the value of plot_cost is         : 3.9044857813835847 

 At row:85, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:85, column:112,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:112,the value of plot_cost is         : 3.85180312906961 

 At row:85, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:85, column:113,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:113,the value of plot_cost is         : 3.7999285371581513 

 At row:85, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:85, column:114,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:114,the value of plot_cost is         : 3.748862005649206 

 At row:85, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:85, column:115,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:115,the value of plot_cost is         : 3.6986035345427752 

 At row:85, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:85, column:116,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:116,the value of plot_cost is         : 3.6491531238388615 

 At row:85, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:85, column:117,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:117,the value of plot_cost is         : 3.6005107735374633 

 At row:85, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:85, column:118,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:118,the value of plot_cost is         : 3.5526764836385794 

 At row:85, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:85, column:119,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:119,the value of plot_cost is         : 3.505650254142209 

 At row:85, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:85, column:120,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:120,the value of plot_cost is         : 3.459432085048354 

 At row:85, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:85, column:121,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:121,the value of plot_cost is         : 3.4140219763570165 

 At row:85, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:85, column:122,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:122,the value of plot_cost is         : 3.3694199280681936 

 At row:85, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:85, column:123,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:123,the value of plot_cost is         : 3.325625940181885 

 At row:85, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:85, column:124,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:124,the value of plot_cost is         : 3.2826400126980895 

 At row:85, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:85, column:125,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:125,the value of plot_cost is         : 3.240462145616811 

 At row:85, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:85, column:126,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:126,the value of plot_cost is         : 3.199092338938048 

 At row:85, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:85, column:127,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:127,the value of plot_cost is         : 3.1585305926617995 

 At row:85, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:85, column:128,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:128,the value of plot_cost is         : 3.1187769067880673 

 At row:85, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:85, column:129,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:129,the value of plot_cost is         : 3.0798312813168476 

 At row:85, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:85, column:130,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:130,the value of plot_cost is         : 3.041693716248144 

 At row:85, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:85, column:131,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:131,the value of plot_cost is         : 3.0043642115819567 

 At row:85, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:85, column:132,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:132,the value of plot_cost is         : 2.9678427673182846 

 At row:85, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:85, column:133,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:133,the value of plot_cost is         : 2.9321293834571263 

 At row:85, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:85, column:134,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:134,the value of plot_cost is         : 2.8972240599984826 

 At row:85, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:85, column:135,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:135,the value of plot_cost is         : 2.8631267969423546 

 At row:85, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:85, column:136,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:136,the value of plot_cost is         : 2.829837594288742 

 At row:85, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:85, column:137,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:137,the value of plot_cost is         : 2.7973564520376457 

 At row:85, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:85, column:138,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:138,the value of plot_cost is         : 2.765683370189063 

 At row:85, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:85, column:139,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:139,the value of plot_cost is         : 2.734818348742995 

 At row:85, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:85, column:140,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:140,the value of plot_cost is         : 2.7047613876994427 

 At row:85, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:85, column:141,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:141,the value of plot_cost is         : 2.6755124870584064 

 At row:85, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:85, column:142,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:142,the value of plot_cost is         : 2.6470716468198847 

 At row:85, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:85, column:143,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:143,the value of plot_cost is         : 2.6194388669838777 

 At row:85, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:85, column:144,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:144,the value of plot_cost is         : 2.592614147550385 

 At row:85, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:85, column:145,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:145,the value of plot_cost is         : 2.566597488519408 

 At row:85, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:85, column:146,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:146,the value of plot_cost is         : 2.5413888898909462 

 At row:85, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:85, column:147,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:147,the value of plot_cost is         : 2.5169883516650002 

 At row:85, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:85, column:148,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:148,the value of plot_cost is         : 2.493395873841569 

 At row:85, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:85, column:149,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:149,the value of plot_cost is         : 2.470611456420652 

 At row:85, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:85, column:150,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:150,the value of plot_cost is         : 2.44863509940225 

 At row:85, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:85, column:151,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:151,the value of plot_cost is         : 2.427466802786364 

 At row:85, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:85, column:152,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:152,the value of plot_cost is         : 2.407106566572993 

 At row:85, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:85, column:153,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:153,the value of plot_cost is         : 2.3875543907621375 

 At row:85, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:85, column:154,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:154,the value of plot_cost is         : 2.3688102753537956 

 At row:85, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:85, column:155,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:155,the value of plot_cost is         : 2.3508742203479693 

 At row:85, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:85, column:156,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:156,the value of plot_cost is         : 2.333746225744659 

 At row:85, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:85, column:157,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:157,the value of plot_cost is         : 2.3174262915438635 

 At row:85, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:85, column:158,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:158,the value of plot_cost is         : 2.301914417745583 

 At row:85, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:85, column:159,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:159,the value of plot_cost is         : 2.287210604349817 

 At row:85, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:85, column:160,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:160,the value of plot_cost is         : 2.273314851356566 

 At row:85, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:85, column:161,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:161,the value of plot_cost is         : 2.260227158765831 

 At row:85, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:85, column:162,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:162,the value of plot_cost is         : 2.2479475265776108 

 At row:85, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:85, column:163,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:163,the value of plot_cost is         : 2.236475954791906 

 At row:85, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:85, column:164,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:164,the value of plot_cost is         : 2.225812443408715 

 At row:85, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:85, column:165,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:165,the value of plot_cost is         : 2.21595699242804 

 At row:85, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:85, column:166,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:166,the value of plot_cost is         : 2.20690960184988 

 At row:85, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:85, column:167,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:167,the value of plot_cost is         : 2.1986702716742355 

 At row:85, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:85, column:168,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:168,the value of plot_cost is         : 2.1912390019011063 

 At row:85, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:85, column:169,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:169,the value of plot_cost is         : 2.1846157925304905 

 At row:85, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:85, column:170,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:170,the value of plot_cost is         : 2.1788006435623912 

 At row:85, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:85, column:171,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:171,the value of plot_cost is         : 2.173793554996806 

 At row:85, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:85, column:172,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:172,the value of plot_cost is         : 2.1695945268337375 

 At row:85, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:85, column:173,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:173,the value of plot_cost is         : 2.166203559073183 

 At row:85, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:85, column:174,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:174,the value of plot_cost is         : 2.1636206517151435 

 At row:85, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:85, column:175,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:175,the value of plot_cost is         : 2.161845804759619 

 At row:85, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:85, column:176,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:176,the value of plot_cost is         : 2.1608790182066104 

 At row:85, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:85, column:177,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:177,the value of plot_cost is         : 2.160720292056116 

 At row:85, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:85, column:178,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:178,the value of plot_cost is         : 2.161369626308138 

 At row:85, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:85, column:179,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:179,the value of plot_cost is         : 2.1628270209626734 

 At row:85, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:85, column:180,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:180,the value of plot_cost is         : 2.1650924760197245 

 At row:85, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:85, column:181,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:181,the value of plot_cost is         : 2.1681659914792912 

 At row:85, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:85, column:182,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:182,the value of plot_cost is         : 2.1720475673413726 

 At row:85, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:85, column:183,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:183,the value of plot_cost is         : 2.176737203605969 

 At row:85, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:85, column:184,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:184,the value of plot_cost is         : 2.1822349002730803 

 At row:85, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:85, column:185,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:185,the value of plot_cost is         : 2.188540657342707 

 At row:85, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:85, column:186,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:186,the value of plot_cost is         : 2.1956544748148494 

 At row:85, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:85, column:187,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:187,the value of plot_cost is         : 2.203576352689506 

 At row:85, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:85, column:188,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:188,the value of plot_cost is         : 2.2123062909666777 

 At row:85, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:85, column:189,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:189,the value of plot_cost is         : 2.2218442896463646 

 At row:85, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:85, column:190,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:190,the value of plot_cost is         : 2.232190348728567 

 At row:85, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:85, column:191,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:191,the value of plot_cost is         : 2.2433444682132846 

 At row:85, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:85, column:192,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:192,the value of plot_cost is         : 2.2553066481005164 

 At row:85, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:85, column:193,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:193,the value of plot_cost is         : 2.268076888390264 

 At row:85, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:85, column:194,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:194,the value of plot_cost is         : 2.2816551890825263 

 At row:85, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:85, column:195,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:195,the value of plot_cost is         : 2.296041550177304 

 At row:85, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:85, column:196,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:196,the value of plot_cost is         : 2.3112359716745967 

 At row:85, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:85, column:197,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:197,the value of plot_cost is         : 2.327238453574404 

 At row:85, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:85, column:198,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:198,the value of plot_cost is         : 2.344048995876727 

 At row:85, column:199,the value of plot_t0 is           : 3.0
 At row:85, column:199,the value of plot_t1 is           : 0.7085427135678393
 At row:85, column:199,the value of plot_cost is         : 2.361667598581564 

 At row:86, column:0,the value of plot_t0 is           : -1.0
 At row:86, column:0,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:0,the value of plot_cost is         : 14.213421414322148 

 At row:86, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:86, column:1,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:1,the value of plot_cost is         : 14.073722200377334 

 At row:86, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:86, column:2,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:2,the value of plot_cost is         : 13.934831046835036 

 At row:86, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:86, column:3,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:3,the value of plot_cost is         : 13.796747953695254 

 At row:86, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:86, column:4,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:4,the value of plot_cost is         : 13.659472920957986 

 At row:86, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:86, column:5,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:5,the value of plot_cost is         : 13.523005948623231 

 At row:86, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:86, column:6,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:6,the value of plot_cost is         : 13.387347036690993 

 At row:86, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:86, column:7,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:7,the value of plot_cost is         : 13.252496185161268 

 At row:86, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:86, column:8,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:8,the value of plot_cost is         : 13.118453394034065 

 At row:86, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:86, column:9,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:9,the value of plot_cost is         : 12.98521866330937 

 At row:86, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:86, column:10,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:10,the value of plot_cost is         : 12.852791992987193 

 At row:86, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:86, column:11,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:11,the value of plot_cost is         : 12.721173383067526 

 At row:86, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:86, column:12,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:12,the value of plot_cost is         : 12.590362833550378 

 At row:86, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:86, column:13,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:13,the value of plot_cost is         : 12.460360344435747 

 At row:86, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:86, column:14,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:14,the value of plot_cost is         : 12.33116591572363 

 At row:86, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:86, column:15,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:15,the value of plot_cost is         : 12.202779547414027 

 At row:86, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:86, column:16,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:16,the value of plot_cost is         : 12.075201239506939 

 At row:86, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:86, column:17,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:17,the value of plot_cost is         : 11.948430992002365 

 At row:86, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:86, column:18,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:18,the value of plot_cost is         : 11.82246880490031 

 At row:86, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:86, column:19,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:19,the value of plot_cost is         : 11.697314678200769 

 At row:86, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:86, column:20,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:20,the value of plot_cost is         : 11.57296861190374 

 At row:86, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:86, column:21,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:21,the value of plot_cost is         : 11.449430606009226 

 At row:86, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:86, column:22,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:22,the value of plot_cost is         : 11.326700660517231 

 At row:86, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:86, column:23,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:23,the value of plot_cost is         : 11.20477877542775 

 At row:86, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:86, column:24,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:24,the value of plot_cost is         : 11.083664950740785 

 At row:86, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:86, column:25,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:25,the value of plot_cost is         : 10.963359186456332 

 At row:86, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:86, column:26,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:26,the value of plot_cost is         : 10.843861482574395 

 At row:86, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:86, column:27,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:27,the value of plot_cost is         : 10.725171839094973 

 At row:86, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:86, column:28,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:28,the value of plot_cost is         : 10.607290256018066 

 At row:86, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:86, column:29,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:29,the value of plot_cost is         : 10.490216733343676 

 At row:86, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:86, column:30,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:30,the value of plot_cost is         : 10.373951271071798 

 At row:86, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:86, column:31,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:31,the value of plot_cost is         : 10.25849386920244 

 At row:86, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:86, column:32,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:32,the value of plot_cost is         : 10.14384452773559 

 At row:86, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:86, column:33,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:33,the value of plot_cost is         : 10.030003246671262 

 At row:86, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:86, column:34,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:34,the value of plot_cost is         : 9.916970026009446 

 At row:86, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:86, column:35,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:35,the value of plot_cost is         : 9.804744865750145 

 At row:86, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:86, column:36,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:36,the value of plot_cost is         : 9.693327765893358 

 At row:86, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:86, column:37,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:37,the value of plot_cost is         : 9.582718726439087 

 At row:86, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:86, column:38,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:38,the value of plot_cost is         : 9.472917747387333 

 At row:86, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:86, column:39,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:39,the value of plot_cost is         : 9.36392482873809 

 At row:86, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:86, column:40,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:40,the value of plot_cost is         : 9.255739970491366 

 At row:86, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:86, column:41,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:41,the value of plot_cost is         : 9.148363172647155 

 At row:86, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:86, column:42,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:42,the value of plot_cost is         : 9.04179443520546 

 At row:86, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:86, column:43,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:43,the value of plot_cost is         : 8.936033758166282 

 At row:86, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:86, column:44,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:44,the value of plot_cost is         : 8.831081141529614 

 At row:86, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:86, column:45,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:45,the value of plot_cost is         : 8.726936585295466 

 At row:86, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:86, column:46,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:46,the value of plot_cost is         : 8.62360008946383 

 At row:86, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:86, column:47,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:47,the value of plot_cost is         : 8.521071654034712 

 At row:86, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:86, column:48,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:48,the value of plot_cost is         : 8.419351279008108 

 At row:86, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:86, column:49,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:49,the value of plot_cost is         : 8.318438964384017 

 At row:86, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:86, column:50,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:50,the value of plot_cost is         : 8.218334710162443 

 At row:86, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:86, column:51,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:51,the value of plot_cost is         : 8.119038516343382 

 At row:86, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:86, column:52,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:52,the value of plot_cost is         : 8.020550382926837 

 At row:86, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:86, column:53,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:53,the value of plot_cost is         : 7.922870309912811 

 At row:86, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:86, column:54,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:54,the value of plot_cost is         : 7.825998297301294 

 At row:86, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:86, column:55,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:55,the value of plot_cost is         : 7.729934345092297 

 At row:86, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:86, column:56,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:56,the value of plot_cost is         : 7.634678453285812 

 At row:86, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:86, column:57,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:57,the value of plot_cost is         : 7.540230621881842 

 At row:86, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:86, column:58,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:58,the value of plot_cost is         : 7.446590850880391 

 At row:86, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:86, column:59,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:59,the value of plot_cost is         : 7.353759140281451 

 At row:86, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:86, column:60,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:60,the value of plot_cost is         : 7.2617354900850275 

 At row:86, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:86, column:61,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:61,the value of plot_cost is         : 7.1705199002911195 

 At row:86, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:86, column:62,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:62,the value of plot_cost is         : 7.080112370899725 

 At row:86, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:86, column:63,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:63,the value of plot_cost is         : 6.990512901910848 

 At row:86, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:86, column:64,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:64,the value of plot_cost is         : 6.901721493324483 

 At row:86, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:86, column:65,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:65,the value of plot_cost is         : 6.813738145140635 

 At row:86, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:86, column:66,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:66,the value of plot_cost is         : 6.726562857359302 

 At row:86, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:86, column:67,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:67,the value of plot_cost is         : 6.640195629980484 

 At row:86, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:86, column:68,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:68,the value of plot_cost is         : 6.554636463004182 

 At row:86, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:86, column:69,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:69,the value of plot_cost is         : 6.469885356430392 

 At row:86, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:86, column:70,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:70,the value of plot_cost is         : 6.3859423102591215 

 At row:86, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:86, column:71,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:71,the value of plot_cost is         : 6.302807324490363 

 At row:86, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:86, column:72,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:72,the value of plot_cost is         : 6.220480399124121 

 At row:86, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:86, column:73,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:73,the value of plot_cost is         : 6.138961534160395 

 At row:86, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:86, column:74,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:74,the value of plot_cost is         : 6.05825072959918 

 At row:86, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:86, column:75,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:75,the value of plot_cost is         : 5.978347985440483 

 At row:86, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:86, column:76,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:76,the value of plot_cost is         : 5.8992533016843005 

 At row:86, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:86, column:77,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:77,the value of plot_cost is         : 5.820966678330635 

 At row:86, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:86, column:78,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:78,the value of plot_cost is         : 5.743488115379481 

 At row:86, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:86, column:79,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:79,the value of plot_cost is         : 5.666817612830845 

 At row:86, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:86, column:80,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:80,the value of plot_cost is         : 5.590955170684724 

 At row:86, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:86, column:81,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:81,the value of plot_cost is         : 5.515900788941117 

 At row:86, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:86, column:82,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:82,the value of plot_cost is         : 5.441654467600025 

 At row:86, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:86, column:83,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:83,the value of plot_cost is         : 5.368216206661447 

 At row:86, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:86, column:84,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:84,the value of plot_cost is         : 5.295586006125386 

 At row:86, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:86, column:85,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:85,the value of plot_cost is         : 5.223763865991841 

 At row:86, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:86, column:86,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:86,the value of plot_cost is         : 5.152749786260809 

 At row:86, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:86, column:87,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:87,the value of plot_cost is         : 5.082543766932293 

 At row:86, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:86, column:88,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:88,the value of plot_cost is         : 5.013145808006292 

 At row:86, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:86, column:89,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:89,the value of plot_cost is         : 4.944555909482805 

 At row:86, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:86, column:90,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:90,the value of plot_cost is         : 4.876774071361836 

 At row:86, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:86, column:91,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:91,the value of plot_cost is         : 4.809800293643379 

 At row:86, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:86, column:92,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:92,the value of plot_cost is         : 4.743634576327438 

 At row:86, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:86, column:93,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:93,the value of plot_cost is         : 4.678276919414012 

 At row:86, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:86, column:94,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:94,the value of plot_cost is         : 4.613727322903102 

 At row:86, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:86, column:95,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:95,the value of plot_cost is         : 4.549985786794706 

 At row:86, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:86, column:96,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:96,the value of plot_cost is         : 4.487052311088826 

 At row:86, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:86, column:97,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:97,the value of plot_cost is         : 4.42492689578546 

 At row:86, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:86, column:98,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:98,the value of plot_cost is         : 4.36360954088461 

 At row:86, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:86, column:99,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:99,the value of plot_cost is         : 4.303100246386275 

 At row:86, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:86, column:100,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:100,the value of plot_cost is         : 4.243399012290456 

 At row:86, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:86, column:101,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:101,the value of plot_cost is         : 4.18450583859715 

 At row:86, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:86, column:102,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:102,the value of plot_cost is         : 4.12642072530636 

 At row:86, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:86, column:103,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:103,the value of plot_cost is         : 4.069143672418085 

 At row:86, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:86, column:104,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:104,the value of plot_cost is         : 4.012674679932325 

 At row:86, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:86, column:105,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:105,the value of plot_cost is         : 3.957013747849081 

 At row:86, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:86, column:106,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:106,the value of plot_cost is         : 3.9021608761683506 

 At row:86, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:86, column:107,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:107,the value of plot_cost is         : 3.8481160648901365 

 At row:86, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:86, column:108,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:108,the value of plot_cost is         : 3.7948793140144375 

 At row:86, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:86, column:109,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:109,the value of plot_cost is         : 3.742450623541253 

 At row:86, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:86, column:110,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:110,the value of plot_cost is         : 3.690829993470582 

 At row:86, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:86, column:111,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:111,the value of plot_cost is         : 3.640017423802429 

 At row:86, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:86, column:112,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:112,the value of plot_cost is         : 3.5900129145367905 

 At row:86, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:86, column:113,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:113,the value of plot_cost is         : 3.5408164656736667 

 At row:86, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:86, column:114,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:114,the value of plot_cost is         : 3.4924280772130576 

 At row:86, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:86, column:115,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:115,the value of plot_cost is         : 3.444847749154963 

 At row:86, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:86, column:116,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:116,the value of plot_cost is         : 3.3980754814993848 

 At row:86, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:86, column:117,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:117,the value of plot_cost is         : 3.3521112742463215 

 At row:86, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:86, column:118,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:118,the value of plot_cost is         : 3.3069551273957734 

 At row:86, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:86, column:119,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:119,the value of plot_cost is         : 3.2626070409477395 

 At row:86, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:86, column:120,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:120,the value of plot_cost is         : 3.2190670149022202 

 At row:86, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:86, column:121,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:121,the value of plot_cost is         : 3.176335049259218 

 At row:86, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:86, column:122,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:122,the value of plot_cost is         : 3.13441114401873 

 At row:86, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:86, column:123,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:123,the value of plot_cost is         : 3.0932952991807574 

 At row:86, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:86, column:124,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:124,the value of plot_cost is         : 3.0529875147452987 

 At row:86, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:86, column:125,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:125,the value of plot_cost is         : 3.013487790712355 

 At row:86, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:86, column:126,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:126,the value of plot_cost is         : 2.974796127081928 

 At row:86, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:86, column:127,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:127,the value of plot_cost is         : 2.936912523854016 

 At row:86, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:86, column:128,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:128,the value of plot_cost is         : 2.8998369810286184 

 At row:86, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:86, column:129,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:129,the value of plot_cost is         : 2.8635694986057354 

 At row:86, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:86, column:130,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:130,the value of plot_cost is         : 2.8281100765853675 

 At row:86, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:86, column:131,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:131,the value of plot_cost is         : 2.7934587149675156 

 At row:86, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:86, column:132,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:132,the value of plot_cost is         : 2.759615413752178 

 At row:86, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:86, column:133,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:133,the value of plot_cost is         : 2.726580172939356 

 At row:86, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:86, column:134,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:134,the value of plot_cost is         : 2.6943529925290486 

 At row:86, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:86, column:135,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:135,the value of plot_cost is         : 2.662933872521256 

 At row:86, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:86, column:136,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:136,the value of plot_cost is         : 2.63232281291598 

 At row:86, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:86, column:137,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:137,the value of plot_cost is         : 2.6025198137132186 

 At row:86, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:86, column:138,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:138,the value of plot_cost is         : 2.5735248749129718 

 At row:86, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:86, column:139,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:139,the value of plot_cost is         : 2.54533799651524 

 At row:86, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:86, column:140,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:140,the value of plot_cost is         : 2.517959178520023 

 At row:86, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:86, column:141,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:141,the value of plot_cost is         : 2.491388420927322 

 At row:86, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:86, column:142,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:142,the value of plot_cost is         : 2.4656257237371353 

 At row:86, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:86, column:143,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:143,the value of plot_cost is         : 2.4406710869494646 

 At row:86, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:86, column:144,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:144,the value of plot_cost is         : 2.4165245105643076 

 At row:86, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:86, column:145,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:145,the value of plot_cost is         : 2.393185994581666 

 At row:86, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:86, column:146,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:146,the value of plot_cost is         : 2.3706555390015405 

 At row:86, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:86, column:147,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:147,the value of plot_cost is         : 2.34893314382393 

 At row:86, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:86, column:148,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:148,the value of plot_cost is         : 2.328018809048834 

 At row:86, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:86, column:149,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:149,the value of plot_cost is         : 2.3079125346762526 

 At row:86, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:86, column:150,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:150,the value of plot_cost is         : 2.2886143207061873 

 At row:86, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:86, column:151,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:151,the value of plot_cost is         : 2.2701241671386367 

 At row:86, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:86, column:152,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:152,the value of plot_cost is         : 2.2524420739736013 

 At row:86, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:86, column:153,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:153,the value of plot_cost is         : 2.2355680412110814 

 At row:86, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:86, column:154,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:154,the value of plot_cost is         : 2.219502068851075 

 At row:86, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:86, column:155,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:155,the value of plot_cost is         : 2.2042441568935844 

 At row:86, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:86, column:156,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:156,the value of plot_cost is         : 2.18979430533861 

 At row:86, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:86, column:157,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:157,the value of plot_cost is         : 2.17615251418615 

 At row:86, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:86, column:158,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:158,the value of plot_cost is         : 2.163318783436205 

 At row:86, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:86, column:159,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:159,the value of plot_cost is         : 2.151293113088775 

 At row:86, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:86, column:160,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:160,the value of plot_cost is         : 2.14007550314386 

 At row:86, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:86, column:161,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:161,the value of plot_cost is         : 2.1296659536014606 

 At row:86, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:86, column:162,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:162,the value of plot_cost is         : 2.1200644644615765 

 At row:86, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:86, column:163,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:163,the value of plot_cost is         : 2.1112710357242066 

 At row:86, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:86, column:164,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:164,the value of plot_cost is         : 2.103285667389352 

 At row:86, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:86, column:165,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:165,the value of plot_cost is         : 2.0961083594570122 

 At row:86, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:86, column:166,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:166,the value of plot_cost is         : 2.0897391119271886 

 At row:86, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:86, column:167,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:167,the value of plot_cost is         : 2.0841779247998793 

 At row:86, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:86, column:168,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:168,the value of plot_cost is         : 2.079424798075085 

 At row:86, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:86, column:169,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:169,the value of plot_cost is         : 2.0754797317528055 

 At row:86, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:86, column:170,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:170,the value of plot_cost is         : 2.072342725833042 

 At row:86, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:86, column:171,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:171,the value of plot_cost is         : 2.0700137803157936 

 At row:86, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:86, column:172,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:172,the value of plot_cost is         : 2.0684928952010595 

 At row:86, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:86, column:173,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:173,the value of plot_cost is         : 2.067780070488841 

 At row:86, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:86, column:174,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:174,the value of plot_cost is         : 2.067875306179137 

 At row:86, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:86, column:175,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:175,the value of plot_cost is         : 2.068778602271948 

 At row:86, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:86, column:176,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:176,the value of plot_cost is         : 2.0704899587672756 

 At row:86, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:86, column:177,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:177,the value of plot_cost is         : 2.073009375665117 

 At row:86, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:86, column:178,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:178,the value of plot_cost is         : 2.0763368529654738 

 At row:86, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:86, column:179,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:179,the value of plot_cost is         : 2.0804723906683456 

 At row:86, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:86, column:180,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:180,the value of plot_cost is         : 2.085415988773732 

 At row:86, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:86, column:181,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:181,the value of plot_cost is         : 2.091167647281635 

 At row:86, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:86, column:182,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:182,the value of plot_cost is         : 2.0977273661920517 

 At row:86, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:86, column:183,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:183,the value of plot_cost is         : 2.105095145504984 

 At row:86, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:86, column:184,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:184,the value of plot_cost is         : 2.113270985220431 

 At row:86, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:86, column:185,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:185,the value of plot_cost is         : 2.122254885338393 

 At row:86, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:86, column:186,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:186,the value of plot_cost is         : 2.1320468458588713 

 At row:86, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:86, column:187,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:187,the value of plot_cost is         : 2.1426468667818637 

 At row:86, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:86, column:188,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:188,the value of plot_cost is         : 2.154054948107371 

 At row:86, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:86, column:189,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:189,the value of plot_cost is         : 2.166271089835394 

 At row:86, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:86, column:190,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:190,the value of plot_cost is         : 2.1792952919659316 

 At row:86, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:86, column:191,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:191,the value of plot_cost is         : 2.193127554498985 

 At row:86, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:86, column:192,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:192,the value of plot_cost is         : 2.207767877434553 

 At row:86, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:86, column:193,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:193,the value of plot_cost is         : 2.223216260772636 

 At row:86, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:86, column:194,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:194,the value of plot_cost is         : 2.239472704513233 

 At row:86, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:86, column:195,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:195,the value of plot_cost is         : 2.256537208656347 

 At row:86, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:86, column:196,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:196,the value of plot_cost is         : 2.2744097732019757 

 At row:86, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:86, column:197,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:197,the value of plot_cost is         : 2.29309039815012 

 At row:86, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:86, column:198,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:198,the value of plot_cost is         : 2.3125790835007773 

 At row:86, column:199,the value of plot_t0 is           : 3.0
 At row:86, column:199,the value of plot_t1 is           : 0.728643216080402
 At row:86, column:199,the value of plot_cost is         : 2.332875829253951 

 At row:87, column:0,the value of plot_t0 is           : -1.0
 At row:87, column:0,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:0,the value of plot_cost is         : 13.664261833214889 

 At row:87, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:87, column:1,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:1,the value of plot_cost is         : 13.52724076231841 

 At row:87, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:87, column:2,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:2,the value of plot_cost is         : 13.391027751824446 

 At row:87, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:87, column:3,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:3,the value of plot_cost is         : 13.255622801733 

 At row:87, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:87, column:4,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:4,the value of plot_cost is         : 13.121025912044066 

 At row:87, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:87, column:5,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:5,the value of plot_cost is         : 12.987237082757648 

 At row:87, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:87, column:6,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:6,the value of plot_cost is         : 12.854256313873744 

 At row:87, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:87, column:7,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:7,the value of plot_cost is         : 12.722083605392358 

 At row:87, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:87, column:8,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:8,the value of plot_cost is         : 12.590718957313486 

 At row:87, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:87, column:9,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:9,the value of plot_cost is         : 12.460162369637127 

 At row:87, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:87, column:10,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:10,the value of plot_cost is         : 12.330413842363287 

 At row:87, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:87, column:11,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:11,the value of plot_cost is         : 12.201473375491961 

 At row:87, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:87, column:12,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:12,the value of plot_cost is         : 12.07334096902315 

 At row:87, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:87, column:13,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:13,the value of plot_cost is         : 11.946016622956849 

 At row:87, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:87, column:14,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:14,the value of plot_cost is         : 11.819500337293068 

 At row:87, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:87, column:15,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:15,the value of plot_cost is         : 11.693792112031803 

 At row:87, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:87, column:16,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:16,the value of plot_cost is         : 11.56889194717305 

 At row:87, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:87, column:17,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:17,the value of plot_cost is         : 11.444799842716813 

 At row:87, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:87, column:18,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:18,the value of plot_cost is         : 11.321515798663091 

 At row:87, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:87, column:19,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:19,the value of plot_cost is         : 11.199039815011885 

 At row:87, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:87, column:20,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:20,the value of plot_cost is         : 11.077371891763194 

 At row:87, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:87, column:21,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:21,the value of plot_cost is         : 10.956512028917018 

 At row:87, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:87, column:22,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:22,the value of plot_cost is         : 10.836460226473356 

 At row:87, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:87, column:23,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:23,the value of plot_cost is         : 10.717216484432209 

 At row:87, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:87, column:24,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:24,the value of plot_cost is         : 10.598780802793577 

 At row:87, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:87, column:25,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:25,the value of plot_cost is         : 10.481153181557463 

 At row:87, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:87, column:26,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:26,the value of plot_cost is         : 10.364333620723862 

 At row:87, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:87, column:27,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:27,the value of plot_cost is         : 10.248322120292775 

 At row:87, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:87, column:28,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:28,the value of plot_cost is         : 10.133118680264205 

 At row:87, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:87, column:29,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:29,the value of plot_cost is         : 10.018723300638149 

 At row:87, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:87, column:30,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:30,the value of plot_cost is         : 9.90513598141461 

 At row:87, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:87, column:31,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:31,the value of plot_cost is         : 9.792356722593585 

 At row:87, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:87, column:32,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:32,the value of plot_cost is         : 9.680385524175072 

 At row:87, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:87, column:33,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:33,the value of plot_cost is         : 9.569222386159078 

 At row:87, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:87, column:34,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:34,the value of plot_cost is         : 9.458867308545598 

 At row:87, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:87, column:35,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:35,the value of plot_cost is         : 9.349320291334633 

 At row:87, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:87, column:36,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:36,the value of plot_cost is         : 9.240581334526185 

 At row:87, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:87, column:37,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:37,the value of plot_cost is         : 9.132650438120248 

 At row:87, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:87, column:38,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:38,the value of plot_cost is         : 9.02552760211683 

 At row:87, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:87, column:39,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:39,the value of plot_cost is         : 8.919212826515922 

 At row:87, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:87, column:40,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:40,the value of plot_cost is         : 8.813706111317535 

 At row:87, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:87, column:41,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:41,the value of plot_cost is         : 8.709007456521661 

 At row:87, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:87, column:42,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:42,the value of plot_cost is         : 8.6051168621283 

 At row:87, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:87, column:43,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:43,the value of plot_cost is         : 8.502034328137457 

 At row:87, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:87, column:44,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:44,the value of plot_cost is         : 8.399759854549124 

 At row:87, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:87, column:45,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:45,the value of plot_cost is         : 8.298293441363313 

 At row:87, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:87, column:46,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:46,the value of plot_cost is         : 8.197635088580014 

 At row:87, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:87, column:47,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:47,the value of plot_cost is         : 8.097784796199228 

 At row:87, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:87, column:48,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:48,the value of plot_cost is         : 7.9987425642209615 

 At row:87, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:87, column:49,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:49,the value of plot_cost is         : 7.9005083926452055 

 At row:87, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:87, column:50,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:50,the value of plot_cost is         : 7.803082281471967 

 At row:87, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:87, column:51,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:51,the value of plot_cost is         : 7.706464230701244 

 At row:87, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:87, column:52,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:52,the value of plot_cost is         : 7.6106542403330355 

 At row:87, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:87, column:53,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:53,the value of plot_cost is         : 7.515652310367342 

 At row:87, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:87, column:54,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:54,the value of plot_cost is         : 7.421458440804162 

 At row:87, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:87, column:55,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:55,the value of plot_cost is         : 7.328072631643501 

 At row:87, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:87, column:56,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:56,the value of plot_cost is         : 7.2354948828853525 

 At row:87, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:87, column:57,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:57,the value of plot_cost is         : 7.143725194529718 

 At row:87, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:87, column:58,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:58,the value of plot_cost is         : 7.052763566576601 

 At row:87, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:87, column:59,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:59,the value of plot_cost is         : 6.962609999025997 

 At row:87, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:87, column:60,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:60,the value of plot_cost is         : 6.87326449187791 

 At row:87, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:87, column:61,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:61,the value of plot_cost is         : 6.784727045132339 

 At row:87, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:87, column:62,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:62,the value of plot_cost is         : 6.69699765878928 

 At row:87, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:87, column:63,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:63,the value of plot_cost is         : 6.610076332848737 

 At row:87, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:87, column:64,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:64,the value of plot_cost is         : 6.523963067310708 

 At row:87, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:87, column:65,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:65,the value of plot_cost is         : 6.438657862175196 

 At row:87, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:87, column:66,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:66,the value of plot_cost is         : 6.3541607174422 

 At row:87, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:87, column:67,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:67,the value of plot_cost is         : 6.2704716331117165 

 At row:87, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:87, column:68,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:68,the value of plot_cost is         : 6.187590609183751 

 At row:87, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:87, column:69,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:69,the value of plot_cost is         : 6.105517645658297 

 At row:87, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:87, column:70,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:70,the value of plot_cost is         : 6.02425274253536 

 At row:87, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:87, column:71,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:71,the value of plot_cost is         : 5.94379589981494 

 At row:87, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:87, column:72,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:72,the value of plot_cost is         : 5.864147117497032 

 At row:87, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:87, column:73,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:73,the value of plot_cost is         : 5.785306395581641 

 At row:87, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:87, column:74,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:74,the value of plot_cost is         : 5.707273734068764 

 At row:87, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:87, column:75,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:75,the value of plot_cost is         : 5.630049132958401 

 At row:87, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:87, column:76,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:76,the value of plot_cost is         : 5.553632592250557 

 At row:87, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:87, column:77,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:77,the value of plot_cost is         : 5.478024111945224 

 At row:87, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:87, column:78,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:78,the value of plot_cost is         : 5.403223692042407 

 At row:87, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:87, column:79,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:79,the value of plot_cost is         : 5.329231332542107 

 At row:87, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:87, column:80,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:80,the value of plot_cost is         : 5.256047033444321 

 At row:87, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:87, column:81,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:81,the value of plot_cost is         : 5.183670794749051 

 At row:87, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:87, column:82,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:82,the value of plot_cost is         : 5.112102616456293 

 At row:87, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:87, column:83,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:83,the value of plot_cost is         : 5.041342498566052 

 At row:87, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:87, column:84,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:84,the value of plot_cost is         : 4.971390441078327 

 At row:87, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:87, column:85,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:85,the value of plot_cost is         : 4.902246443993116 

 At row:87, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:87, column:86,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:86,the value of plot_cost is         : 4.8339105073104225 

 At row:87, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:87, column:87,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:87,the value of plot_cost is         : 4.76638263103024 

 At row:87, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:87, column:88,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:88,the value of plot_cost is         : 4.699662815152574 

 At row:87, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:87, column:89,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:89,the value of plot_cost is         : 4.633751059677425 

 At row:87, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:87, column:90,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:90,the value of plot_cost is         : 4.568647364604789 

 At row:87, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:87, column:91,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:91,the value of plot_cost is         : 4.50435172993467 

 At row:87, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:87, column:92,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:92,the value of plot_cost is         : 4.440864155667064 

 At row:87, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:87, column:93,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:93,the value of plot_cost is         : 4.3781846418019725 

 At row:87, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:87, column:94,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:94,the value of plot_cost is         : 4.316313188339399 

 At row:87, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:87, column:95,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:95,the value of plot_cost is         : 4.255249795279339 

 At row:87, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:87, column:96,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:96,the value of plot_cost is         : 4.194994462621795 

 At row:87, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:87, column:97,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:97,the value of plot_cost is         : 4.135547190366766 

 At row:87, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:87, column:98,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:98,the value of plot_cost is         : 4.0769079785142495 

 At row:87, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:87, column:99,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:99,the value of plot_cost is         : 4.019076827064251 

 At row:87, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:87, column:100,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:100,the value of plot_cost is         : 3.962053736016767 

 At row:87, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:87, column:101,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:101,the value of plot_cost is         : 3.905838705371798 

 At row:87, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:87, column:102,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:102,the value of plot_cost is         : 3.8504317351293436 

 At row:87, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:87, column:103,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:103,the value of plot_cost is         : 3.795832825289404 

 At row:87, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:87, column:104,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:104,the value of plot_cost is         : 3.7420419758519796 

 At row:87, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:87, column:105,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:105,the value of plot_cost is         : 3.689059186817071 

 At row:87, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:87, column:106,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:106,the value of plot_cost is         : 3.6368844581846784 

 At row:87, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:87, column:107,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:107,the value of plot_cost is         : 3.5855177899547983 

 At row:87, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:87, column:108,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:108,the value of plot_cost is         : 3.5349591821274347 

 At row:87, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:87, column:109,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:109,the value of plot_cost is         : 3.4852086347025857 

 At row:87, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:87, column:110,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:110,the value of plot_cost is         : 3.4362661476802536 

 At row:87, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:87, column:111,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:111,the value of plot_cost is         : 3.388131721060436 

 At row:87, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:87, column:112,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:112,the value of plot_cost is         : 3.340805354843132 

 At row:87, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:87, column:113,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:113,the value of plot_cost is         : 3.294287049028342 

 At row:87, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:87, column:114,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:114,the value of plot_cost is         : 3.2485768036160696 

 At row:87, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:87, column:115,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:115,the value of plot_cost is         : 3.2036746186063123 

 At row:87, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:87, column:116,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:116,the value of plot_cost is         : 3.15958049399907 

 At row:87, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:87, column:117,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:117,the value of plot_cost is         : 3.1162944297943413 

 At row:87, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:87, column:118,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:118,the value of plot_cost is         : 3.0738164259921277 

 At row:87, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:87, column:119,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:119,the value of plot_cost is         : 3.0321464825924296 

 At row:87, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:87, column:120,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:120,the value of plot_cost is         : 2.9912845995952484 

 At row:87, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:87, column:121,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:121,the value of plot_cost is         : 2.951230777000581 

 At row:87, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:87, column:122,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:122,the value of plot_cost is         : 2.9119850148084283 

 At row:87, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:87, column:123,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:123,the value of plot_cost is         : 2.87354731301879 

 At row:87, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:87, column:124,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:124,the value of plot_cost is         : 2.8359176716316683 

 At row:87, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:87, column:125,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:125,the value of plot_cost is         : 2.799096090647062 

 At row:87, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:87, column:126,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:126,the value of plot_cost is         : 2.76308257006497 

 At row:87, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:87, column:127,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:127,the value of plot_cost is         : 2.7278771098853927 

 At row:87, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:87, column:128,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:128,the value of plot_cost is         : 2.6934797101083294 

 At row:87, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:87, column:129,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:129,the value of plot_cost is         : 2.6598903707337835 

 At row:87, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:87, column:130,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:130,the value of plot_cost is         : 2.6271090917617523 

 At row:87, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:87, column:131,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:131,the value of plot_cost is         : 2.595135873192236 

 At row:87, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:87, column:132,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:132,the value of plot_cost is         : 2.5639707150252335 

 At row:87, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:87, column:133,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:133,the value of plot_cost is         : 2.533613617260746 

 At row:87, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:87, column:134,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:134,the value of plot_cost is         : 2.5040645798987757 

 At row:87, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:87, column:135,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:135,the value of plot_cost is         : 2.47532360293932 

 At row:87, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:87, column:136,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:136,the value of plot_cost is         : 2.4473906863823793 

 At row:87, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:87, column:137,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:137,the value of plot_cost is         : 2.4202658302279527 

 At row:87, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:87, column:138,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:138,the value of plot_cost is         : 2.393949034476041 

 At row:87, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:87, column:139,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:139,the value of plot_cost is         : 2.368440299126645 

 At row:87, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:87, column:140,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:140,the value of plot_cost is         : 2.343739624179765 

 At row:87, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:87, column:141,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:141,the value of plot_cost is         : 2.3198470096354 

 At row:87, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:87, column:142,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:142,the value of plot_cost is         : 2.296762455493548 

 At row:87, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:87, column:143,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:143,the value of plot_cost is         : 2.2744859617542112 

 At row:87, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:87, column:144,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:144,the value of plot_cost is         : 2.2530175284173914 

 At row:87, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:87, column:145,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:145,the value of plot_cost is         : 2.232357155483087 

 At row:87, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:87, column:146,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:146,the value of plot_cost is         : 2.2125048429512972 

 At row:87, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:87, column:147,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:147,the value of plot_cost is         : 2.193460590822021 

 At row:87, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:87, column:148,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:148,the value of plot_cost is         : 2.17522439909526 

 At row:87, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:87, column:149,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:149,the value of plot_cost is         : 2.157796267771016 

 At row:87, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:87, column:150,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:150,the value of plot_cost is         : 2.1411761968492864 

 At row:87, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:87, column:151,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:151,the value of plot_cost is         : 2.1253641863300707 

 At row:87, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:87, column:152,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:152,the value of plot_cost is         : 2.110360236213371 

 At row:87, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:87, column:153,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:153,the value of plot_cost is         : 2.096164346499186 

 At row:87, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:87, column:154,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:154,the value of plot_cost is         : 2.0827765171875168 

 At row:87, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:87, column:155,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:155,the value of plot_cost is         : 2.070196748278363 

 At row:87, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:87, column:156,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:156,the value of plot_cost is         : 2.0584250397717234 

 At row:87, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:87, column:157,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:157,the value of plot_cost is         : 2.0474613916675986 

 At row:87, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:87, column:158,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:158,the value of plot_cost is         : 2.0373058039659884 

 At row:87, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:87, column:159,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:159,the value of plot_cost is         : 2.027958276666895 

 At row:87, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:87, column:160,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:160,the value of plot_cost is         : 2.019418809770317 

 At row:87, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:87, column:161,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:161,the value of plot_cost is         : 2.0116874032762517 

 At row:87, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:87, column:162,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:162,the value of plot_cost is         : 2.0047640571847034 

 At row:87, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:87, column:163,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:163,the value of plot_cost is         : 1.9986487714956689 

 At row:87, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:87, column:164,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:164,the value of plot_cost is         : 1.9933415462091506 

 At row:87, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:87, column:165,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:165,the value of plot_cost is         : 1.9888423813251477 

 At row:87, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:87, column:166,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:166,the value of plot_cost is         : 1.9851512768436586 

 At row:87, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:87, column:167,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:167,the value of plot_cost is         : 1.9822682327646852 

 At row:87, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:87, column:168,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:168,the value of plot_cost is         : 1.980193249088226 

 At row:87, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:87, column:169,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:169,the value of plot_cost is         : 1.9789263258142835 

 At row:87, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:87, column:170,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:170,the value of plot_cost is         : 1.9784674629428558 

 At row:87, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:87, column:171,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:171,the value of plot_cost is         : 1.978816660473942 

 At row:87, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:87, column:172,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:172,the value of plot_cost is         : 1.9799739184075442 

 At row:87, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:87, column:173,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:173,the value of plot_cost is         : 1.9819392367436603 

 At row:87, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:87, column:174,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:174,the value of plot_cost is         : 1.9847126154822932 

 At row:87, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:87, column:175,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:175,the value of plot_cost is         : 1.9882940546234409 

 At row:87, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:87, column:176,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:176,the value of plot_cost is         : 1.9926835541671029 

 At row:87, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:87, column:177,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:177,the value of plot_cost is         : 1.9978811141132797 

 At row:87, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:87, column:178,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:178,the value of plot_cost is         : 2.0038867344619717 

 At row:87, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:87, column:179,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:179,the value of plot_cost is         : 2.01070041521318 

 At row:87, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:87, column:180,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:180,the value of plot_cost is         : 2.0183221563669034 

 At row:87, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:87, column:181,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:181,the value of plot_cost is         : 2.026751957923141 

 At row:87, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:87, column:182,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:182,the value of plot_cost is         : 2.0359898198818933 

 At row:87, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:87, column:183,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:183,the value of plot_cost is         : 2.0460357422431605 

 At row:87, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:87, column:184,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:184,the value of plot_cost is         : 2.0568897250069447 

 At row:87, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:87, column:185,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:185,the value of plot_cost is         : 2.0685517681732435 

 At row:87, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:87, column:186,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:186,the value of plot_cost is         : 2.081021871742056 

 At row:87, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:87, column:187,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:187,the value of plot_cost is         : 2.094300035713384 

 At row:87, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:87, column:188,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:188,the value of plot_cost is         : 2.1083862600872267 

 At row:87, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:87, column:189,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:189,the value of plot_cost is         : 2.123280544863586 

 At row:87, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:87, column:190,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:190,the value of plot_cost is         : 2.13898289004246 

 At row:87, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:87, column:191,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:191,the value of plot_cost is         : 2.1554932956238484 

 At row:87, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:87, column:192,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:192,the value of plot_cost is         : 2.172811761607752 

 At row:87, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:87, column:193,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:193,the value of plot_cost is         : 2.19093828799417 

 At row:87, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:87, column:194,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:194,the value of plot_cost is         : 2.209872874783105 

 At row:87, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:87, column:195,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:195,the value of plot_cost is         : 2.2296155219745546 

 At row:87, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:87, column:196,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:196,the value of plot_cost is         : 2.2501662295685176 

 At row:87, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:87, column:197,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:197,the value of plot_cost is         : 2.2715249975649967 

 At row:87, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:87, column:198,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:198,the value of plot_cost is         : 2.2936918259639905 

 At row:87, column:199,the value of plot_t0 is           : 3.0
 At row:87, column:199,the value of plot_t1 is           : 0.7487437185929648
 At row:87, column:199,the value of plot_cost is         : 2.3166667147655007 

 At row:88, column:0,the value of plot_t0 is           : -1.0
 At row:88, column:0,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:0,the value of plot_cost is         : 13.12768490694679 

 At row:88, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:88, column:1,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:1,the value of plot_cost is         : 12.99334197909865 

 At row:88, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:88, column:2,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:2,the value of plot_cost is         : 12.859807111653017 

 At row:88, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:88, column:3,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:3,the value of plot_cost is         : 12.727080304609906 

 At row:88, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:88, column:4,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:4,the value of plot_cost is         : 12.595161557969309 

 At row:88, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:88, column:5,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:5,the value of plot_cost is         : 12.464050871731228 

 At row:88, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:88, column:6,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:6,the value of plot_cost is         : 12.333748245895663 

 At row:88, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:88, column:7,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:7,the value of plot_cost is         : 12.204253680462609 

 At row:88, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:88, column:8,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:8,the value of plot_cost is         : 12.075567175432074 

 At row:88, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:88, column:9,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:9,the value of plot_cost is         : 11.947688730804051 

 At row:88, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:88, column:10,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:10,the value of plot_cost is         : 11.820618346578547 

 At row:88, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:88, column:11,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:11,the value of plot_cost is         : 11.694356022755553 

 At row:88, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:88, column:12,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:12,the value of plot_cost is         : 11.568901759335077 

 At row:88, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:88, column:13,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:13,the value of plot_cost is         : 11.444255556317119 

 At row:88, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:88, column:14,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:14,the value of plot_cost is         : 11.32041741370167 

 At row:88, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:88, column:15,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:15,the value of plot_cost is         : 11.19738733148874 

 At row:88, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:88, column:16,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:16,the value of plot_cost is         : 11.075165309678324 

 At row:88, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:88, column:17,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:17,the value of plot_cost is         : 10.953751348270421 

 At row:88, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:88, column:18,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:18,the value of plot_cost is         : 10.833145447265037 

 At row:88, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:88, column:19,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:19,the value of plot_cost is         : 10.713347606662166 

 At row:88, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:88, column:20,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:20,the value of plot_cost is         : 10.59435782646181 

 At row:88, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:88, column:21,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:21,the value of plot_cost is         : 10.47617610666397 

 At row:88, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:88, column:22,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:22,the value of plot_cost is         : 10.358802447268644 

 At row:88, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:88, column:23,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:23,the value of plot_cost is         : 10.242236848275832 

 At row:88, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:88, column:24,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:24,the value of plot_cost is         : 10.126479309685537 

 At row:88, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:88, column:25,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:25,the value of plot_cost is         : 10.011529831497759 

 At row:88, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:88, column:26,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:26,the value of plot_cost is         : 9.897388413712493 

 At row:88, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:88, column:27,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:27,the value of plot_cost is         : 9.784055056329741 

 At row:88, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:88, column:28,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:28,the value of plot_cost is         : 9.671529759349509 

 At row:88, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:88, column:29,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:29,the value of plot_cost is         : 9.559812522771786 

 At row:88, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:88, column:30,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:30,the value of plot_cost is         : 9.448903346596584 

 At row:88, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:88, column:31,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:31,the value of plot_cost is         : 9.338802230823893 

 At row:88, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:88, column:32,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:32,the value of plot_cost is         : 9.22950917545372 

 At row:88, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:88, column:33,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:33,the value of plot_cost is         : 9.12102418048606 

 At row:88, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:88, column:34,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:34,the value of plot_cost is         : 9.013347245920915 

 At row:88, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:88, column:35,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:35,the value of plot_cost is         : 8.906478371758286 

 At row:88, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:88, column:36,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:36,the value of plot_cost is         : 8.800417557998172 

 At row:88, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:88, column:37,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:37,the value of plot_cost is         : 8.695164804640571 

 At row:88, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:88, column:38,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:38,the value of plot_cost is         : 8.590720111685489 

 At row:88, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:88, column:39,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:39,the value of plot_cost is         : 8.487083479132918 

 At row:88, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:88, column:40,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:40,the value of plot_cost is         : 8.384254906982866 

 At row:88, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:88, column:41,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:41,the value of plot_cost is         : 8.282234395235326 

 At row:88, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:88, column:42,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:42,the value of plot_cost is         : 8.181021943890302 

 At row:88, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:88, column:43,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:43,the value of plot_cost is         : 8.080617552947793 

 At row:88, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:88, column:44,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:44,the value of plot_cost is         : 7.9810212224078 

 At row:88, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:88, column:45,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:45,the value of plot_cost is         : 7.882232952270322 

 At row:88, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:88, column:46,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:46,the value of plot_cost is         : 7.784252742535359 

 At row:88, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:88, column:47,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:47,the value of plot_cost is         : 7.687080593202911 

 At row:88, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:88, column:48,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:48,the value of plot_cost is         : 7.5907165042729785 

 At row:88, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:88, column:49,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:49,the value of plot_cost is         : 7.495160475745559 

 At row:88, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:88, column:50,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:50,the value of plot_cost is         : 7.400412507620658 

 At row:88, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:88, column:51,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:51,the value of plot_cost is         : 7.306472599898268 

 At row:88, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:88, column:52,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:52,the value of plot_cost is         : 7.213340752578394 

 At row:88, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:88, column:53,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:53,the value of plot_cost is         : 7.121016965661038 

 At row:88, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:88, column:54,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:54,the value of plot_cost is         : 7.029501239146194 

 At row:88, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:88, column:55,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:55,the value of plot_cost is         : 6.938793573033867 

 At row:88, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:88, column:56,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:56,the value of plot_cost is         : 6.848893967324055 

 At row:88, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:88, column:57,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:57,the value of plot_cost is         : 6.759802422016757 

 At row:88, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:88, column:58,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:58,the value of plot_cost is         : 6.671518937111976 

 At row:88, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:88, column:59,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:59,the value of plot_cost is         : 6.584043512609706 

 At row:88, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:88, column:60,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:60,the value of plot_cost is         : 6.497376148509955 

 At row:88, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:88, column:61,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:61,the value of plot_cost is         : 6.411516844812718 

 At row:88, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:88, column:62,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:62,the value of plot_cost is         : 6.326465601517997 

 At row:88, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:88, column:63,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:63,the value of plot_cost is         : 6.24222241862579 

 At row:88, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:88, column:64,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:64,the value of plot_cost is         : 6.158787296136097 

 At row:88, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:88, column:65,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:65,the value of plot_cost is         : 6.076160234048921 

 At row:88, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:88, column:66,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:66,the value of plot_cost is         : 5.99434123236426 

 At row:88, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:88, column:67,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:67,the value of plot_cost is         : 5.913330291082112 

 At row:88, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:88, column:68,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:68,the value of plot_cost is         : 5.833127410202482 

 At row:88, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:88, column:69,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:69,the value of plot_cost is         : 5.753732589725364 

 At row:88, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:88, column:70,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:70,the value of plot_cost is         : 5.675145829650764 

 At row:88, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:88, column:71,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:71,the value of plot_cost is         : 5.597367129978679 

 At row:88, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:88, column:72,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:72,the value of plot_cost is         : 5.520396490709107 

 At row:88, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:88, column:73,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:73,the value of plot_cost is         : 5.444233911842051 

 At row:88, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:88, column:74,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:74,the value of plot_cost is         : 5.368879393377509 

 At row:88, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:88, column:75,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:75,the value of plot_cost is         : 5.2943329353154835 

 At row:88, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:88, column:76,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:76,the value of plot_cost is         : 5.220594537655973 

 At row:88, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:88, column:77,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:77,the value of plot_cost is         : 5.147664200398978 

 At row:88, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:88, column:78,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:78,the value of plot_cost is         : 5.075541923544496 

 At row:88, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:88, column:79,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:79,the value of plot_cost is         : 5.004227707092531 

 At row:88, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:88, column:80,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:80,the value of plot_cost is         : 4.933721551043081 

 At row:88, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:88, column:81,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:81,the value of plot_cost is         : 4.864023455396146 

 At row:88, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:88, column:82,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:82,the value of plot_cost is         : 4.795133420151725 

 At row:88, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:88, column:83,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:83,the value of plot_cost is         : 4.72705144530982 

 At row:88, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:88, column:84,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:84,the value of plot_cost is         : 4.65977753087043 

 At row:88, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:88, column:85,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:85,the value of plot_cost is         : 4.593311676833555 

 At row:88, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:88, column:86,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:86,the value of plot_cost is         : 4.5276538831991955 

 At row:88, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:88, column:87,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:87,the value of plot_cost is         : 4.462804149967351 

 At row:88, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:88, column:88,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:88,the value of plot_cost is         : 4.398762477138021 

 At row:88, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:88, column:89,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:89,the value of plot_cost is         : 4.335528864711207 

 At row:88, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:88, column:90,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:90,the value of plot_cost is         : 4.273103312686907 

 At row:88, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:88, column:91,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:91,the value of plot_cost is         : 4.211485821065122 

 At row:88, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:88, column:92,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:92,the value of plot_cost is         : 4.150676389845853 

 At row:88, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:88, column:93,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:93,the value of plot_cost is         : 4.090675019029098 

 At row:88, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:88, column:94,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:94,the value of plot_cost is         : 4.0314817086148595 

 At row:88, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:88, column:95,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:95,the value of plot_cost is         : 3.9730964586031363 

 At row:88, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:88, column:96,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:96,the value of plot_cost is         : 3.9155192689939273 

 At row:88, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:88, column:97,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:97,the value of plot_cost is         : 3.858750139787233 

 At row:88, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:88, column:98,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:98,the value of plot_cost is         : 3.8027890709830534 

 At row:88, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:88, column:99,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:99,the value of plot_cost is         : 3.7476360625813903 

 At row:88, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:88, column:100,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:100,the value of plot_cost is         : 3.6932911145822422 

 At row:88, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:88, column:101,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:101,the value of plot_cost is         : 3.639754226985609 

 At row:88, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:88, column:102,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:102,the value of plot_cost is         : 3.58702539979149 

 At row:88, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:88, column:103,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:103,the value of plot_cost is         : 3.535104632999886 

 At row:88, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:88, column:104,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:104,the value of plot_cost is         : 3.4839919266107975 

 At row:88, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:88, column:105,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:105,the value of plot_cost is         : 3.4336872806242256 

 At row:88, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:88, column:106,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:106,the value of plot_cost is         : 3.384190695040168 

 At row:88, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:88, column:107,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:107,the value of plot_cost is         : 3.3355021698586236 

 At row:88, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:88, column:108,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:108,the value of plot_cost is         : 3.2876217050795953 

 At row:88, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:88, column:109,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:109,the value of plot_cost is         : 3.2405493007030826 

 At row:88, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:88, column:110,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:110,the value of plot_cost is         : 3.1942849567290854 

 At row:88, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:88, column:111,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:111,the value of plot_cost is         : 3.1488286731576034 

 At row:88, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:88, column:112,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:112,the value of plot_cost is         : 3.1041804499886347 

 At row:88, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:88, column:113,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:113,the value of plot_cost is         : 3.060340287222182 

 At row:88, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:88, column:114,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:114,the value of plot_cost is         : 3.017308184858245 

 At row:88, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:88, column:115,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:115,the value of plot_cost is         : 2.975084142896823 

 At row:88, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:88, column:116,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:116,the value of plot_cost is         : 2.9336681613379163 

 At row:88, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:88, column:117,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:117,the value of plot_cost is         : 2.8930602401815237 

 At row:88, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:88, column:118,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:118,the value of plot_cost is         : 2.853260379427646 

 At row:88, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:88, column:119,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:119,the value of plot_cost is         : 2.814268579076284 

 At row:88, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:88, column:120,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:120,the value of plot_cost is         : 2.776084839127438 

 At row:88, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:88, column:121,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:121,the value of plot_cost is         : 2.738709159581106 

 At row:88, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:88, column:122,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:122,the value of plot_cost is         : 2.7021415404372893 

 At row:88, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:88, column:123,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:123,the value of plot_cost is         : 2.6663819816959875 

 At row:88, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:88, column:124,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:124,the value of plot_cost is         : 2.631430483357201 

 At row:88, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:88, column:125,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:125,the value of plot_cost is         : 2.5972870454209294 

 At row:88, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:88, column:126,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:126,the value of plot_cost is         : 2.5639516678871743 

 At row:88, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:88, column:127,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:127,the value of plot_cost is         : 2.5314243507559318 

 At row:88, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:88, column:128,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:128,the value of plot_cost is         : 2.4997050940272056 

 At row:88, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:88, column:129,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:129,the value of plot_cost is         : 2.468793897700995 

 At row:88, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:88, column:130,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:130,the value of plot_cost is         : 2.438690761777299 

 At row:88, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:88, column:131,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:131,the value of plot_cost is         : 2.4093956862561186 

 At row:88, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:88, column:132,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:132,the value of plot_cost is         : 2.380908671137452 

 At row:88, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:88, column:133,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:133,the value of plot_cost is         : 2.3532297164213007 

 At row:88, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:88, column:134,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:134,the value of plot_cost is         : 2.326358822107666 

 At row:88, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:88, column:135,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:135,the value of plot_cost is         : 2.3002959881965452 

 At row:88, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:88, column:136,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:136,the value of plot_cost is         : 2.27504121468794 

 At row:88, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:88, column:137,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:137,the value of plot_cost is         : 2.2505945015818494 

 At row:88, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:88, column:138,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:138,the value of plot_cost is         : 2.2269558488782737 

 At row:88, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:88, column:139,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:139,the value of plot_cost is         : 2.204125256577214 

 At row:88, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:88, column:140,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:140,the value of plot_cost is         : 2.182102724678669 

 At row:88, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:88, column:141,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:141,the value of plot_cost is         : 2.160888253182639 

 At row:88, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:88, column:142,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:142,the value of plot_cost is         : 2.1404818420891236 

 At row:88, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:88, column:143,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:143,the value of plot_cost is         : 2.1208834913981236 

 At row:88, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:88, column:144,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:144,the value of plot_cost is         : 2.102093201109639 

 At row:88, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:88, column:145,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:145,the value of plot_cost is         : 2.08411097122367 

 At row:88, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:88, column:146,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:146,the value of plot_cost is         : 2.0669368017402157 

 At row:88, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:88, column:147,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:147,the value of plot_cost is         : 2.0505706926592753 

 At row:88, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:88, column:148,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:148,the value of plot_cost is         : 2.0350126439808505 

 At row:88, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:88, column:149,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:149,the value of plot_cost is         : 2.0202626557049417 

 At row:88, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:88, column:150,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:150,the value of plot_cost is         : 2.006320727831548 

 At row:88, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:88, column:151,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:151,the value of plot_cost is         : 1.993186860360668 

 At row:88, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:88, column:152,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:152,the value of plot_cost is         : 1.980861053292304 

 At row:88, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:88, column:153,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:153,the value of plot_cost is         : 1.9693433066264552 

 At row:88, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:88, column:154,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:154,the value of plot_cost is         : 1.9586336203631216 

 At row:88, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:88, column:155,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:155,the value of plot_cost is         : 1.9487319945023027 

 At row:88, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:88, column:156,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:156,the value of plot_cost is         : 1.9396384290439985 

 At row:88, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:88, column:157,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:157,the value of plot_cost is         : 1.93135292398821 

 At row:88, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:88, column:158,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:158,the value of plot_cost is         : 1.9238754793349364 

 At row:88, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:88, column:159,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:159,the value of plot_cost is         : 1.9172060950841785 

 At row:88, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:88, column:160,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:160,the value of plot_cost is         : 1.9113447712359355 

 At row:88, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:88, column:161,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:161,the value of plot_cost is         : 1.9062915077902067 

 At row:88, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:88, column:162,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:162,the value of plot_cost is         : 1.9020463047469933 

 At row:88, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:88, column:163,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:163,the value of plot_cost is         : 1.8986091621062953 

 At row:88, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:88, column:164,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:164,the value of plot_cost is         : 1.8959800798681128 

 At row:88, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:88, column:165,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:165,the value of plot_cost is         : 1.894159058032445 

 At row:88, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:88, column:166,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:166,the value of plot_cost is         : 1.8931460965992915 

 At row:88, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:88, column:167,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:167,the value of plot_cost is         : 1.8929411955686537 

 At row:88, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:88, column:168,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:168,the value of plot_cost is         : 1.893544354940531 

 At row:88, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:88, column:169,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:169,the value of plot_cost is         : 1.894955574714924 

 At row:88, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:88, column:170,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:170,the value of plot_cost is         : 1.897174854891832 

 At row:88, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:88, column:171,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:171,the value of plot_cost is         : 1.900202195471254 

 At row:88, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:88, column:172,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:172,the value of plot_cost is         : 1.9040375964531915 

 At row:88, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:88, column:173,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:173,the value of plot_cost is         : 1.9086810578376443 

 At row:88, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:88, column:174,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:174,the value of plot_cost is         : 1.9141325796246127 

 At row:88, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:88, column:175,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:175,the value of plot_cost is         : 1.9203921618140956 

 At row:88, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:88, column:176,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:176,the value of plot_cost is         : 1.927459804406093 

 At row:88, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:88, column:177,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:177,the value of plot_cost is         : 1.9353355074006064 

 At row:88, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:88, column:178,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:178,the value of plot_cost is         : 1.9440192707976347 

 At row:88, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:88, column:179,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:179,the value of plot_cost is         : 1.9535110945971783 

 At row:88, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:88, column:180,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:180,the value of plot_cost is         : 1.9638109787992368 

 At row:88, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:88, column:181,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:181,the value of plot_cost is         : 1.9749189234038096 

 At row:88, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:88, column:182,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:182,the value of plot_cost is         : 1.9868349284108984 

 At row:88, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:88, column:183,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:183,the value of plot_cost is         : 1.9995589938205023 

 At row:88, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:88, column:184,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:184,the value of plot_cost is         : 2.0130911196326213 

 At row:88, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:88, column:185,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:185,the value of plot_cost is         : 2.0274313058472555 

 At row:88, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:88, column:186,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:186,the value of plot_cost is         : 2.0425795524644035 

 At row:88, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:88, column:187,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:187,the value of plot_cost is         : 2.058535859484067 

 At row:88, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:88, column:188,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:188,the value of plot_cost is         : 2.075300226906247 

 At row:88, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:88, column:189,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:189,the value of plot_cost is         : 2.0928726547309418 

 At row:88, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:88, column:190,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:190,the value of plot_cost is         : 2.1112531429581507 

 At row:88, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:88, column:191,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:191,the value of plot_cost is         : 2.1304416915878748 

 At row:88, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:88, column:192,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:192,the value of plot_cost is         : 2.1504383006201135 

 At row:88, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:88, column:193,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:193,the value of plot_cost is         : 2.171242970054869 

 At row:88, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:88, column:194,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:194,the value of plot_cost is         : 2.1928556998921387 

 At row:88, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:88, column:195,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:195,the value of plot_cost is         : 2.2152764901319237 

 At row:88, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:88, column:196,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:196,the value of plot_cost is         : 2.238505340774223 

 At row:88, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:88, column:197,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:197,the value of plot_cost is         : 2.2625422518190383 

 At row:88, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:88, column:198,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:198,the value of plot_cost is         : 2.287387223266368 

 At row:88, column:199,the value of plot_t0 is           : 3.0
 At row:88, column:199,the value of plot_t1 is           : 0.7688442211055277
 At row:88, column:199,the value of plot_cost is         : 2.3130402551162135 

 At row:89, column:0,the value of plot_t0 is           : -1.0
 At row:89, column:0,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:0,the value of plot_cost is         : 12.60369063551786 

 At row:89, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:89, column:1,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:1,the value of plot_cost is         : 12.472025850718056 

 At row:89, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:89, column:2,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:2,the value of plot_cost is         : 12.341169126320764 

 At row:89, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:89, column:3,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:3,the value of plot_cost is         : 12.211120462325988 

 At row:89, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:89, column:4,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:4,the value of plot_cost is         : 12.081879858733725 

 At row:89, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:89, column:5,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:5,the value of plot_cost is         : 11.953447315543979 

 At row:89, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:89, column:6,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:6,the value of plot_cost is         : 11.825822832756748 

 At row:89, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:89, column:7,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:7,the value of plot_cost is         : 11.69900641037203 

 At row:89, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:89, column:8,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:8,the value of plot_cost is         : 11.57299804838983 

 At row:89, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:89, column:9,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:9,the value of plot_cost is         : 11.447797746810146 

 At row:89, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:89, column:10,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:10,the value of plot_cost is         : 11.323405505632975 

 At row:89, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:89, column:11,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:11,the value of plot_cost is         : 11.199821324858322 

 At row:89, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:89, column:12,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:12,the value of plot_cost is         : 11.077045204486177 

 At row:89, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:89, column:13,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:13,the value of plot_cost is         : 10.955077144516554 

 At row:89, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:89, column:14,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:14,the value of plot_cost is         : 10.83391714494944 

 At row:89, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:89, column:15,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:15,the value of plot_cost is         : 10.713565205784848 

 At row:89, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:89, column:16,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:16,the value of plot_cost is         : 10.594021327022766 

 At row:89, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:89, column:17,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:17,the value of plot_cost is         : 10.475285508663204 

 At row:89, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:89, column:18,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:18,the value of plot_cost is         : 10.357357750706152 

 At row:89, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:89, column:19,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:19,the value of plot_cost is         : 10.240238053151616 

 At row:89, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:89, column:20,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:20,the value of plot_cost is         : 10.123926415999597 

 At row:89, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:89, column:21,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:21,the value of plot_cost is         : 10.008422839250091 

 At row:89, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:89, column:22,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:22,the value of plot_cost is         : 9.893727322903102 

 At row:89, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:89, column:23,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:23,the value of plot_cost is         : 9.779839866958627 

 At row:89, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:89, column:24,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:24,the value of plot_cost is         : 9.666760471416666 

 At row:89, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:89, column:25,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:25,the value of plot_cost is         : 9.55448913627722 

 At row:89, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:89, column:26,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:26,the value of plot_cost is         : 9.443025861540296 

 At row:89, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:89, column:27,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:27,the value of plot_cost is         : 9.33237064720588 

 At row:89, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:89, column:28,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:28,the value of plot_cost is         : 9.222523493273982 

 At row:89, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:89, column:29,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:29,the value of plot_cost is         : 9.113484399744594 

 At row:89, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:89, column:30,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:30,the value of plot_cost is         : 9.005253366617726 

 At row:89, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:89, column:31,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:31,the value of plot_cost is         : 8.897830393893374 

 At row:89, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:89, column:32,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:32,the value of plot_cost is         : 8.791215481571534 

 At row:89, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:89, column:33,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:33,the value of plot_cost is         : 8.68540862965221 

 At row:89, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:89, column:34,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:34,the value of plot_cost is         : 8.5804098381354 

 At row:89, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:89, column:35,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:35,the value of plot_cost is         : 8.476219107021107 

 At row:89, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:89, column:36,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:36,the value of plot_cost is         : 8.37283643630933 

 At row:89, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:89, column:37,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:37,the value of plot_cost is         : 8.270261826000064 

 At row:89, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:89, column:38,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:38,the value of plot_cost is         : 8.168495276093317 

 At row:89, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:89, column:39,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:39,the value of plot_cost is         : 8.067536786589082 

 At row:89, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:89, column:40,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:40,the value of plot_cost is         : 7.967386357487365 

 At row:89, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:89, column:41,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:41,the value of plot_cost is         : 7.8680439887881635 

 At row:89, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:89, column:42,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:42,the value of plot_cost is         : 7.769509680491474 

 At row:89, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:89, column:43,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:43,the value of plot_cost is         : 7.6717834325973016 

 At row:89, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:89, column:44,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:44,the value of plot_cost is         : 7.574865245105642 

 At row:89, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:89, column:45,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:45,the value of plot_cost is         : 7.478755118016501 

 At row:89, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:89, column:46,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:46,the value of plot_cost is         : 7.383453051329874 

 At row:89, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:89, column:47,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:47,the value of plot_cost is         : 7.28895904504576 

 At row:89, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:89, column:48,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:48,the value of plot_cost is         : 7.195273099164164 

 At row:89, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:89, column:49,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:49,the value of plot_cost is         : 7.102395213685081 

 At row:89, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:89, column:50,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:50,the value of plot_cost is         : 7.010325388608514 

 At row:89, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:89, column:51,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:51,the value of plot_cost is         : 6.919063623934463 

 At row:89, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:89, column:52,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:52,the value of plot_cost is         : 6.828609919662924 

 At row:89, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:89, column:53,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:53,the value of plot_cost is         : 6.738964275793903 

 At row:89, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:89, column:54,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:54,the value of plot_cost is         : 6.650126692327395 

 At row:89, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:89, column:55,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:55,the value of plot_cost is         : 6.562097169263403 

 At row:89, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:89, column:56,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:56,the value of plot_cost is         : 6.474875706601926 

 At row:89, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:89, column:57,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:57,the value of plot_cost is         : 6.388462304342964 

 At row:89, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:89, column:58,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:58,the value of plot_cost is         : 6.302856962486518 

 At row:89, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:89, column:59,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:59,the value of plot_cost is         : 6.218059681032586 

 At row:89, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:89, column:60,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:60,the value of plot_cost is         : 6.13407045998117 

 At row:89, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:89, column:61,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:61,the value of plot_cost is         : 6.05088929933227 

 At row:89, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:89, column:62,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:62,the value of plot_cost is         : 5.968516199085881 

 At row:89, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:89, column:63,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:63,the value of plot_cost is         : 5.886951159242011 

 At row:89, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:89, column:64,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:64,the value of plot_cost is         : 5.806194179800654 

 At row:89, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:89, column:65,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:65,the value of plot_cost is         : 5.726245260761813 

 At row:89, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:89, column:66,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:66,the value of plot_cost is         : 5.647104402125489 

 At row:89, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:89, column:67,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:67,the value of plot_cost is         : 5.568771603891677 

 At row:89, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:89, column:68,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:68,the value of plot_cost is         : 5.491246866060382 

 At row:89, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:89, column:69,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:69,the value of plot_cost is         : 5.414530188631601 

 At row:89, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:89, column:70,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:70,the value of plot_cost is         : 5.338621571605336 

 At row:89, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:89, column:71,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:71,the value of plot_cost is         : 5.263521014981586 

 At row:89, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:89, column:72,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:72,the value of plot_cost is         : 5.189228518760348 

 At row:89, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:89, column:73,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:73,the value of plot_cost is         : 5.115744082941629 

 At row:89, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:89, column:74,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:74,the value of plot_cost is         : 5.043067707525424 

 At row:89, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:89, column:75,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:75,the value of plot_cost is         : 4.971199392511733 

 At row:89, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:89, column:76,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:76,the value of plot_cost is         : 4.90013913790056 

 At row:89, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:89, column:77,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:77,the value of plot_cost is         : 4.829886943691899 

 At row:89, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:89, column:78,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:78,the value of plot_cost is         : 4.7604428098857525 

 At row:89, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:89, column:79,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:79,the value of plot_cost is         : 4.691806736482124 

 At row:89, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:89, column:80,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:80,the value of plot_cost is         : 4.6239787234810095 

 At row:89, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:89, column:81,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:81,the value of plot_cost is         : 4.556958770882411 

 At row:89, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:89, column:82,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:82,the value of plot_cost is         : 4.490746878686324 

 At row:89, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:89, column:83,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:83,the value of plot_cost is         : 4.425343046892755 

 At row:89, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:89, column:84,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:84,the value of plot_cost is         : 4.360747275501701 

 At row:89, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:89, column:85,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:85,the value of plot_cost is         : 4.296959564513163 

 At row:89, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:89, column:86,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:86,the value of plot_cost is         : 4.233979913927139 

 At row:89, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:89, column:87,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:87,the value of plot_cost is         : 4.171808323743629 

 At row:89, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:89, column:88,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:88,the value of plot_cost is         : 4.110444793962634 

 At row:89, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:89, column:89,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:89,the value of plot_cost is         : 4.049889324584156 

 At row:89, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:89, column:90,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:90,the value of plot_cost is         : 3.9901419156081923 

 At row:89, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:89, column:91,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:91,the value of plot_cost is         : 3.9312025670347444 

 At row:89, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:89, column:92,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:92,the value of plot_cost is         : 3.8730712788638098 

 At row:89, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:89, column:93,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:93,the value of plot_cost is         : 3.8157480510953903 

 At row:89, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:89, column:94,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:94,the value of plot_cost is         : 3.7592328837294873 

 At row:89, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:89, column:95,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:95,the value of plot_cost is         : 3.7035257767661 

 At row:89, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:89, column:96,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:96,the value of plot_cost is         : 3.648626730205227 

 At row:89, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:89, column:97,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:97,the value of plot_cost is         : 3.594535744046868 

 At row:89, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:89, column:98,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:98,the value of plot_cost is         : 3.5412528182910235 

 At row:89, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:89, column:99,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:99,the value of plot_cost is         : 3.488777952937697 

 At row:89, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:89, column:100,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:100,the value of plot_cost is         : 3.4371111479868843 

 At row:89, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:89, column:101,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:101,the value of plot_cost is         : 3.386252403438587 

 At row:89, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:89, column:102,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:102,the value of plot_cost is         : 3.3362017192928035 

 At row:89, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:89, column:103,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:103,the value of plot_cost is         : 3.286959095549535 

 At row:89, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:89, column:104,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:104,the value of plot_cost is         : 3.2385245322087823 

 At row:89, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:89, column:105,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:105,the value of plot_cost is         : 3.1908980292705458 

 At row:89, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:89, column:106,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:106,the value of plot_cost is         : 3.144079586734824 

 At row:89, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:89, column:107,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:107,the value of plot_cost is         : 3.098069204601616 

 At row:89, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:89, column:108,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:108,the value of plot_cost is         : 3.052866882870922 

 At row:89, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:89, column:109,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:109,the value of plot_cost is         : 3.008472621542746 

 At row:89, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:89, column:110,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:110,the value of plot_cost is         : 2.9648864206170846 

 At row:89, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:89, column:111,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:111,the value of plot_cost is         : 2.922108280093938 

 At row:89, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:89, column:112,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:112,the value of plot_cost is         : 2.880138199973306 

 At row:89, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:89, column:113,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:113,the value of plot_cost is         : 2.838976180255188 

 At row:89, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:89, column:114,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:114,the value of plot_cost is         : 2.7986222209395866 

 At row:89, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:89, column:115,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:115,the value of plot_cost is         : 2.7590763220265004 

 At row:89, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:89, column:116,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:116,the value of plot_cost is         : 2.72033848351593 

 At row:89, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:89, column:117,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:117,the value of plot_cost is         : 2.682408705407873 

 At row:89, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:89, column:118,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:118,the value of plot_cost is         : 2.6452869877023306 

 At row:89, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:89, column:119,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:119,the value of plot_cost is         : 2.6089733303993046 

 At row:89, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:89, column:120,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:120,the value of plot_cost is         : 2.5734677334987937 

 At row:89, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:89, column:121,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:121,the value of plot_cost is         : 2.5387701970007983 

 At row:89, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:89, column:122,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:122,the value of plot_cost is         : 2.5048807209053168 

 At row:89, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:89, column:123,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:123,the value of plot_cost is         : 2.4717993052123504 

 At row:89, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:89, column:124,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:124,the value of plot_cost is         : 2.439525949921899 

 At row:89, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:89, column:125,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:125,the value of plot_cost is         : 2.4080606550339647 

 At row:89, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:89, column:126,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:126,the value of plot_cost is         : 2.3774034205485446 

 At row:89, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:89, column:127,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:127,the value of plot_cost is         : 2.3475542464656383 

 At row:89, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:89, column:128,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:128,the value of plot_cost is         : 2.3185131327852466 

 At row:89, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:89, column:129,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:129,the value of plot_cost is         : 2.290280079507372 

 At row:89, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:89, column:130,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:130,the value of plot_cost is         : 2.2628550866320123 

 At row:89, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:89, column:131,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:131,the value of plot_cost is         : 2.236238154159168 

 At row:89, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:89, column:132,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:132,the value of plot_cost is         : 2.2104292820888367 

 At row:89, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:89, column:133,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:133,the value of plot_cost is         : 2.1854284704210207 

 At row:89, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:89, column:134,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:134,the value of plot_cost is         : 2.161235719155721 

 At row:89, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:89, column:135,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:135,the value of plot_cost is         : 2.1378510282929373 

 At row:89, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:89, column:136,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:136,the value of plot_cost is         : 2.115274397832668 

 At row:89, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:89, column:137,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:137,the value of plot_cost is         : 2.0935058277749126 

 At row:89, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:89, column:138,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:138,the value of plot_cost is         : 2.0725453181196722 

 At row:89, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:89, column:139,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:139,the value of plot_cost is         : 2.052392868866948 

 At row:89, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:89, column:140,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:140,the value of plot_cost is         : 2.033048480016739 

 At row:89, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:89, column:141,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:141,the value of plot_cost is         : 2.014512151569045 

 At row:89, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:89, column:142,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:142,the value of plot_cost is         : 1.9967838835238654 

 At row:89, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:89, column:143,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:143,the value of plot_cost is         : 1.9798636758812005 

 At row:89, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:89, column:144,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:144,the value of plot_cost is         : 1.9637515286410518 

 At row:89, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:89, column:145,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:145,the value of plot_cost is         : 1.9484474418034188 

 At row:89, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:89, column:146,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:146,the value of plot_cost is         : 1.9339514153683002 

 At row:89, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:89, column:147,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:147,the value of plot_cost is         : 1.9202634493356954 

 At row:89, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:89, column:148,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:148,the value of plot_cost is         : 1.9073835437056061 

 At row:89, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:89, column:149,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:149,the value of plot_cost is         : 1.8953116984780327 

 At row:89, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:89, column:150,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:150,the value of plot_cost is         : 1.8840479136529753 

 At row:89, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:89, column:151,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:151,the value of plot_cost is         : 1.873592189230431 

 At row:89, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:89, column:152,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:152,the value of plot_cost is         : 1.8639445252104028 

 At row:89, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:89, column:153,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:153,the value of plot_cost is         : 1.855104921592889 

 At row:89, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:89, column:154,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:154,the value of plot_cost is         : 1.8470733783778912 

 At row:89, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:89, column:155,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:155,the value of plot_cost is         : 1.8398498955654088 

 At row:89, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:89, column:156,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:156,the value of plot_cost is         : 1.8334344731554402 

 At row:89, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:89, column:157,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:157,the value of plot_cost is         : 1.8278271111479873 

 At row:89, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:89, column:158,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:158,the value of plot_cost is         : 1.8230278095430488 

 At row:89, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:89, column:159,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:159,the value of plot_cost is         : 1.8190365683406267 

 At row:89, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:89, column:160,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:160,the value of plot_cost is         : 1.8158533875407197 

 At row:89, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:89, column:161,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:161,the value of plot_cost is         : 1.8134782671433267 

 At row:89, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:89, column:162,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:162,the value of plot_cost is         : 1.8119112071484489 

 At row:89, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:89, column:163,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:163,the value of plot_cost is         : 1.8111522075560862 

 At row:89, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:89, column:164,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:164,the value of plot_cost is         : 1.811201268366239 

 At row:89, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:89, column:165,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:165,the value of plot_cost is         : 1.8120583895789082 

 At row:89, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:89, column:166,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:166,the value of plot_cost is         : 1.8137235711940902 

 At row:89, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:89, column:167,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:167,the value of plot_cost is         : 1.816196813211788 

 At row:89, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:89, column:168,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:168,the value of plot_cost is         : 1.8194781156320003 

 At row:89, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:89, column:169,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:169,the value of plot_cost is         : 1.8235674784547289 

 At row:89, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:89, column:170,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:170,the value of plot_cost is         : 1.828464901679973 

 At row:89, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:89, column:171,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:171,the value of plot_cost is         : 1.834170385307731 

 At row:89, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:89, column:172,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:172,the value of plot_cost is         : 1.8406839293380044 

 At row:89, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:89, column:173,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:173,the value of plot_cost is         : 1.8480055337707921 

 At row:89, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:89, column:174,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:174,the value of plot_cost is         : 1.856135198606096 

 At row:89, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:89, column:175,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:175,the value of plot_cost is         : 1.8650729238439157 

 At row:89, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:89, column:176,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:176,the value of plot_cost is         : 1.8748187094842488 

 At row:89, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:89, column:177,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:177,the value of plot_cost is         : 1.8853725555270973 

 At row:89, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:89, column:178,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:178,the value of plot_cost is         : 1.8967344619724609 

 At row:89, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:89, column:179,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:179,the value of plot_cost is         : 1.9089044288203403 

 At row:89, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:89, column:180,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:180,the value of plot_cost is         : 1.9218824560707357 

 At row:89, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:89, column:181,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:181,the value of plot_cost is         : 1.935668543723644 

 At row:89, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:89, column:182,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:182,the value of plot_cost is         : 1.9502626917790677 

 At row:89, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:89, column:183,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:183,the value of plot_cost is         : 1.965664900237007 

 At row:89, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:89, column:184,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:184,the value of plot_cost is         : 1.9818751690974614 

 At row:89, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:89, column:185,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:185,the value of plot_cost is         : 1.9988934983604318 

 At row:89, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:89, column:186,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:186,the value of plot_cost is         : 2.016719888025916 

 At row:89, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:89, column:187,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:187,the value of plot_cost is         : 2.035354338093916 

 At row:89, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:89, column:188,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:188,the value of plot_cost is         : 2.05479684856443 

 At row:89, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:89, column:189,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:189,the value of plot_cost is         : 2.07504741943746 

 At row:89, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:89, column:190,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:190,the value of plot_cost is         : 2.096106050713006 

 At row:89, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:89, column:191,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:191,the value of plot_cost is         : 2.117972742391066 

 At row:89, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:89, column:192,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:192,the value of plot_cost is         : 2.1406474944716405 

 At row:89, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:89, column:193,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:193,the value of plot_cost is         : 2.16413030695473 

 At row:89, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:89, column:194,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:194,the value of plot_cost is         : 2.1884211798403364 

 At row:89, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:89, column:195,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:195,the value of plot_cost is         : 2.213520113128457 

 At row:89, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:89, column:196,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:196,the value of plot_cost is         : 2.2394271068190927 

 At row:89, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:89, column:197,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:197,the value of plot_cost is         : 2.2661421609122425 

 At row:89, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:89, column:198,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:198,the value of plot_cost is         : 2.293665275407908 

 At row:89, column:199,the value of plot_t0 is           : 3.0
 At row:89, column:199,the value of plot_t1 is           : 0.7889447236180904
 At row:89, column:199,the value of plot_cost is         : 2.3219964503060893 

 At row:90, column:0,the value of plot_t0 is           : -1.0
 At row:90, column:0,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:0,the value of plot_cost is         : 12.092279018928089 

 At row:90, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:90, column:1,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:1,the value of plot_cost is         : 11.963292377176622 

 At row:90, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:90, column:2,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:2,the value of plot_cost is         : 11.835113795827661 

 At row:90, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:90, column:3,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:3,the value of plot_cost is         : 11.70774327488122 

 At row:90, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:90, column:4,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:4,the value of plot_cost is         : 11.581180814337294 

 At row:90, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:90, column:5,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:5,the value of plot_cost is         : 11.455426414195887 

 At row:90, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:90, column:6,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:6,the value of plot_cost is         : 11.330480074456993 

 At row:90, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:90, column:7,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:7,the value of plot_cost is         : 11.206341795120611 

 At row:90, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:90, column:8,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:8,the value of plot_cost is         : 11.083011576186747 

 At row:90, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:90, column:9,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:9,the value of plot_cost is         : 10.960489417655396 

 At row:90, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:90, column:10,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:10,the value of plot_cost is         : 10.83877531952656 

 At row:90, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:90, column:11,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:11,the value of plot_cost is         : 10.71786928180024 

 At row:90, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:90, column:12,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:12,the value of plot_cost is         : 10.597771304476433 

 At row:90, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:90, column:13,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:13,the value of plot_cost is         : 10.478481387555147 

 At row:90, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:90, column:14,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:14,the value of plot_cost is         : 10.359999531036369 

 At row:90, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:90, column:15,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:15,the value of plot_cost is         : 10.24232573492011 

 At row:90, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:90, column:16,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:16,the value of plot_cost is         : 10.125459999206369 

 At row:90, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:90, column:17,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:17,the value of plot_cost is         : 10.009402323895136 

 At row:90, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:90, column:18,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:18,the value of plot_cost is         : 9.894152708986423 

 At row:90, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:90, column:19,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:19,the value of plot_cost is         : 9.779711154480223 

 At row:90, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:90, column:20,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:20,the value of plot_cost is         : 9.666077660376539 

 At row:90, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:90, column:21,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:21,the value of plot_cost is         : 9.55325222667537 

 At row:90, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:90, column:22,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:22,the value of plot_cost is         : 9.441234853376717 

 At row:90, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:90, column:23,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:23,the value of plot_cost is         : 9.330025540480577 

 At row:90, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:90, column:24,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:24,the value of plot_cost is         : 9.219624287986951 

 At row:90, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:90, column:25,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:25,the value of plot_cost is         : 9.110031095895843 

 At row:90, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:90, column:26,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:26,the value of plot_cost is         : 9.00124596420725 

 At row:90, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:90, column:27,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:27,the value of plot_cost is         : 8.89326889292117 

 At row:90, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:90, column:28,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:28,the value of plot_cost is         : 8.78609988203761 

 At row:90, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:90, column:29,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:29,the value of plot_cost is         : 8.679738931556559 

 At row:90, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:90, column:30,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:30,the value of plot_cost is         : 8.574186041478027 

 At row:90, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:90, column:31,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:31,the value of plot_cost is         : 8.469441211802009 

 At row:90, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:90, column:32,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:32,the value of plot_cost is         : 8.365504442528504 

 At row:90, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:90, column:33,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:33,the value of plot_cost is         : 8.262375733657517 

 At row:90, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:90, column:34,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:34,the value of plot_cost is         : 8.160055085189045 

 At row:90, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:90, column:35,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:35,the value of plot_cost is         : 8.058542497123085 

 At row:90, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:90, column:36,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:36,the value of plot_cost is         : 7.957837969459644 

 At row:90, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:90, column:37,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:37,the value of plot_cost is         : 7.857941502198715 

 At row:90, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:90, column:38,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:38,the value of plot_cost is         : 7.758853095340304 

 At row:90, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:90, column:39,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:39,the value of plot_cost is         : 7.6605727488844035 

 At row:90, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:90, column:40,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:40,the value of plot_cost is         : 7.563100462831024 

 At row:90, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:90, column:41,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:41,the value of plot_cost is         : 7.466436237180157 

 At row:90, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:90, column:42,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:42,the value of plot_cost is         : 7.370580071931803 

 At row:90, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:90, column:43,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:43,the value of plot_cost is         : 7.275531967085966 

 At row:90, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:90, column:44,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:44,the value of plot_cost is         : 7.181291922642643 

 At row:90, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:90, column:45,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:45,the value of plot_cost is         : 7.087859938601836 

 At row:90, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:90, column:46,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:46,the value of plot_cost is         : 6.995236014963546 

 At row:90, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:90, column:47,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:47,the value of plot_cost is         : 6.903420151727768 

 At row:90, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:90, column:48,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:48,the value of plot_cost is         : 6.812412348894507 

 At row:90, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:90, column:49,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:49,the value of plot_cost is         : 6.722212606463759 

 At row:90, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:90, column:50,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:50,the value of plot_cost is         : 6.632820924435529 

 At row:90, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:90, column:51,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:51,the value of plot_cost is         : 6.544237302809813 

 At row:90, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:90, column:52,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:52,the value of plot_cost is         : 6.456461741586609 

 At row:90, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:90, column:53,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:53,the value of plot_cost is         : 6.369494240765925 

 At row:90, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:90, column:54,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:54,the value of plot_cost is         : 6.283334800347751 

 At row:90, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:90, column:55,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:55,the value of plot_cost is         : 6.197983420332096 

 At row:90, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:90, column:56,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:56,the value of plot_cost is         : 6.113440100718956 

 At row:90, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:90, column:57,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:57,the value of plot_cost is         : 6.0297048415083285 

 At row:90, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:90, column:58,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:58,the value of plot_cost is         : 5.946777642700219 

 At row:90, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:90, column:59,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:59,the value of plot_cost is         : 5.8646585042946215 

 At row:90, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:90, column:60,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:60,the value of plot_cost is         : 5.7833474262915425 

 At row:90, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:90, column:61,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:61,the value of plot_cost is         : 5.702844408690978 

 At row:90, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:90, column:62,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:62,the value of plot_cost is         : 5.623149451492925 

 At row:90, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:90, column:63,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:63,the value of plot_cost is         : 5.544262554697391 

 At row:90, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:90, column:64,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:64,the value of plot_cost is         : 5.466183718304368 

 At row:90, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:90, column:65,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:65,the value of plot_cost is         : 5.3889129423138655 

 At row:90, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:90, column:66,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:66,the value of plot_cost is         : 5.3124502267258755 

 At row:90, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:90, column:67,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:67,the value of plot_cost is         : 5.2367955715404 

 At row:90, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:90, column:68,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:68,the value of plot_cost is         : 5.16194897675744 

 At row:90, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:90, column:69,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:69,the value of plot_cost is         : 5.0879104423769945 

 At row:90, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:90, column:70,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:70,the value of plot_cost is         : 5.014679968399065 

 At row:90, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:90, column:71,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:71,the value of plot_cost is         : 4.942257554823651 

 At row:90, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:90, column:72,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:72,the value of plot_cost is         : 4.870643201650751 

 At row:90, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:90, column:73,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:73,the value of plot_cost is         : 4.7998369088803665 

 At row:90, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:90, column:74,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:74,the value of plot_cost is         : 4.729838676512496 

 At row:90, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:90, column:75,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:75,the value of plot_cost is         : 4.660648504547142 

 At row:90, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:90, column:76,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:76,the value of plot_cost is         : 4.592266392984303 

 At row:90, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:90, column:77,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:77,the value of plot_cost is         : 4.524692341823979 

 At row:90, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:90, column:78,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:78,the value of plot_cost is         : 4.457926351066168 

 At row:90, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:90, column:79,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:79,the value of plot_cost is         : 4.3919684207108745 

 At row:90, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:90, column:80,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:80,the value of plot_cost is         : 4.326818550758096 

 At row:90, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:90, column:81,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:81,the value of plot_cost is         : 4.262476741207834 

 At row:90, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:90, column:82,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:82,the value of plot_cost is         : 4.198942992060084 

 At row:90, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:90, column:83,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:83,the value of plot_cost is         : 4.136217303314848 

 At row:90, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:90, column:84,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:84,the value of plot_cost is         : 4.0742996749721305 

 At row:90, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:90, column:85,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:85,the value of plot_cost is         : 4.013190107031928 

 At row:90, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:90, column:86,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:86,the value of plot_cost is         : 3.952888599494241 

 At row:90, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:90, column:87,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:87,the value of plot_cost is         : 3.8933951523590657 

 At row:90, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:90, column:88,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:88,the value of plot_cost is         : 3.834709765626407 

 At row:90, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:90, column:89,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:89,the value of plot_cost is         : 3.776832439296264 

 At row:90, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:90, column:90,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:90,the value of plot_cost is         : 3.7197631733686363 

 At row:90, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:90, column:91,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:91,the value of plot_cost is         : 3.6635019678435246 

 At row:90, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:90, column:92,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:92,the value of plot_cost is         : 3.6080488227209253 

 At row:90, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:90, column:93,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:93,the value of plot_cost is         : 3.553403738000842 

 At row:90, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:90, column:94,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:94,the value of plot_cost is         : 3.4995667136832744 

 At row:90, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:90, column:95,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:95,the value of plot_cost is         : 3.446537749768223 

 At row:90, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:90, column:96,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:96,the value of plot_cost is         : 3.394316846255686 

 At row:90, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:90, column:97,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:97,the value of plot_cost is         : 3.3429040031456627 

 At row:90, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:90, column:98,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:98,the value of plot_cost is         : 3.292299220438154 

 At row:90, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:90, column:99,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:99,the value of plot_cost is         : 3.2425024981331623 

 At row:90, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:90, column:100,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:100,the value of plot_cost is         : 3.1935138362306863 

 At row:90, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:90, column:101,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:101,the value of plot_cost is         : 3.145333234730725 

 At row:90, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:90, column:102,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:102,the value of plot_cost is         : 3.0979606936332766 

 At row:90, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:90, column:103,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:103,the value of plot_cost is         : 3.0513962129383434 

 At row:90, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:90, column:104,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:104,the value of plot_cost is         : 3.0056397926459275 

 At row:90, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:90, column:105,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:105,the value of plot_cost is         : 2.9606914327560263 

 At row:90, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:90, column:106,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:106,the value of plot_cost is         : 2.91655113326864 

 At row:90, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:90, column:107,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:107,the value of plot_cost is         : 2.8732188941837675 

 At row:90, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:90, column:108,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:108,the value of plot_cost is         : 2.83069471550141 

 At row:90, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:90, column:109,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:109,the value of plot_cost is         : 2.7889785972215697 

 At row:90, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:90, column:110,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:110,the value of plot_cost is         : 2.7480705393442437 

 At row:90, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:90, column:111,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:111,the value of plot_cost is         : 2.7079705418694333 

 At row:90, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:90, column:112,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:112,the value of plot_cost is         : 2.6686786047971363 

 At row:90, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:90, column:113,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:113,the value of plot_cost is         : 2.630194728127354 

 At row:90, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:90, column:114,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:114,the value of plot_cost is         : 2.5925189118600884 

 At row:90, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:90, column:115,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:115,the value of plot_cost is         : 2.5556511559953385 

 At row:90, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:90, column:116,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:116,the value of plot_cost is         : 2.5195914605331033 

 At row:90, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:90, column:117,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:117,the value of plot_cost is         : 2.484339825473382 

 At row:90, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:90, column:118,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:118,the value of plot_cost is         : 2.4498962508161752 

 At row:90, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:90, column:119,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:119,the value of plot_cost is         : 2.4162607365614854 

 At row:90, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:90, column:120,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:120,the value of plot_cost is         : 2.3834332827093103 

 At row:90, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:90, column:121,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:121,the value of plot_cost is         : 2.351413889259651 

 At row:90, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:90, column:122,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:122,the value of plot_cost is         : 2.3202025562125046 

 At row:90, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:90, column:123,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:123,the value of plot_cost is         : 2.289799283567874 

 At row:90, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:90, column:124,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:124,the value of plot_cost is         : 2.2602040713257594 

 At row:90, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:90, column:125,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:125,the value of plot_cost is         : 2.23141691948616 

 At row:90, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:90, column:126,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:126,the value of plot_cost is         : 2.2034378280490756 

 At row:90, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:90, column:127,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:127,the value of plot_cost is         : 2.176266797014504 

 At row:90, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:90, column:128,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:128,the value of plot_cost is         : 2.1499038263824493 

 At row:90, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:90, column:129,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:129,the value of plot_cost is         : 2.12434891615291 

 At row:90, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:90, column:130,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:130,the value of plot_cost is         : 2.099602066325886 

 At row:90, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:90, column:131,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:131,the value of plot_cost is         : 2.075663276901377 

 At row:90, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:90, column:132,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:132,the value of plot_cost is         : 2.0525325478793817 

 At row:90, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:90, column:133,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:133,the value of plot_cost is         : 2.0302098792599015 

 At row:90, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:90, column:134,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:134,the value of plot_cost is         : 2.0086952710429387 

 At row:90, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:90, column:135,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:135,the value of plot_cost is         : 1.9879887232284896 

 At row:90, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:90, column:136,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:136,the value of plot_cost is         : 1.9680902358165564 

 At row:90, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:90, column:137,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:137,the value of plot_cost is         : 1.948999808807136 

 At row:90, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:90, column:138,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:138,the value of plot_cost is         : 1.9307174422002318 

 At row:90, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:90, column:139,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:139,the value of plot_cost is         : 1.9132431359958437 

 At row:90, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:90, column:140,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:140,the value of plot_cost is         : 1.8965768901939706 

 At row:90, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:90, column:141,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:141,the value of plot_cost is         : 1.8807187047946121 

 At row:90, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:90, column:142,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:142,the value of plot_cost is         : 1.8656685797977675 

 At row:90, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:90, column:143,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:143,the value of plot_cost is         : 1.8514265152034386 

 At row:90, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:90, column:144,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:144,the value of plot_cost is         : 1.8379925110116262 

 At row:90, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:90, column:145,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:145,the value of plot_cost is         : 1.8253665672223285 

 At row:90, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:90, column:146,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:146,the value of plot_cost is         : 1.8135486838355455 

 At row:90, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:90, column:147,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:147,the value of plot_cost is         : 1.8025388608512762 

 At row:90, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:90, column:148,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:148,the value of plot_cost is         : 1.792337098269523 

 At row:90, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:90, column:149,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:149,the value of plot_cost is         : 1.7829433960902858 

 At row:90, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:90, column:150,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:150,the value of plot_cost is         : 1.7743577543135636 

 At row:90, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:90, column:151,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:151,the value of plot_cost is         : 1.766580172939355 

 At row:90, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:90, column:152,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:152,the value of plot_cost is         : 1.7596106519676626 

 At row:90, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:90, column:153,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:153,the value of plot_cost is         : 1.7534491913984847 

 At row:90, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:90, column:154,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:154,the value of plot_cost is         : 1.748095791231823 

 At row:90, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:90, column:155,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:155,the value of plot_cost is         : 1.7435504514676758 

 At row:90, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:90, column:156,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:156,the value of plot_cost is         : 1.739813172106043 

 At row:90, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:90, column:157,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:157,the value of plot_cost is         : 1.7368839531469258 

 At row:90, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:90, column:158,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:158,the value of plot_cost is         : 1.7347627945903232 

 At row:90, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:90, column:159,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:159,the value of plot_cost is         : 1.733449696436237 

 At row:90, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:90, column:160,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:160,the value of plot_cost is         : 1.7329446586846657 

 At row:90, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:90, column:161,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:161,the value of plot_cost is         : 1.733247681335608 

 At row:90, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:90, column:162,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:162,the value of plot_cost is         : 1.7343587643890663 

 At row:90, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:90, column:163,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:163,the value of plot_cost is         : 1.736277907845039 

 At row:90, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:90, column:164,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:164,the value of plot_cost is         : 1.7390051117035281 

 At row:90, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:90, column:165,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:165,the value of plot_cost is         : 1.7425403759645324 

 At row:90, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:90, column:166,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:166,the value of plot_cost is         : 1.7468837006280498 

 At row:90, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:90, column:167,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:167,the value of plot_cost is         : 1.7520350856940834 

 At row:90, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:90, column:168,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:168,the value of plot_cost is         : 1.7579945311626324 

 At row:90, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:90, column:169,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:169,the value of plot_cost is         : 1.7647620370336967 

 At row:90, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:90, column:170,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:170,the value of plot_cost is         : 1.7723376033072757 

 At row:90, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:90, column:171,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:171,the value of plot_cost is         : 1.7807212299833695 

 At row:90, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:90, column:172,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:172,the value of plot_cost is         : 1.7899129170619783 

 At row:90, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:90, column:173,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:173,the value of plot_cost is         : 1.7999126645431027 

 At row:90, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:90, column:174,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:174,the value of plot_cost is         : 1.8107204724267425 

 At row:90, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:90, column:175,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:175,the value of plot_cost is         : 1.8223363407128972 

 At row:90, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:90, column:176,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:176,the value of plot_cost is         : 1.8347602694015661 

 At row:90, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:90, column:177,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:177,the value of plot_cost is         : 1.8479922584927504 

 At row:90, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:90, column:178,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:178,the value of plot_cost is         : 1.86203230798645 

 At row:90, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:90, column:179,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:179,the value of plot_cost is         : 1.8768804178826657 

 At row:90, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:90, column:180,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:180,the value of plot_cost is         : 1.8925365881813956 

 At row:90, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:90, column:181,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:181,the value of plot_cost is         : 1.9090008188826397 

 At row:90, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:90, column:182,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:182,the value of plot_cost is         : 1.9262731099863994 

 At row:90, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:90, column:183,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:183,the value of plot_cost is         : 1.944353461492675 

 At row:90, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:90, column:184,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:184,the value of plot_cost is         : 1.9632418734014658 

 At row:90, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:90, column:185,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:185,the value of plot_cost is         : 1.9829383457127712 

 At row:90, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:90, column:186,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:186,the value of plot_cost is         : 2.0034428784265907 

 At row:90, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:90, column:187,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:187,the value of plot_cost is         : 2.024755471542926 

 At row:90, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:90, column:188,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:188,the value of plot_cost is         : 2.0468761250617766 

 At row:90, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:90, column:189,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:189,the value of plot_cost is         : 2.0698048389831425 

 At row:90, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:90, column:190,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:190,the value of plot_cost is         : 2.093541613307024 

 At row:90, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:90, column:191,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:191,the value of plot_cost is         : 2.118086448033419 

 At row:90, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:90, column:192,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:192,the value of plot_cost is         : 2.143439343162329 

 At row:90, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:90, column:193,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:193,the value of plot_cost is         : 2.1696002986937555 

 At row:90, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:90, column:194,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:194,the value of plot_cost is         : 2.1965693146276974 

 At row:90, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:90, column:195,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:195,the value of plot_cost is         : 2.2243463909641537 

 At row:90, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:90, column:196,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:196,the value of plot_cost is         : 2.252931527703124 

 At row:90, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:90, column:197,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:197,the value of plot_cost is         : 2.2823247248446115 

 At row:90, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:90, column:198,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:198,the value of plot_cost is         : 2.312525982388612 

 At row:90, column:199,the value of plot_t0 is           : 3.0
 At row:90, column:199,the value of plot_t1 is           : 0.8090452261306533
 At row:90, column:199,the value of plot_cost is         : 2.3435353003351285 

 At row:91, column:0,the value of plot_t0 is           : -1.0
 At row:91, column:0,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:0,the value of plot_cost is         : 11.593450057177488 

 At row:91, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:91, column:1,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:1,the value of plot_cost is         : 11.467141558474355 

 At row:91, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:91, column:2,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:2,the value of plot_cost is         : 11.341641120173735 

 At row:91, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:91, column:3,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:3,the value of plot_cost is         : 11.216948742275626 

 At row:91, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:91, column:4,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:4,the value of plot_cost is         : 11.093064424780039 

 At row:91, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:91, column:5,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:5,the value of plot_cost is         : 10.969988167686965 

 At row:91, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:91, column:6,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:6,the value of plot_cost is         : 10.847719970996407 

 At row:91, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:91, column:7,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:7,the value of plot_cost is         : 10.72625983470836 

 At row:91, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:91, column:8,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:8,the value of plot_cost is         : 10.60560775882283 

 At row:91, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:91, column:9,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:9,the value of plot_cost is         : 10.485763743339815 

 At row:91, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:91, column:10,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:10,the value of plot_cost is         : 10.366727788259315 

 At row:91, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:91, column:11,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:11,the value of plot_cost is         : 10.248499893581332 

 At row:91, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:91, column:12,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:12,the value of plot_cost is         : 10.131080059305862 

 At row:91, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:91, column:13,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:13,the value of plot_cost is         : 10.01446828543291 

 At row:91, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:91, column:14,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:14,the value of plot_cost is         : 9.898664571962469 

 At row:91, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:91, column:15,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:15,the value of plot_cost is         : 9.783668918894547 

 At row:91, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:91, column:16,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:16,the value of plot_cost is         : 9.669481326229135 

 At row:91, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:91, column:17,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:17,the value of plot_cost is         : 9.556101793966242 

 At row:91, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:91, column:18,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:18,the value of plot_cost is         : 9.443530322105865 

 At row:91, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:91, column:19,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:19,the value of plot_cost is         : 9.331766910648001 

 At row:91, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:91, column:20,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:20,the value of plot_cost is         : 9.220811559592653 

 At row:91, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:91, column:21,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:21,the value of plot_cost is         : 9.11066426893982 

 At row:91, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:91, column:22,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:22,the value of plot_cost is         : 9.0013250386895 

 At row:91, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:91, column:23,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:23,the value of plot_cost is         : 8.892793868841697 

 At row:91, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:91, column:24,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:24,the value of plot_cost is         : 8.785070759396408 

 At row:91, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:91, column:25,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:25,the value of plot_cost is         : 8.678155710353636 

 At row:91, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:91, column:26,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:26,the value of plot_cost is         : 8.572048721713378 

 At row:91, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:91, column:27,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:27,the value of plot_cost is         : 8.466749793475634 

 At row:91, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:91, column:28,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:28,the value of plot_cost is         : 8.362258925640408 

 At row:91, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:91, column:29,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:29,the value of plot_cost is         : 8.258576118207694 

 At row:91, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:91, column:30,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:30,the value of plot_cost is         : 8.155701371177496 

 At row:91, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:91, column:31,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:31,the value of plot_cost is         : 8.053634684549813 

 At row:91, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:91, column:32,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:32,the value of plot_cost is         : 7.952376058324647 

 At row:91, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:91, column:33,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:33,the value of plot_cost is         : 7.851925492501995 

 At row:91, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:91, column:34,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:34,the value of plot_cost is         : 7.752282987081856 

 At row:91, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:91, column:35,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:35,the value of plot_cost is         : 7.653448542064235 

 At row:91, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:91, column:36,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:36,the value of plot_cost is         : 7.555422157449128 

 At row:91, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:91, column:37,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:37,the value of plot_cost is         : 7.458203833236535 

 At row:91, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:91, column:38,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:38,the value of plot_cost is         : 7.3617935694264585 

 At row:91, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:91, column:39,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:39,the value of plot_cost is         : 7.266191366018895 

 At row:91, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:91, column:40,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:40,the value of plot_cost is         : 7.17139722301385 

 At row:91, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:91, column:41,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:41,the value of plot_cost is         : 7.077411140411319 

 At row:91, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:91, column:42,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:42,the value of plot_cost is         : 6.984233118211302 

 At row:91, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:91, column:43,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:43,the value of plot_cost is         : 6.891863156413801 

 At row:91, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:91, column:44,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:44,the value of plot_cost is         : 6.800301255018812 

 At row:91, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:91, column:45,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:45,the value of plot_cost is         : 6.709547414026342 

 At row:91, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:91, column:46,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:46,the value of plot_cost is         : 6.619601633436386 

 At row:91, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:91, column:47,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:47,the value of plot_cost is         : 6.530463913248945 

 At row:91, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:91, column:48,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:48,the value of plot_cost is         : 6.44213425346402 

 At row:91, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:91, column:49,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:49,the value of plot_cost is         : 6.354612654081607 

 At row:91, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:91, column:50,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:50,the value of plot_cost is         : 6.267899115101713 

 At row:91, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:91, column:51,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:51,the value of plot_cost is         : 6.18199363652433 

 At row:91, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:91, column:52,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:52,the value of plot_cost is         : 6.096896218349466 

 At row:91, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:91, column:53,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:53,the value of plot_cost is         : 6.012606860577115 

 At row:91, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:91, column:54,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:54,the value of plot_cost is         : 5.929125563207279 

 At row:91, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:91, column:55,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:55,the value of plot_cost is         : 5.846452326239959 

 At row:91, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:91, column:56,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:56,the value of plot_cost is         : 5.764587149675154 

 At row:91, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:91, column:57,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:57,the value of plot_cost is         : 5.683530033512863 

 At row:91, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:91, column:58,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:58,the value of plot_cost is         : 5.603280977753089 

 At row:91, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:91, column:59,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:59,the value of plot_cost is         : 5.5238399823958275 

 At row:91, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:91, column:60,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:60,the value of plot_cost is         : 5.445207047441083 

 At row:91, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:91, column:61,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:61,the value of plot_cost is         : 5.3673821728888536 

 At row:91, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:91, column:62,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:62,the value of plot_cost is         : 5.2903653587391375 

 At row:91, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:91, column:63,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:63,the value of plot_cost is         : 5.214156604991938 

 At row:91, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:91, column:64,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:64,the value of plot_cost is         : 5.138755911647253 

 At row:91, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:91, column:65,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:65,the value of plot_cost is         : 5.064163278705084 

 At row:91, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:91, column:66,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:66,the value of plot_cost is         : 4.99037870616543 

 At row:91, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:91, column:67,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:67,the value of plot_cost is         : 4.91740219402829 

 At row:91, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:91, column:68,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:68,the value of plot_cost is         : 4.845233742293667 

 At row:91, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:91, column:69,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:69,the value of plot_cost is         : 4.773873350961556 

 At row:91, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:91, column:70,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:70,the value of plot_cost is         : 4.703321020031962 

 At row:91, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:91, column:71,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:71,the value of plot_cost is         : 4.6335767495048845 

 At row:91, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:91, column:72,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:72,the value of plot_cost is         : 4.56464053938032 

 At row:91, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:91, column:73,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:73,the value of plot_cost is         : 4.496512389658271 

 At row:91, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:91, column:74,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:74,the value of plot_cost is         : 4.429192300338737 

 At row:91, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:91, column:75,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:75,the value of plot_cost is         : 4.362680271421718 

 At row:91, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:91, column:76,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:76,the value of plot_cost is         : 4.296976302907215 

 At row:91, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:91, column:77,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:77,the value of plot_cost is         : 4.232080394795227 

 At row:91, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:91, column:78,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:78,the value of plot_cost is         : 4.167992547085752 

 At row:91, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:91, column:79,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:79,the value of plot_cost is         : 4.104712759778794 

 At row:91, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:91, column:80,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:80,the value of plot_cost is         : 4.042241032874351 

 At row:91, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:91, column:81,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:81,the value of plot_cost is         : 3.9805773663724233 

 At row:91, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:91, column:82,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:82,the value of plot_cost is         : 3.9197217602730103 

 At row:91, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:91, column:83,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:83,the value of plot_cost is         : 3.859674214576111 

 At row:91, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:91, column:84,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:84,the value of plot_cost is         : 3.8004347292817293 

 At row:91, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:91, column:85,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:85,the value of plot_cost is         : 3.7420033043898613 

 At row:91, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:91, column:86,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:86,the value of plot_cost is         : 3.6843799399005093 

 At row:91, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:91, column:87,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:87,the value of plot_cost is         : 3.627564635813671 

 At row:91, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:91, column:88,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:88,the value of plot_cost is         : 3.5715573921293475 

 At row:91, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:91, column:89,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:89,the value of plot_cost is         : 3.5163582088475405 

 At row:91, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:91, column:90,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:90,the value of plot_cost is         : 3.4619670859682485 

 At row:91, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:91, column:91,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:91,the value of plot_cost is         : 3.4083840234914717 

 At row:91, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:91, column:92,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:92,the value of plot_cost is         : 3.355609021417209 

 At row:91, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:91, column:93,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:93,the value of plot_cost is         : 3.303642079745461 

 At row:91, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:91, column:94,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:94,the value of plot_cost is         : 3.2524831984762295 

 At row:91, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:91, column:95,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:95,the value of plot_cost is         : 3.2021323776095127 

 At row:91, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:91, column:96,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:96,the value of plot_cost is         : 3.152589617145311 

 At row:91, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:91, column:97,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:97,the value of plot_cost is         : 3.1038549170836243 

 At row:91, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:91, column:98,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:98,the value of plot_cost is         : 3.055928277424452 

 At row:91, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:91, column:99,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:99,the value of plot_cost is         : 3.008809698167796 

 At row:91, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:91, column:100,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:100,the value of plot_cost is         : 2.9624991793136544 

 At row:91, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:91, column:101,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:101,the value of plot_cost is         : 2.9169967208620284 

 At row:91, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:91, column:102,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:102,the value of plot_cost is         : 2.8723023228129163 

 At row:91, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:91, column:103,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:103,the value of plot_cost is         : 2.82841598516632 

 At row:91, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:91, column:104,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:104,the value of plot_cost is         : 2.785337707922239 

 At row:91, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:91, column:105,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:105,the value of plot_cost is         : 2.743067491080674 

 At row:91, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:91, column:106,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:106,the value of plot_cost is         : 2.701605334641623 

 At row:91, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:91, column:107,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:107,the value of plot_cost is         : 2.6609512386050866 

 At row:91, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:91, column:108,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:108,the value of plot_cost is         : 2.6211052029710653 

 At row:91, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:91, column:109,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:109,the value of plot_cost is         : 2.5820672277395595 

 At row:91, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:91, column:110,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:110,the value of plot_cost is         : 2.5438373129105694 

 At row:91, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:91, column:111,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:111,the value of plot_cost is         : 2.5064154584840943 

 At row:91, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:91, column:112,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:112,the value of plot_cost is         : 2.4698016644601335 

 At row:91, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:91, column:113,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:113,the value of plot_cost is         : 2.433995930838688 

 At row:91, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:91, column:114,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:114,the value of plot_cost is         : 2.3989982576197573 

 At row:91, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:91, column:115,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:115,the value of plot_cost is         : 2.3648086448033427 

 At row:91, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:91, column:116,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:116,the value of plot_cost is         : 2.331427092389443 

 At row:91, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:91, column:117,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:117,the value of plot_cost is         : 2.2988536003780577 

 At row:91, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:91, column:118,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:118,the value of plot_cost is         : 2.2670881687691873 

 At row:91, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:91, column:119,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:119,the value of plot_cost is         : 2.2361307975628324 

 At row:91, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:91, column:120,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:120,the value of plot_cost is         : 2.205981486758993 

 At row:91, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:91, column:121,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:121,the value of plot_cost is         : 2.176640236357669 

 At row:91, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:91, column:122,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:122,the value of plot_cost is         : 2.148107046358859 

 At row:91, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:91, column:123,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:123,the value of plot_cost is         : 2.120381916762564 

 At row:91, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:91, column:124,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:124,the value of plot_cost is         : 2.0934648475687845 

 At row:91, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:91, column:125,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:125,the value of plot_cost is         : 2.067355838777521 

 At row:91, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:91, column:126,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:126,the value of plot_cost is         : 2.042054890388772 

 At row:91, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:91, column:127,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:127,the value of plot_cost is         : 2.0175620024025376 

 At row:91, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:91, column:128,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:128,the value of plot_cost is         : 1.9938771748188178 

 At row:91, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:91, column:129,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:129,the value of plot_cost is         : 1.971000407637614 

 At row:91, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:91, column:130,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:130,the value of plot_cost is         : 1.9489317008589258 

 At row:91, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:91, column:131,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:131,the value of plot_cost is         : 1.927671054482752 

 At row:91, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:91, column:132,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:132,the value of plot_cost is         : 1.9072184685090936 

 At row:91, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:91, column:133,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:133,the value of plot_cost is         : 1.887573942937949 

 At row:91, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:91, column:134,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:134,the value of plot_cost is         : 1.8687374777693209 

 At row:91, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:91, column:135,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:135,the value of plot_cost is         : 1.8507090730032076 

 At row:91, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:91, column:136,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:136,the value of plot_cost is         : 1.8334887286396095 

 At row:91, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:91, column:137,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:137,the value of plot_cost is         : 1.8170764446785261 

 At row:91, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:91, column:138,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:138,the value of plot_cost is         : 1.8014722211199574 

 At row:91, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:91, column:139,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:139,the value of plot_cost is         : 1.7866760579639045 

 At row:91, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:91, column:140,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:140,the value of plot_cost is         : 1.7726879552103672 

 At row:91, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:91, column:141,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:141,the value of plot_cost is         : 1.7595079128593443 

 At row:91, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:91, column:142,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:142,the value of plot_cost is         : 1.7471359309108365 

 At row:91, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:91, column:143,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:143,the value of plot_cost is         : 1.735572009364843 

 At row:91, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:91, column:144,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:144,the value of plot_cost is         : 1.7248161482213655 

 At row:91, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:91, column:145,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:145,the value of plot_cost is         : 1.7148683474804034 

 At row:91, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:91, column:146,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:146,the value of plot_cost is         : 1.7057286071419564 

 At row:91, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:91, column:147,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:147,the value of plot_cost is         : 1.6973969272060236 

 At row:91, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:91, column:148,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:148,the value of plot_cost is         : 1.6898733076726054 

 At row:91, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:91, column:149,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:149,the value of plot_cost is         : 1.6831577485417037 

 At row:91, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:91, column:150,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:150,the value of plot_cost is         : 1.677250249813317 

 At row:91, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:91, column:151,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:151,the value of plot_cost is         : 1.672150811487445 

 At row:91, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:91, column:152,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:152,the value of plot_cost is         : 1.6678594335640882 

 At row:91, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:91, column:153,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:153,the value of plot_cost is         : 1.6643761160432453 

 At row:91, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:91, column:154,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:154,the value of plot_cost is         : 1.6617008589249191 

 At row:91, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:91, column:155,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:155,the value of plot_cost is         : 1.6598336622091083 

 At row:91, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:91, column:156,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:156,the value of plot_cost is         : 1.658774525895811 

 At row:91, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:91, column:157,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:157,the value of plot_cost is         : 1.6585234499850297 

 At row:91, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:91, column:158,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:158,the value of plot_cost is         : 1.6590804344767627 

 At row:91, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:91, column:159,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:159,the value of plot_cost is         : 1.6604454793710122 

 At row:91, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:91, column:160,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:160,the value of plot_cost is         : 1.662618584667776 

 At row:91, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:91, column:161,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:161,the value of plot_cost is         : 1.6655997503670545 

 At row:91, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:91, column:162,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:162,the value of plot_cost is         : 1.6693889764688485 

 At row:91, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:91, column:163,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:163,the value of plot_cost is         : 1.6739862629731572 

 At row:91, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:91, column:164,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:164,the value of plot_cost is         : 1.679391609879982 

 At row:91, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:91, column:165,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:165,the value of plot_cost is         : 1.6856050171893215 

 At row:91, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:91, column:166,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:166,the value of plot_cost is         : 1.6926264849011754 

 At row:91, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:91, column:167,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:167,the value of plot_cost is         : 1.7004560130155446 

 At row:91, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:91, column:168,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:168,the value of plot_cost is         : 1.7090936015324285 

 At row:91, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:91, column:169,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:169,the value of plot_cost is         : 1.7185392504518286 

 At row:91, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:91, column:170,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:170,the value of plot_cost is         : 1.7287929597737441 

 At row:91, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:91, column:171,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:171,the value of plot_cost is         : 1.7398547294981734 

 At row:91, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:91, column:172,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:172,the value of plot_cost is         : 1.7517245596251179 

 At row:91, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:91, column:173,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:173,the value of plot_cost is         : 1.7644024501545774 

 At row:91, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:91, column:174,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:174,the value of plot_cost is         : 1.7778884010865532 

 At row:91, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:91, column:175,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:175,the value of plot_cost is         : 1.7921824124210437 

 At row:91, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:91, column:176,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:176,the value of plot_cost is         : 1.8072844841580484 

 At row:91, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:91, column:177,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:177,the value of plot_cost is         : 1.8231946162975685 

 At row:91, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:91, column:178,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:178,the value of plot_cost is         : 1.8399128088396035 

 At row:91, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:91, column:179,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:179,the value of plot_cost is         : 1.8574390617841547 

 At row:91, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:91, column:180,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:180,the value of plot_cost is         : 1.8757733751312202 

 At row:91, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:91, column:181,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:181,the value of plot_cost is         : 1.8949157488808008 

 At row:91, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:91, column:182,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:182,the value of plot_cost is         : 1.9148661830328957 

 At row:91, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:91, column:183,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:183,the value of plot_cost is         : 1.9356246775875061 

 At row:91, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:91, column:184,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:184,the value of plot_cost is         : 1.957191232544633 

 At row:91, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:91, column:185,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:185,the value of plot_cost is         : 1.9795658479042744 

 At row:91, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:91, column:186,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:186,the value of plot_cost is         : 2.0027485236664297 

 At row:91, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:91, column:187,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:187,the value of plot_cost is         : 2.0267392598311007 

 At row:91, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:91, column:188,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:188,the value of plot_cost is         : 2.051538056398287 

 At row:91, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:91, column:189,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:189,the value of plot_cost is         : 2.077144913367989 

 At row:91, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:91, column:190,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:190,the value of plot_cost is         : 2.1035598307402057 

 At row:91, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:91, column:191,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:191,the value of plot_cost is         : 2.1307828085149367 

 At row:91, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:91, column:192,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:192,the value of plot_cost is         : 2.158813846692183 

 At row:91, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:91, column:193,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:193,the value of plot_cost is         : 2.187652945271944 

 At row:91, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:91, column:194,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:194,the value of plot_cost is         : 2.2173001042542215 

 At row:91, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:91, column:195,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:195,the value of plot_cost is         : 2.247755323639014 

 At row:91, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:91, column:196,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:196,the value of plot_cost is         : 2.2790186034263207 

 At row:91, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:91, column:197,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:197,the value of plot_cost is         : 2.311089943616143 

 At row:91, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:91, column:198,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:198,the value of plot_cost is         : 2.343969344208479 

 At row:91, column:199,the value of plot_t0 is           : 3.0
 At row:91, column:199,the value of plot_t1 is           : 0.829145728643216
 At row:91, column:199,the value of plot_cost is         : 2.377656805203332 

 At row:92, column:0,the value of plot_t0 is           : -1.0
 At row:92, column:0,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:0,the value of plot_cost is         : 11.107203750266043 

 At row:92, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:92, column:1,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:1,the value of plot_cost is         : 10.983573394611247 

 At row:92, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:92, column:2,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:2,the value of plot_cost is         : 10.860751099358962 

 At row:92, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:92, column:3,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:3,the value of plot_cost is         : 10.738736864509193 

 At row:92, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:92, column:4,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:4,the value of plot_cost is         : 10.617530690061935 

 At row:92, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:92, column:5,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:5,the value of plot_cost is         : 10.497132576017199 

 At row:92, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:92, column:6,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:6,the value of plot_cost is         : 10.377542522374975 

 At row:92, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:92, column:7,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:7,the value of plot_cost is         : 10.258760529135266 

 At row:92, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:92, column:8,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:8,the value of plot_cost is         : 10.140786596298073 

 At row:92, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:92, column:9,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:9,the value of plot_cost is         : 10.023620723863393 

 At row:92, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:92, column:10,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:10,the value of plot_cost is         : 9.90726291183123 

 At row:92, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:92, column:11,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:11,the value of plot_cost is         : 9.791713160201581 

 At row:92, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:92, column:12,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:12,the value of plot_cost is         : 9.676971468974447 

 At row:92, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:92, column:13,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:13,the value of plot_cost is         : 9.56303783814983 

 At row:92, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:92, column:14,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:14,the value of plot_cost is         : 9.449912267727726 

 At row:92, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:92, column:15,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:15,the value of plot_cost is         : 9.337594757708137 

 At row:92, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:92, column:16,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:16,the value of plot_cost is         : 9.226085308091065 

 At row:92, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:92, column:17,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:17,the value of plot_cost is         : 9.115383918876505 

 At row:92, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:92, column:18,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:18,the value of plot_cost is         : 9.005490590064463 

 At row:92, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:92, column:19,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:19,the value of plot_cost is         : 8.896405321654935 

 At row:92, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:92, column:20,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:20,the value of plot_cost is         : 8.788128113647922 

 At row:92, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:92, column:21,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:21,the value of plot_cost is         : 8.680658966043426 

 At row:92, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:92, column:22,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:22,the value of plot_cost is         : 8.57399787884144 

 At row:92, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:92, column:23,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:23,the value of plot_cost is         : 8.468144852041975 

 At row:92, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:92, column:24,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:24,the value of plot_cost is         : 8.36309988564502 

 At row:92, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:92, column:25,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:25,the value of plot_cost is         : 8.258862979650585 

 At row:92, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:92, column:26,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:26,the value of plot_cost is         : 8.155434134058662 

 At row:92, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:92, column:27,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:27,the value of plot_cost is         : 8.052813348869254 

 At row:92, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:92, column:28,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:28,the value of plot_cost is         : 7.951000624082364 

 At row:92, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:92, column:29,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:29,the value of plot_cost is         : 7.849995959697986 

 At row:92, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:92, column:30,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:30,the value of plot_cost is         : 7.749799355716124 

 At row:92, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:92, column:31,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:31,the value of plot_cost is         : 7.650410812136778 

 At row:92, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:92, column:32,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:32,the value of plot_cost is         : 7.551830328959945 

 At row:92, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:92, column:33,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:33,the value of plot_cost is         : 7.454057906185629 

 At row:92, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:92, column:34,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:34,the value of plot_cost is         : 7.357093543813827 

 At row:92, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:92, column:35,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:35,the value of plot_cost is         : 7.26093724184454 

 At row:92, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:92, column:36,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:36,the value of plot_cost is         : 7.16558900027777 

 At row:92, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:92, column:37,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:37,the value of plot_cost is         : 7.0710488191135115 

 At row:92, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:92, column:38,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:38,the value of plot_cost is         : 6.977316698351773 

 At row:92, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:92, column:39,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:39,the value of plot_cost is         : 6.884392637992545 

 At row:92, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:92, column:40,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:40,the value of plot_cost is         : 6.792276638035835 

 At row:92, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:92, column:41,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:41,the value of plot_cost is         : 6.70096869848164 

 At row:92, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:92, column:42,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:42,the value of plot_cost is         : 6.610468819329958 

 At row:92, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:92, column:43,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:43,the value of plot_cost is         : 6.520777000580793 

 At row:92, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:92, column:44,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:44,the value of plot_cost is         : 6.431893242234141 

 At row:92, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:92, column:45,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:45,the value of plot_cost is         : 6.343817544290006 

 At row:92, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:92, column:46,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:46,the value of plot_cost is         : 6.256549906748386 

 At row:92, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:92, column:47,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:47,the value of plot_cost is         : 6.17009032960928 

 At row:92, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:92, column:48,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:48,the value of plot_cost is         : 6.0844388128726905 

 At row:92, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:92, column:49,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:49,the value of plot_cost is         : 5.999595356538614 

 At row:92, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:92, column:50,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:50,the value of plot_cost is         : 5.915559960607055 

 At row:92, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:92, column:51,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:51,the value of plot_cost is         : 5.832332625078011 

 At row:92, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:92, column:52,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:52,the value of plot_cost is         : 5.749913349951479 

 At row:92, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:92, column:53,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:53,the value of plot_cost is         : 5.6683021352274645 

 At row:92, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:92, column:54,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:54,the value of plot_cost is         : 5.5874989809059645 

 At row:92, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:92, column:55,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:55,the value of plot_cost is         : 5.507503886986981 

 At row:92, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:92, column:56,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:56,the value of plot_cost is         : 5.428316853470512 

 At row:92, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:92, column:57,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:57,the value of plot_cost is         : 5.349937880356555 

 At row:92, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:92, column:58,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:58,the value of plot_cost is         : 5.272366967645117 

 At row:92, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:92, column:59,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:59,the value of plot_cost is         : 5.195604115336191 

 At row:92, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:92, column:60,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:60,the value of plot_cost is         : 5.119649323429783 

 At row:92, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:92, column:61,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:61,the value of plot_cost is         : 5.04450259192589 

 At row:92, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:92, column:62,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:62,the value of plot_cost is         : 4.97016392082451 

 At row:92, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:92, column:63,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:63,the value of plot_cost is         : 4.896633310125646 

 At row:92, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:92, column:64,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:64,the value of plot_cost is         : 4.823910759829297 

 At row:92, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:92, column:65,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:65,the value of plot_cost is         : 4.7519962699354625 

 At row:92, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:92, column:66,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:66,the value of plot_cost is         : 4.680889840444145 

 At row:92, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:92, column:67,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:67,the value of plot_cost is         : 4.610591471355341 

 At row:92, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:92, column:68,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:68,the value of plot_cost is         : 4.541101162669052 

 At row:92, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:92, column:69,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:69,the value of plot_cost is         : 4.472418914385277 

 At row:92, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:92, column:70,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:70,the value of plot_cost is         : 4.404544726504021 

 At row:92, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:92, column:71,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:71,the value of plot_cost is         : 4.337478599025277 

 At row:92, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:92, column:72,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:72,the value of plot_cost is         : 4.271220531949048 

 At row:92, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:92, column:73,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:73,the value of plot_cost is         : 4.205770525275336 

 At row:92, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:92, column:74,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:74,the value of plot_cost is         : 4.141128579004136 

 At row:92, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:92, column:75,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:75,the value of plot_cost is         : 4.077294693135454 

 At row:92, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:92, column:76,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:76,the value of plot_cost is         : 4.014268867669287 

 At row:92, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:92, column:77,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:77,the value of plot_cost is         : 3.9520511026056333 

 At row:92, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:92, column:78,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:78,the value of plot_cost is         : 3.8906413979444943 

 At row:92, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:92, column:79,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:79,the value of plot_cost is         : 3.830039753685872 

 At row:92, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:92, column:80,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:80,the value of plot_cost is         : 3.7702461698297656 

 At row:92, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:92, column:81,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:81,the value of plot_cost is         : 3.711260646376174 

 At row:92, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:92, column:82,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:82,the value of plot_cost is         : 3.6530831833250956 

 At row:92, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:92, column:83,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:83,the value of plot_cost is         : 3.595713780676532 

 At row:92, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:92, column:84,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:84,the value of plot_cost is         : 3.539152438430486 

 At row:92, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:92, column:85,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:85,the value of plot_cost is         : 3.4833991565869544 

 At row:92, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:92, column:86,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:86,the value of plot_cost is         : 3.4284539351459387 

 At row:92, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:92, column:87,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:87,the value of plot_cost is         : 3.3743167741074354 

 At row:92, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:92, column:88,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:88,the value of plot_cost is         : 3.3209876734714476 

 At row:92, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:92, column:89,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:89,the value of plot_cost is         : 3.2684666332379764 

 At row:92, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:92, column:90,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:90,the value of plot_cost is         : 3.2167536534070207 

 At row:92, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:92, column:91,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:91,the value of plot_cost is         : 3.1658487339785797 

 At row:92, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:92, column:92,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:92,the value of plot_cost is         : 3.115751874952652 

 At row:92, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:92, column:93,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:93,the value of plot_cost is         : 3.0664630763292395 

 At row:92, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:92, column:94,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:94,the value of plot_cost is         : 3.017982338108344 

 At row:92, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:92, column:95,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:95,the value of plot_cost is         : 2.9703096602899635 

 At row:92, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:92, column:96,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:96,the value of plot_cost is         : 2.923445042874098 

 At row:92, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:92, column:97,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:97,the value of plot_cost is         : 2.877388485860746 

 At row:92, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:92, column:98,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:98,the value of plot_cost is         : 2.8321399892499097 

 At row:92, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:92, column:99,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:99,the value of plot_cost is         : 2.787699553041589 

 At row:92, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:92, column:100,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:100,the value of plot_cost is         : 2.7440671772357845 

 At row:92, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:92, column:101,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:101,the value of plot_cost is         : 2.7012428618324944 

 At row:92, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:92, column:102,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:102,the value of plot_cost is         : 2.6592266068317176 

 At row:92, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:92, column:103,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:103,the value of plot_cost is         : 2.6180184122334555 

 At row:92, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:92, column:104,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:104,the value of plot_cost is         : 2.5776182780377113 

 At row:92, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:92, column:105,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:105,the value of plot_cost is         : 2.5380262042444817 

 At row:92, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:92, column:106,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:106,the value of plot_cost is         : 2.4992421908537668 

 At row:92, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:92, column:107,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:107,the value of plot_cost is         : 2.461266237865566 

 At row:92, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:92, column:108,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:108,the value of plot_cost is         : 2.42409834527988 

 At row:92, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:92, column:109,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:109,the value of plot_cost is         : 2.3877385130967106 

 At row:92, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:92, column:110,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:110,the value of plot_cost is         : 2.3521867413160558 

 At row:92, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:92, column:111,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:111,the value of plot_cost is         : 2.317443029937917 

 At row:92, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:92, column:112,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:112,the value of plot_cost is         : 2.2835073789622915 

 At row:92, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:92, column:113,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:113,the value of plot_cost is         : 2.2503797883891807 

 At row:92, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:92, column:114,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:114,the value of plot_cost is         : 2.2180602582185873 

 At row:92, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:92, column:115,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:115,the value of plot_cost is         : 2.186548788450508 

 At row:92, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:92, column:116,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:116,the value of plot_cost is         : 2.1558453790849446 

 At row:92, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:92, column:117,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:117,the value of plot_cost is         : 2.1259500301218943 

 At row:92, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:92, column:118,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:118,the value of plot_cost is         : 2.096862741561359 

 At row:92, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:92, column:119,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:119,the value of plot_cost is         : 2.068583513403341 

 At row:92, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:92, column:120,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:120,the value of plot_cost is         : 2.0411123456478375 

 At row:92, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:92, column:121,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:121,the value of plot_cost is         : 2.014449238294849 

 At row:92, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:92, column:122,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:122,the value of plot_cost is         : 1.9885941913443737 

 At row:92, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:92, column:123,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:123,the value of plot_cost is         : 1.9635472047964149 

 At row:92, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:92, column:124,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:124,the value of plot_cost is         : 1.9393082786509717 

 At row:92, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:92, column:125,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:125,the value of plot_cost is         : 1.9158774129080438 

 At row:92, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:92, column:126,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:126,the value of plot_cost is         : 1.8932546075676309 

 At row:92, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:92, column:127,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:127,the value of plot_cost is         : 1.8714398626297313 

 At row:92, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:92, column:128,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:128,the value of plot_cost is         : 1.8504331780943475 

 At row:92, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:92, column:129,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:129,the value of plot_cost is         : 1.8302345539614802 

 At row:92, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:92, column:130,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:130,the value of plot_cost is         : 1.810843990231127 

 At row:92, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:92, column:131,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:131,the value of plot_cost is         : 1.7922614869032896 

 At row:92, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:92, column:132,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:132,the value of plot_cost is         : 1.7744870439779656 

 At row:92, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:92, column:133,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:133,the value of plot_cost is         : 1.7575206614551573 

 At row:92, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:92, column:134,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:134,the value of plot_cost is         : 1.7413623393348652 

 At row:92, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:92, column:135,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:135,the value of plot_cost is         : 1.726012077617088 

 At row:92, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:92, column:136,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:136,the value of plot_cost is         : 1.7114698763018255 

 At row:92, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:92, column:137,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:137,the value of plot_cost is         : 1.697735735389077 

 At row:92, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:92, column:138,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:138,the value of plot_cost is         : 1.6848096548788445 

 At row:92, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:92, column:139,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:139,the value of plot_cost is         : 1.6726916347711276 

 At row:92, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:92, column:140,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:140,the value of plot_cost is         : 1.661381675065926 

 At row:92, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:92, column:141,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:141,the value of plot_cost is         : 1.650879775763239 

 At row:92, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:92, column:142,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:142,the value of plot_cost is         : 1.641185936863066 

 At row:92, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:92, column:143,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:143,the value of plot_cost is         : 1.6323001583654089 

 At row:92, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:92, column:144,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:144,the value of plot_cost is         : 1.6242224402702674 

 At row:92, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:92, column:145,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:145,the value of plot_cost is         : 1.6169527825776409 

 At row:92, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:92, column:146,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:146,the value of plot_cost is         : 1.6104911852875294 

 At row:92, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:92, column:147,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:147,the value of plot_cost is         : 1.6048376483999318 

 At row:92, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:92, column:148,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:148,the value of plot_cost is         : 1.5999921719148502 

 At row:92, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:92, column:149,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:149,the value of plot_cost is         : 1.595954755832284 

 At row:92, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:92, column:150,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:150,the value of plot_cost is         : 1.5927254001522333 

 At row:92, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:92, column:151,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:151,the value of plot_cost is         : 1.5903041048746962 

 At row:92, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:92, column:152,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:152,the value of plot_cost is         : 1.588690869999675 

 At row:92, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:92, column:153,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:153,the value of plot_cost is         : 1.587885695527169 

 At row:92, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:92, column:154,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:154,the value of plot_cost is         : 1.5878885814571781 

 At row:92, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:92, column:155,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:155,the value of plot_cost is         : 1.5886995277897027 

 At row:92, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:92, column:156,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:156,the value of plot_cost is         : 1.5903185345247413 

 At row:92, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:92, column:157,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:157,the value of plot_cost is         : 1.5927456016622954 

 At row:92, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:92, column:158,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:158,the value of plot_cost is         : 1.5959807292023644 

 At row:92, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:92, column:159,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:159,the value of plot_cost is         : 1.6000239171449495 

 At row:92, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:92, column:160,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:160,the value of plot_cost is         : 1.6048751654900495 

 At row:92, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:92, column:161,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:161,the value of plot_cost is         : 1.6105344742376633 

 At row:92, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:92, column:162,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:162,the value of plot_cost is         : 1.6170018433877928 

 At row:92, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:92, column:163,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:163,the value of plot_cost is         : 1.6242772729404378 

 At row:92, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:92, column:164,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:164,the value of plot_cost is         : 1.632360762895598 

 At row:92, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:92, column:165,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:165,the value of plot_cost is         : 1.6412523132532733 

 At row:92, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:92, column:166,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:166,the value of plot_cost is         : 1.650951924013463 

 At row:92, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:92, column:167,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:167,the value of plot_cost is         : 1.6614595951761677 

 At row:92, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:92, column:168,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:168,the value of plot_cost is         : 1.6727753267413878 

 At row:92, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:92, column:169,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:169,the value of plot_cost is         : 1.6848991187091236 

 At row:92, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:92, column:170,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:170,the value of plot_cost is         : 1.6978309710793742 

 At row:92, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:92, column:171,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:171,the value of plot_cost is         : 1.7115708838521393 

 At row:92, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:92, column:172,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:172,the value of plot_cost is         : 1.7261188570274197 

 At row:92, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:92, column:173,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:173,the value of plot_cost is         : 1.7414748906052155 

 At row:92, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:92, column:174,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:174,the value of plot_cost is         : 1.7576389845855267 

 At row:92, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:92, column:175,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:175,the value of plot_cost is         : 1.7746111389683525 

 At row:92, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:92, column:176,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:176,the value of plot_cost is         : 1.7923913537536933 

 At row:92, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:92, column:177,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:177,the value of plot_cost is         : 1.8109796289415492 

 At row:92, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:92, column:178,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:178,the value of plot_cost is         : 1.8303759645319202 

 At row:92, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:92, column:179,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:179,the value of plot_cost is         : 1.8505803605248066 

 At row:92, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:92, column:180,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:180,the value of plot_cost is         : 1.871592816920208 

 At row:92, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:92, column:181,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:181,the value of plot_cost is         : 1.8934133337181245 

 At row:92, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:92, column:182,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:182,the value of plot_cost is         : 1.9160419109185554 

 At row:92, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:92, column:183,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:183,the value of plot_cost is         : 1.939478548521502 

 At row:92, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:92, column:184,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:184,the value of plot_cost is         : 1.9637232465269636 

 At row:92, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:92, column:185,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:185,the value of plot_cost is         : 1.9887760049349412 

 At row:92, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:92, column:186,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:186,the value of plot_cost is         : 2.0146368237454326 

 At row:92, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:92, column:187,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:187,the value of plot_cost is         : 2.041305702958439 

 At row:92, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:92, column:188,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:188,the value of plot_cost is         : 2.068782642573961 

 At row:92, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:92, column:189,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:189,the value of plot_cost is         : 2.0970676425919983 

 At row:92, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:92, column:190,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:190,the value of plot_cost is         : 2.126160703012551 

 At row:92, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:92, column:191,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:191,the value of plot_cost is         : 2.1560618238356173 

 At row:92, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:92, column:192,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:192,the value of plot_cost is         : 2.1867710050611997 

 At row:92, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:92, column:193,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:193,the value of plot_cost is         : 2.2182882466892972 

 At row:92, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:92, column:194,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:194,the value of plot_cost is         : 2.2506135487199104 

 At row:92, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:92, column:195,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:195,the value of plot_cost is         : 2.2837469111530377 

 At row:92, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:92, column:196,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:196,the value of plot_cost is         : 2.3176883339886802 

 At row:92, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:92, column:197,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:197,the value of plot_cost is         : 2.3524378172268388 

 At row:92, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:92, column:198,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:198,the value of plot_cost is         : 2.3879953608675106 

 At row:92, column:199,the value of plot_t0 is           : 3.0
 At row:92, column:199,the value of plot_t1 is           : 0.8492462311557789
 At row:92, column:199,the value of plot_cost is         : 2.4243609649106985 

 At row:93, column:0,the value of plot_t0 is           : -1.0
 At row:93, column:0,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:0,the value of plot_cost is         : 10.633540098193764 

 At row:93, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:93, column:1,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:1,the value of plot_cost is         : 10.512587885587303 

 At row:93, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:93, column:2,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:2,the value of plot_cost is         : 10.39244373338335 

 At row:93, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:93, column:3,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:3,the value of plot_cost is         : 10.27310764158192 

 At row:93, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:93, column:4,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:4,the value of plot_cost is         : 10.154579610182997 

 At row:93, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:93, column:5,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:5,the value of plot_cost is         : 10.036859639186595 

 At row:93, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:93, column:6,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:6,the value of plot_cost is         : 9.919947728592708 

 At row:93, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:93, column:7,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:7,the value of plot_cost is         : 9.803843878401336 

 At row:93, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:93, column:8,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:8,the value of plot_cost is         : 9.688548088612478 

 At row:93, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:93, column:9,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:9,the value of plot_cost is         : 9.574060359226133 

 At row:93, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:93, column:10,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:10,the value of plot_cost is         : 9.460380690242305 

 At row:93, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:93, column:11,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:11,the value of plot_cost is         : 9.347509081660993 

 At row:93, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:93, column:12,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:12,the value of plot_cost is         : 9.235445533482196 

 At row:93, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:93, column:13,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:13,the value of plot_cost is         : 9.124190045705914 

 At row:93, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:93, column:14,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:14,the value of plot_cost is         : 9.013742618332143 

 At row:93, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:93, column:15,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:15,the value of plot_cost is         : 8.904103251360892 

 At row:93, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:93, column:16,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:16,the value of plot_cost is         : 8.795271944792155 

 At row:93, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:93, column:17,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:17,the value of plot_cost is         : 8.687248698625933 

 At row:93, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:93, column:18,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:18,the value of plot_cost is         : 8.580033512862228 

 At row:93, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:93, column:19,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:19,the value of plot_cost is         : 8.473626387501033 

 At row:93, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:93, column:20,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:20,the value of plot_cost is         : 8.368027322542355 

 At row:93, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:93, column:21,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:21,the value of plot_cost is         : 8.263236317986197 

 At row:93, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:93, column:22,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:22,the value of plot_cost is         : 8.159253373832547 

 At row:93, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:93, column:23,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:23,the value of plot_cost is         : 8.056078490081417 

 At row:93, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:93, column:24,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:24,the value of plot_cost is         : 7.953711666732798 

 At row:93, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:93, column:25,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:25,the value of plot_cost is         : 7.852152903786697 

 At row:93, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:93, column:26,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:26,the value of plot_cost is         : 7.7514022012431125 

 At row:93, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:93, column:27,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:27,the value of plot_cost is         : 7.651459559102039 

 At row:93, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:93, column:28,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:28,the value of plot_cost is         : 7.552324977363485 

 At row:93, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:93, column:29,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:29,the value of plot_cost is         : 7.453998456027442 

 At row:93, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:93, column:30,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:30,the value of plot_cost is         : 7.356479995093916 

 At row:93, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:93, column:31,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:31,the value of plot_cost is         : 7.259769594562906 

 At row:93, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:93, column:32,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:32,the value of plot_cost is         : 7.163867254434408 

 At row:93, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:93, column:33,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:33,the value of plot_cost is         : 7.068772974708428 

 At row:93, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:93, column:34,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:34,the value of plot_cost is         : 6.9744867553849605 

 At row:93, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:93, column:35,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:35,the value of plot_cost is         : 6.881008596464011 

 At row:93, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:93, column:36,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:36,the value of plot_cost is         : 6.788338497945576 

 At row:93, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:93, column:37,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:37,the value of plot_cost is         : 6.696476459829654 

 At row:93, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:93, column:38,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:38,the value of plot_cost is         : 6.60542248211625 

 At row:93, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:93, column:39,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:39,the value of plot_cost is         : 6.515176564805358 

 At row:93, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:93, column:40,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:40,the value of plot_cost is         : 6.4257387078969845 

 At row:93, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:93, column:41,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:41,the value of plot_cost is         : 6.337108911391124 

 At row:93, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:93, column:42,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:42,the value of plot_cost is         : 6.249287175287778 

 At row:93, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:93, column:43,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:43,the value of plot_cost is         : 6.162273499586949 

 At row:93, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:93, column:44,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:44,the value of plot_cost is         : 6.076067884288632 

 At row:93, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:93, column:45,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:45,the value of plot_cost is         : 5.9906703293928345 

 At row:93, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:93, column:46,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:46,the value of plot_cost is         : 5.906080834899549 

 At row:93, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:93, column:47,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:47,the value of plot_cost is         : 5.822299400808778 

 At row:93, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:93, column:48,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:48,the value of plot_cost is         : 5.739326027120525 

 At row:93, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:93, column:49,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:49,the value of plot_cost is         : 5.657160713834784 

 At row:93, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:93, column:50,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:50,the value of plot_cost is         : 5.575803460951562 

 At row:93, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:93, column:51,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:51,the value of plot_cost is         : 5.495254268470853 

 At row:93, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:93, column:52,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:52,the value of plot_cost is         : 5.415513136392657 

 At row:93, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:93, column:53,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:53,the value of plot_cost is         : 5.336580064716979 

 At row:93, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:93, column:54,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:54,the value of plot_cost is         : 5.258455053443813 

 At row:93, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:93, column:55,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:55,the value of plot_cost is         : 5.181138102573166 

 At row:93, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:93, column:56,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:56,the value of plot_cost is         : 5.104629212105032 

 At row:93, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:93, column:57,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:57,the value of plot_cost is         : 5.028928382039412 

 At row:93, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:93, column:58,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:58,the value of plot_cost is         : 4.954035612376309 

 At row:93, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:93, column:59,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:59,the value of plot_cost is         : 4.879950903115719 

 At row:93, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:93, column:60,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:60,the value of plot_cost is         : 4.806674254257646 

 At row:93, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:93, column:61,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:61,the value of plot_cost is         : 4.734205665802088 

 At row:93, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:93, column:62,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:62,the value of plot_cost is         : 4.662545137749044 

 At row:93, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:93, column:63,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:63,the value of plot_cost is         : 4.591692670098517 

 At row:93, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:93, column:64,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:64,the value of plot_cost is         : 4.521648262850502 

 At row:93, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:93, column:65,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:65,the value of plot_cost is         : 4.452411916005005 

 At row:93, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:93, column:66,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:66,the value of plot_cost is         : 4.383983629562022 

 At row:93, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:93, column:67,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:67,the value of plot_cost is         : 4.316363403521553 

 At row:93, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:93, column:68,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:68,the value of plot_cost is         : 4.249551237883602 

 At row:93, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:93, column:69,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:69,the value of plot_cost is         : 4.183547132648163 

 At row:93, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:93, column:70,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:70,the value of plot_cost is         : 4.118351087815241 

 At row:93, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:93, column:71,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:71,the value of plot_cost is         : 4.053963103384834 

 At row:93, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:93, column:72,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:72,the value of plot_cost is         : 3.9903831793569404 

 At row:93, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:93, column:73,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:73,the value of plot_cost is         : 3.9276113157315633 

 At row:93, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:93, column:74,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:74,the value of plot_cost is         : 3.8656475125087 

 At row:93, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:93, column:75,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:75,the value of plot_cost is         : 3.8044917696883545 

 At row:93, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:93, column:76,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:76,the value of plot_cost is         : 3.7441440872705223 

 At row:93, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:93, column:77,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:77,the value of plot_cost is         : 3.684604465255204 

 At row:93, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:93, column:78,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:78,the value of plot_cost is         : 3.6258729036424007 

 At row:93, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:93, column:79,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:79,the value of plot_cost is         : 3.567949402432115 

 At row:93, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:93, column:80,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:80,the value of plot_cost is         : 3.5108339616243436 

 At row:93, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:93, column:81,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:81,the value of plot_cost is         : 3.4545265812190875 

 At row:93, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:93, column:82,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:82,the value of plot_cost is         : 3.3990272612163452 

 At row:93, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:93, column:83,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:83,the value of plot_cost is         : 3.3443360016161177 

 At row:93, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:93, column:84,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:84,the value of plot_cost is         : 3.2904528024184074 

 At row:93, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:93, column:85,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:85,the value of plot_cost is         : 3.2373776636232114 

 At row:93, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:93, column:86,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:86,the value of plot_cost is         : 3.185110585230531 

 At row:93, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:93, column:87,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:87,the value of plot_cost is         : 3.1336515672403635 

 At row:93, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:93, column:88,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:88,the value of plot_cost is         : 3.0830006096527116 

 At row:93, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:93, column:89,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:89,the value of plot_cost is         : 3.033157712467576 

 At row:93, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:93, column:90,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:90,the value of plot_cost is         : 2.9841228756849554 

 At row:93, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:93, column:91,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:91,the value of plot_cost is         : 2.9358960993048506 

 At row:93, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:93, column:92,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:92,the value of plot_cost is         : 2.888477383327259 

 At row:93, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:93, column:93,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:93,the value of plot_cost is         : 2.841866727752182 

 At row:93, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:93, column:94,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:94,the value of plot_cost is         : 2.7960641325796227 

 At row:93, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:93, column:95,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:95,the value of plot_cost is         : 2.7510695978095776 

 At row:93, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:93, column:96,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:96,the value of plot_cost is         : 2.706883123442048 

 At row:93, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:93, column:97,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:97,the value of plot_cost is         : 2.663504709477032 

 At row:93, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:93, column:98,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:98,the value of plot_cost is         : 2.6209343559145304 

 At row:93, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:93, column:99,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:99,the value of plot_cost is         : 2.5791720627545462 

 At row:93, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:93, column:100,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:100,the value of plot_cost is         : 2.538217829997077 

 At row:93, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:93, column:101,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:101,the value of plot_cost is         : 2.4980716576421225 

 At row:93, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:93, column:102,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:102,the value of plot_cost is         : 2.458733545689682 

 At row:93, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:93, column:103,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:103,the value of plot_cost is         : 2.4202034941397557 

 At row:93, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:93, column:104,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:104,the value of plot_cost is         : 2.3824815029923467 

 At row:93, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:93, column:105,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:105,the value of plot_cost is         : 2.3455675722474525 

 At row:93, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:93, column:106,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:106,the value of plot_cost is         : 2.309461701905074 

 At row:93, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:93, column:107,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:107,the value of plot_cost is         : 2.2741638919652085 

 At row:93, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:93, column:108,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:108,the value of plot_cost is         : 2.239674142427859 

 At row:93, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:93, column:109,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:109,the value of plot_cost is         : 2.2059924532930246 

 At row:93, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:93, column:110,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:110,the value of plot_cost is         : 2.1731188245607065 

 At row:93, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:93, column:111,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:111,the value of plot_cost is         : 2.1410532562309026 

 At row:93, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:93, column:112,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:112,the value of plot_cost is         : 2.109795748303613 

 At row:93, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:93, column:113,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:113,the value of plot_cost is         : 2.079346300778838 

 At row:93, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:93, column:114,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:114,the value of plot_cost is         : 2.04970491365658 

 At row:93, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:93, column:115,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:115,the value of plot_cost is         : 2.0208715869368366 

 At row:93, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:93, column:116,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:116,the value of plot_cost is         : 1.9928463206196088 

 At row:93, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:93, column:117,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:117,the value of plot_cost is         : 1.9656291147048945 

 At row:93, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:93, column:118,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:118,the value of plot_cost is         : 1.9392199691926955 

 At row:93, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:93, column:119,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:119,the value of plot_cost is         : 1.9136188840830126 

 At row:93, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:93, column:120,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:120,the value of plot_cost is         : 1.8888258593758445 

 At row:93, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:93, column:121,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:121,the value of plot_cost is         : 1.8648408950711919 

 At row:93, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:93, column:122,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:122,the value of plot_cost is         : 1.841663991169053 

 At row:93, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:93, column:123,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:123,the value of plot_cost is         : 1.8192951476694295 

 At row:93, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:93, column:124,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:124,the value of plot_cost is         : 1.7977343645723218 

 At row:93, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:93, column:125,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:125,the value of plot_cost is         : 1.7769816418777293 

 At row:93, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:93, column:126,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:126,the value of plot_cost is         : 1.757036979585652 

 At row:93, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:93, column:127,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:127,the value of plot_cost is         : 1.7379003776960888 

 At row:93, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:93, column:128,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:128,the value of plot_cost is         : 1.7195718362090406 

 At row:93, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:93, column:129,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:129,the value of plot_cost is         : 1.702051355124509 

 At row:93, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:93, column:130,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:130,the value of plot_cost is         : 1.6853389344424916 

 At row:93, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:93, column:131,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:131,the value of plot_cost is         : 1.66943457416299 

 At row:93, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:93, column:132,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:132,the value of plot_cost is         : 1.654338274286002 

 At row:93, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:93, column:133,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:133,the value of plot_cost is         : 1.6400500348115294 

 At row:93, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:93, column:134,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:134,the value of plot_cost is         : 1.6265698557395727 

 At row:93, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:93, column:135,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:135,the value of plot_cost is         : 1.6138977370701313 

 At row:93, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:93, column:136,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:136,the value of plot_cost is         : 1.6020336788032046 

 At row:93, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:93, column:137,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:137,the value of plot_cost is         : 1.5909776809387923 

 At row:93, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:93, column:138,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:138,the value of plot_cost is         : 1.5807297434768952 

 At row:93, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:93, column:139,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:139,the value of plot_cost is         : 1.5712898664175141 

 At row:93, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:93, column:140,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:140,the value of plot_cost is         : 1.562658049760648 

 At row:93, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:93, column:141,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:141,the value of plot_cost is         : 1.5548342935062964 

 At row:93, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:93, column:142,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:142,the value of plot_cost is         : 1.5478185976544598 

 At row:93, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:93, column:143,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:143,the value of plot_cost is         : 1.5416109622051382 

 At row:93, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:93, column:144,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:144,the value of plot_cost is         : 1.5362113871583323 

 At row:93, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:93, column:145,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:145,the value of plot_cost is         : 1.5316198725140413 

 At row:93, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:93, column:146,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:146,the value of plot_cost is         : 1.5278364182722655 

 At row:93, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:93, column:147,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:147,the value of plot_cost is         : 1.5248610244330045 

 At row:93, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:93, column:148,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:148,the value of plot_cost is         : 1.5226936909962583 

 At row:93, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:93, column:149,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:149,the value of plot_cost is         : 1.5213344179620278 

 At row:93, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:93, column:150,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:150,the value of plot_cost is         : 1.520783205330312 

 At row:93, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:93, column:151,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:151,the value of plot_cost is         : 1.5210400531011115 

 At row:93, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:93, column:152,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:152,the value of plot_cost is         : 1.5221049612744264 

 At row:93, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:93, column:153,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:153,the value of plot_cost is         : 1.5239779298502558 

 At row:93, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:93, column:154,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:154,the value of plot_cost is         : 1.5266589588286006 

 At row:93, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:93, column:155,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:155,the value of plot_cost is         : 1.5301480482094607 

 At row:93, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:93, column:156,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:156,the value of plot_cost is         : 1.5344451979928353 

 At row:93, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:93, column:157,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:157,the value of plot_cost is         : 1.5395504081787252 

 At row:93, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:93, column:158,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:158,the value of plot_cost is         : 1.54546367876713 

 At row:93, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:93, column:159,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:159,the value of plot_cost is         : 1.5521850097580505 

 At row:93, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:93, column:160,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:160,the value of plot_cost is         : 1.5597144011514856 

 At row:93, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:93, column:161,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:161,the value of plot_cost is         : 1.5680518529474363 

 At row:93, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:93, column:162,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:162,the value of plot_cost is         : 1.5771973651459017 

 At row:93, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:93, column:163,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:163,the value of plot_cost is         : 1.5871509377468822 

 At row:93, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:93, column:164,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:164,the value of plot_cost is         : 1.5979125707503778 

 At row:93, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:93, column:165,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:165,the value of plot_cost is         : 1.6094822641563884 

 At row:93, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:93, column:166,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:166,the value of plot_cost is         : 1.621860017964914 

 At row:93, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:93, column:167,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:167,the value of plot_cost is         : 1.6350458321759551 

 At row:93, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:93, column:168,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:168,the value of plot_cost is         : 1.6490397067895108 

 At row:93, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:93, column:169,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:169,the value of plot_cost is         : 1.663841641805582 

 At row:93, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:93, column:170,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:170,the value of plot_cost is         : 1.6794516372241681 

 At row:93, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:93, column:171,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:171,the value of plot_cost is         : 1.6958696930452695 

 At row:93, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:93, column:172,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:172,the value of plot_cost is         : 1.7130958092688857 

 At row:93, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:93, column:173,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:173,the value of plot_cost is         : 1.7311299858950167 

 At row:93, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:93, column:174,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:174,the value of plot_cost is         : 1.7499722229236634 

 At row:93, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:93, column:175,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:175,the value of plot_cost is         : 1.7696225203548253 

 At row:93, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:93, column:176,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:176,the value of plot_cost is         : 1.7900808781885018 

 At row:93, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:93, column:177,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:177,the value of plot_cost is         : 1.8113472964246935 

 At row:93, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:93, column:178,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:178,the value of plot_cost is         : 1.8334217750634 

 At row:93, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:93, column:179,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:179,the value of plot_cost is         : 1.856304314104622 

 At row:93, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:93, column:180,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:180,the value of plot_cost is         : 1.8799949135483596 

 At row:93, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:93, column:181,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:181,the value of plot_cost is         : 1.9044935733946116 

 At row:93, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:93, column:182,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:182,the value of plot_cost is         : 1.9298002936433782 

 At row:93, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:93, column:183,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:183,the value of plot_cost is         : 1.9559150742946605 

 At row:93, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:93, column:184,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:184,the value of plot_cost is         : 1.9828379153484579 

 At row:93, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:93, column:185,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:185,the value of plot_cost is         : 2.0105688168047706 

 At row:93, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:93, column:186,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:186,the value of plot_cost is         : 2.0391077786635985 

 At row:93, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:93, column:187,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:187,the value of plot_cost is         : 2.06845480092494 

 At row:93, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:93, column:188,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:188,the value of plot_cost is         : 2.0986098835887983 

 At row:93, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:93, column:189,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:189,the value of plot_cost is         : 2.129573026655171 

 At row:93, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:93, column:190,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:190,the value of plot_cost is         : 2.1613442301240595 

 At row:93, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:93, column:191,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:191,the value of plot_cost is         : 2.193923493995462 

 At row:93, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:93, column:192,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:192,the value of plot_cost is         : 2.22731081826938 

 At row:93, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:93, column:193,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:193,the value of plot_cost is         : 2.2615062029458133 

 At row:93, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:93, column:194,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:194,the value of plot_cost is         : 2.2965096480247613 

 At row:93, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:93, column:195,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:195,the value of plot_cost is         : 2.3323211535062254 

 At row:93, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:93, column:196,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:196,the value of plot_cost is         : 2.3689407193902037 

 At row:93, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:93, column:197,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:197,the value of plot_cost is         : 2.406368345676697 

 At row:93, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:93, column:198,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:198,the value of plot_cost is         : 2.4446040323657052 

 At row:93, column:199,the value of plot_t0 is           : 3.0
 At row:93, column:199,the value of plot_t1 is           : 0.8693467336683418
 At row:93, column:199,the value of plot_cost is         : 2.483647779457229 

 At row:94, column:0,the value of plot_t0 is           : -1.0
 At row:94, column:0,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:0,the value of plot_cost is         : 10.172459100960653 

 At row:94, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:94, column:1,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:1,the value of plot_cost is         : 10.054185031402527 

 At row:94, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:94, column:2,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:2,the value of plot_cost is         : 9.936719022246912 

 At row:94, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:94, column:3,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:3,the value of plot_cost is         : 9.820061073493816 

 At row:94, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:94, column:4,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:4,the value of plot_cost is         : 9.704211185143231 

 At row:94, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:94, column:5,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:5,the value of plot_cost is         : 9.589169357195164 

 At row:94, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:94, column:6,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:6,the value of plot_cost is         : 9.474935589649611 

 At row:94, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:94, column:7,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:7,the value of plot_cost is         : 9.361509882506573 

 At row:94, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:94, column:8,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:8,the value of plot_cost is         : 9.248892235766053 

 At row:94, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:94, column:9,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:9,the value of plot_cost is         : 9.137082649428045 

 At row:94, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:94, column:10,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:10,the value of plot_cost is         : 9.026081123492553 

 At row:94, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:94, column:11,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:11,the value of plot_cost is         : 8.915887657959574 

 At row:94, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:94, column:12,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:12,the value of plot_cost is         : 8.806502252829112 

 At row:94, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:94, column:13,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:13,the value of plot_cost is         : 8.697924908101166 

 At row:94, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:94, column:14,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:14,the value of plot_cost is         : 8.590155623775733 

 At row:94, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:94, column:15,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:15,the value of plot_cost is         : 8.483194399852819 

 At row:94, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:94, column:16,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:16,the value of plot_cost is         : 8.377041236332415 

 At row:94, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:94, column:17,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:17,the value of plot_cost is         : 8.27169613321453 

 At row:94, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:94, column:18,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:18,the value of plot_cost is         : 8.167159090499156 

 At row:94, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:94, column:19,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:19,the value of plot_cost is         : 8.063430108186301 

 At row:94, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:94, column:20,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:20,the value of plot_cost is         : 7.96050918627596 

 At row:94, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:94, column:21,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:21,the value of plot_cost is         : 7.858396324768133 

 At row:94, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:94, column:22,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:22,the value of plot_cost is         : 7.757091523662822 

 At row:94, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:94, column:23,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:23,the value of plot_cost is         : 7.656594782960026 

 At row:94, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:94, column:24,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:24,the value of plot_cost is         : 7.5569061026597435 

 At row:94, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:94, column:25,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:25,the value of plot_cost is         : 7.45802548276198 

 At row:94, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:94, column:26,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:26,the value of plot_cost is         : 7.359952923266728 

 At row:94, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:94, column:27,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:27,the value of plot_cost is         : 7.262688424173991 

 At row:94, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:94, column:28,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:28,the value of plot_cost is         : 7.166231985483772 

 At row:94, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:94, column:29,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:29,the value of plot_cost is         : 7.070583607196066 

 At row:94, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:94, column:30,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:30,the value of plot_cost is         : 6.975743289310875 

 At row:94, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:94, column:31,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:31,the value of plot_cost is         : 6.8817110318282 

 At row:94, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:94, column:32,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:32,the value of plot_cost is         : 6.788486834748039 

 At row:94, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:94, column:33,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:33,the value of plot_cost is         : 6.696070698070394 

 At row:94, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:94, column:34,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:34,the value of plot_cost is         : 6.604462621795264 

 At row:94, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:94, column:35,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:35,the value of plot_cost is         : 6.513662605922649 

 At row:94, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:94, column:36,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:36,the value of plot_cost is         : 6.42367065045255 

 At row:94, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:94, column:37,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:37,the value of plot_cost is         : 6.3344867553849635 

 At row:94, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:94, column:38,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:38,the value of plot_cost is         : 6.246110920719895 

 At row:94, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:94, column:39,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:39,the value of plot_cost is         : 6.15854314645734 

 At row:94, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:94, column:40,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:40,the value of plot_cost is         : 6.071783432597301 

 At row:94, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:94, column:41,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:41,the value of plot_cost is         : 5.985831779139776 

 At row:94, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:94, column:42,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:42,the value of plot_cost is         : 5.900688186084766 

 At row:94, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:94, column:43,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:43,the value of plot_cost is         : 5.816352653432273 

 At row:94, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:94, column:44,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:44,the value of plot_cost is         : 5.732825181182293 

 At row:94, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:94, column:45,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:45,the value of plot_cost is         : 5.6501057693348296 

 At row:94, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:94, column:46,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:46,the value of plot_cost is         : 5.56819441788988 

 At row:94, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:94, column:47,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:47,the value of plot_cost is         : 5.487091126847447 

 At row:94, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:94, column:48,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:48,the value of plot_cost is         : 5.4067958962075275 

 At row:94, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:94, column:49,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:49,the value of plot_cost is         : 5.327308725970123 

 At row:94, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:94, column:50,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:50,the value of plot_cost is         : 5.248629616135235 

 At row:94, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:94, column:51,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:51,the value of plot_cost is         : 5.170758566702862 

 At row:94, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:94, column:52,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:52,the value of plot_cost is         : 5.093695577673002 

 At row:94, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:94, column:53,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:53,the value of plot_cost is         : 5.01744064904566 

 At row:94, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:94, column:54,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:54,the value of plot_cost is         : 4.94199378082083 

 At row:94, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:94, column:55,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:55,the value of plot_cost is         : 4.867354972998516 

 At row:94, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:94, column:56,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:56,the value of plot_cost is         : 4.793524225578719 

 At row:94, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:94, column:57,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:57,the value of plot_cost is         : 4.720501538561436 

 At row:94, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:94, column:58,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:58,the value of plot_cost is         : 4.648286911946669 

 At row:94, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:94, column:59,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:59,the value of plot_cost is         : 4.576880345734415 

 At row:94, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:94, column:60,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:60,the value of plot_cost is         : 4.506281839924677 

 At row:94, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:94, column:61,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:61,the value of plot_cost is         : 4.4364913945174544 

 At row:94, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:94, column:62,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:62,the value of plot_cost is         : 4.367509009512746 

 At row:94, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:94, column:63,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:63,the value of plot_cost is         : 4.299334684910555 

 At row:94, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:94, column:64,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:64,the value of plot_cost is         : 4.231968420710876 

 At row:94, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:94, column:65,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:65,the value of plot_cost is         : 4.165410216913714 

 At row:94, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:94, column:66,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:66,the value of plot_cost is         : 4.099660073519067 

 At row:94, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:94, column:67,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:67,the value of plot_cost is         : 4.034717990526935 

 At row:94, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:94, column:68,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:68,the value of plot_cost is         : 3.970583967937318 

 At row:94, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:94, column:69,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:69,the value of plot_cost is         : 3.9072580057502155 

 At row:94, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:94, column:70,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:70,the value of plot_cost is         : 3.8447401039656284 

 At row:94, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:94, column:71,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:71,the value of plot_cost is         : 3.783030262583557 

 At row:94, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:94, column:72,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:72,the value of plot_cost is         : 3.722128481604 

 At row:94, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:94, column:73,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:73,the value of plot_cost is         : 3.662034761026959 

 At row:94, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:94, column:74,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:74,the value of plot_cost is         : 3.6027491008524315 

 At row:94, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:94, column:75,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:75,the value of plot_cost is         : 3.5442715010804204 

 At row:94, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:94, column:76,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:76,the value of plot_cost is         : 3.4866019617109245 

 At row:94, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:94, column:77,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:77,the value of plot_cost is         : 3.429740482743943 

 At row:94, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:94, column:78,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:78,the value of plot_cost is         : 3.373687064179476 

 At row:94, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:94, column:79,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:79,the value of plot_cost is         : 3.318441706017525 

 At row:94, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:94, column:80,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:80,the value of plot_cost is         : 3.2640044082580886 

 At row:94, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:94, column:81,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:81,the value of plot_cost is         : 3.210375170901168 

 At row:94, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:94, column:82,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:82,the value of plot_cost is         : 3.157553993946762 

 At row:94, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:94, column:83,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:83,the value of plot_cost is         : 3.1055408773948705 

 At row:94, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:94, column:84,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:84,the value of plot_cost is         : 3.054335821245495 

 At row:94, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:94, column:85,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:85,the value of plot_cost is         : 3.003938825498635 

 At row:94, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:94, column:86,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:86,the value of plot_cost is         : 2.954349890154289 

 At row:94, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:94, column:87,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:87,the value of plot_cost is         : 2.9055690152124587 

 At row:94, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:94, column:88,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:88,the value of plot_cost is         : 2.857596200673143 

 At row:94, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:94, column:89,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:89,the value of plot_cost is         : 2.810431446536343 

 At row:94, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:94, column:90,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:90,the value of plot_cost is         : 2.7640747528020575 

 At row:94, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:94, column:91,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:91,the value of plot_cost is         : 2.718526119470288 

 At row:94, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:94, column:92,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:92,the value of plot_cost is         : 2.6737855465410334 

 At row:94, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:94, column:93,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:93,the value of plot_cost is         : 2.629853034014292 

 At row:94, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:94, column:94,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:94,the value of plot_cost is         : 2.5867285818900676 

 At row:94, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:94, column:95,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:95,the value of plot_cost is         : 2.5444121901683583 

 At row:94, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:94, column:96,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:96,the value of plot_cost is         : 2.5029038588491637 

 At row:94, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:94, column:97,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:97,the value of plot_cost is         : 2.4622035879324837 

 At row:94, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:94, column:98,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:98,the value of plot_cost is         : 2.422311377418319 

 At row:94, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:94, column:99,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:99,the value of plot_cost is         : 2.3832272273066697 

 At row:94, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:94, column:100,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:100,the value of plot_cost is         : 2.3449511375975356 

 At row:94, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:94, column:101,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:101,the value of plot_cost is         : 2.3074831082909166 

 At row:94, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:94, column:102,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:102,the value of plot_cost is         : 2.2708231393868124 

 At row:94, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:94, column:103,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:103,the value of plot_cost is         : 2.2349712308852228 

 At row:94, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:94, column:104,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:104,the value of plot_cost is         : 2.1999273827861487 

 At row:94, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:94, column:105,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:105,the value of plot_cost is         : 2.1656915950895903 

 At row:94, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:94, column:106,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:106,the value of plot_cost is         : 2.132263867795547 

 At row:94, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:94, column:107,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:107,the value of plot_cost is         : 2.099644200904018 

 At row:94, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:94, column:108,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:108,the value of plot_cost is         : 2.067832594415004 

 At row:94, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:94, column:109,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:109,the value of plot_cost is         : 2.036829048328505 

 At row:94, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:94, column:110,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:110,the value of plot_cost is         : 2.006633562644522 

 At row:94, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:94, column:111,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:111,the value of plot_cost is         : 1.977246137363054 

 At row:94, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:94, column:112,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:112,the value of plot_cost is         : 1.9486667724841005 

 At row:94, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:94, column:113,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:113,the value of plot_cost is         : 1.9208954680076618 

 At row:94, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:94, column:114,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:114,the value of plot_cost is         : 1.8939322239337393 

 At row:94, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:94, column:115,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:115,the value of plot_cost is         : 1.867777040262331 

 At row:94, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:94, column:116,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:116,the value of plot_cost is         : 1.8424299169934388 

 At row:94, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:94, column:117,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:117,the value of plot_cost is         : 1.8178908541270604 

 At row:94, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:94, column:118,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:118,the value of plot_cost is         : 1.7941598516631976 

 At row:94, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:94, column:119,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:119,the value of plot_cost is         : 1.7712369096018499 

 At row:94, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:94, column:120,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:120,the value of plot_cost is         : 1.7491220279430173 

 At row:94, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:94, column:121,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:121,the value of plot_cost is         : 1.7278152066867005 

 At row:94, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:94, column:122,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:122,the value of plot_cost is         : 1.7073164458328978 

 At row:94, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:94, column:123,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:123,the value of plot_cost is         : 1.68762574538161 

 At row:94, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:94, column:124,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:124,the value of plot_cost is         : 1.6687431053328379 

 At row:94, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:94, column:125,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:125,the value of plot_cost is         : 1.650668525686581 

 At row:94, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:94, column:126,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:126,the value of plot_cost is         : 1.6334020064428394 

 At row:94, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:94, column:127,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:127,the value of plot_cost is         : 1.6169435476016119 

 At row:94, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:94, column:128,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:128,the value of plot_cost is         : 1.6012931491628999 

 At row:94, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:94, column:129,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:129,the value of plot_cost is         : 1.5864508111267033 

 At row:94, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:94, column:130,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:130,the value of plot_cost is         : 1.5724165334930216 

 At row:94, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:94, column:131,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:131,the value of plot_cost is         : 1.5591903162618554 

 At row:94, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:94, column:132,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:132,the value of plot_cost is         : 1.5467721594332033 

 At row:94, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:94, column:133,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:133,the value of plot_cost is         : 1.5351620630070666 

 At row:94, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:94, column:134,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:134,the value of plot_cost is         : 1.5243600269834456 

 At row:94, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:94, column:135,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:135,the value of plot_cost is         : 1.5143660513623398 

 At row:94, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:94, column:136,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:136,the value of plot_cost is         : 1.5051801361437485 

 At row:94, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:94, column:137,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:137,the value of plot_cost is         : 1.496802281327672 

 At row:94, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:94, column:138,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:138,the value of plot_cost is         : 1.489232486914111 

 At row:94, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:94, column:139,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:139,the value of plot_cost is         : 1.4824707529030654 

 At row:94, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:94, column:140,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:140,the value of plot_cost is         : 1.4765170792945348 

 At row:94, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:94, column:141,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:141,the value of plot_cost is         : 1.471371466088519 

 At row:94, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:94, column:142,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:142,the value of plot_cost is         : 1.467033913285018 

 At row:94, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:94, column:143,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:143,the value of plot_cost is         : 1.4635044208840324 

 At row:94, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:94, column:144,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:144,the value of plot_cost is         : 1.4607829888855624 

 At row:94, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:94, column:145,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:145,the value of plot_cost is         : 1.458869617289607 

 At row:94, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:94, column:146,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:146,the value of plot_cost is         : 1.4577643060961667 

 At row:94, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:94, column:147,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:147,the value of plot_cost is         : 1.4574670553052411 

 At row:94, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:94, column:148,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:148,the value of plot_cost is         : 1.4579778649168311 

 At row:94, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:94, column:149,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:149,the value of plot_cost is         : 1.4592967349309365 

 At row:94, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:94, column:150,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:150,the value of plot_cost is         : 1.4614236653475567 

 At row:94, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:94, column:151,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:151,the value of plot_cost is         : 1.4643586561666915 

 At row:94, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:94, column:152,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:152,the value of plot_cost is         : 1.4681017073883413 

 At row:94, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:94, column:153,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:153,the value of plot_cost is         : 1.4726528190125066 

 At row:94, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:94, column:154,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:154,the value of plot_cost is         : 1.4780119910391878 

 At row:94, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:94, column:155,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:155,the value of plot_cost is         : 1.4841792234683833 

 At row:94, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:94, column:156,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:156,the value of plot_cost is         : 1.4911545163000932 

 At row:94, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:94, column:157,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:157,the value of plot_cost is         : 1.498937869534319 

 At row:94, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:94, column:158,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:158,the value of plot_cost is         : 1.5075292831710598 

 At row:94, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:94, column:159,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:159,the value of plot_cost is         : 1.5169287572103163 

 At row:94, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:94, column:160,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:160,the value of plot_cost is         : 1.527136291652087 

 At row:94, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:94, column:161,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:161,the value of plot_cost is         : 1.5381518864963726 

 At row:94, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:94, column:162,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:162,the value of plot_cost is         : 1.5499755417431735 

 At row:94, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:94, column:163,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:163,the value of plot_cost is         : 1.5626072573924898 

 At row:94, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:94, column:164,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:164,the value of plot_cost is         : 1.5760470334443222 

 At row:94, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:94, column:165,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:165,the value of plot_cost is         : 1.590294869898668 

 At row:94, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:94, column:166,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:166,the value of plot_cost is         : 1.6053507667555291 

 At row:94, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:94, column:167,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:167,the value of plot_cost is         : 1.6212147240149055 

 At row:94, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:94, column:168,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:168,the value of plot_cost is         : 1.6378867416767973 

 At row:94, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:94, column:169,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:169,the value of plot_cost is         : 1.6553668197412048 

 At row:94, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:94, column:170,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:170,the value of plot_cost is         : 1.6736549582081266 

 At row:94, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:94, column:171,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:171,the value of plot_cost is         : 1.6927511570775629 

 At row:94, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:94, column:172,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:172,the value of plot_cost is         : 1.712655416349515 

 At row:94, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:94, column:173,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:173,the value of plot_cost is         : 1.7333677360239814 

 At row:94, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:94, column:174,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:174,the value of plot_cost is         : 1.754888116100965 

 At row:94, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:94, column:175,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:175,the value of plot_cost is         : 1.7772165565804623 

 At row:94, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:94, column:176,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:176,the value of plot_cost is         : 1.800353057462474 

 At row:94, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:94, column:177,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:177,the value of plot_cost is         : 1.8242976187470008 

 At row:94, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:94, column:178,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:178,the value of plot_cost is         : 1.8490502404340436 

 At row:94, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:94, column:179,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:179,the value of plot_cost is         : 1.874610922523602 

 At row:94, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:94, column:180,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:180,the value of plot_cost is         : 1.9009796650156745 

 At row:94, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:94, column:181,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:181,the value of plot_cost is         : 1.928156467910262 

 At row:94, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:94, column:182,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:182,the value of plot_cost is         : 1.9561413312073648 

 At row:94, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:94, column:183,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:183,the value of plot_cost is         : 1.9849342549069826 

 At row:94, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:94, column:184,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:184,the value of plot_cost is         : 2.0145352390091165 

 At row:94, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:94, column:185,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:185,the value of plot_cost is         : 2.0449442835137646 

 At row:94, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:94, column:186,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:186,the value of plot_cost is         : 2.076161388420928 

 At row:94, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:94, column:187,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:187,the value of plot_cost is         : 2.1081865537306053 

 At row:94, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:94, column:188,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:188,the value of plot_cost is         : 2.1410197794427988 

 At row:94, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:94, column:189,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:189,the value of plot_cost is         : 2.1746610655575083 

 At row:94, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:94, column:190,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:190,the value of plot_cost is         : 2.2091104120747316 

 At row:94, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:94, column:191,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:191,the value of plot_cost is         : 2.24436781899447 

 At row:94, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:94, column:192,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:192,the value of plot_cost is         : 2.2804332863167227 

 At row:94, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:94, column:193,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:193,the value of plot_cost is         : 2.317306814041492 

 At row:94, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:94, column:194,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:194,the value of plot_cost is         : 2.354988402168777 

 At row:94, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:94, column:195,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:195,the value of plot_cost is         : 2.3934780506985764 

 At row:94, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:94, column:196,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:196,the value of plot_cost is         : 2.43277575963089 

 At row:94, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:94, column:197,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:197,the value of plot_cost is         : 2.472881528965719 

 At row:94, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:94, column:198,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:198,the value of plot_cost is         : 2.5137953587030624 

 At row:94, column:199,the value of plot_t0 is           : 3.0
 At row:94, column:199,the value of plot_t1 is           : 0.8894472361809045
 At row:94, column:199,the value of plot_cost is         : 2.5555172488429228 

 At row:95, column:0,the value of plot_t0 is           : -1.0
 At row:95, column:0,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:0,the value of plot_cost is         : 9.7239607585667 

 At row:95, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:95, column:1,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:1,the value of plot_cost is         : 9.60836483205691 

 At row:95, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:95, column:2,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:2,the value of plot_cost is         : 9.49357696594963 

 At row:95, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:95, column:3,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:3,the value of plot_cost is         : 9.37959716024487 

 At row:95, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:95, column:4,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:4,the value of plot_cost is         : 9.266425414942622 

 At row:95, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:95, column:5,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:5,the value of plot_cost is         : 9.15406173004289 

 At row:95, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:95, column:6,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:6,the value of plot_cost is         : 9.042506105545673 

 At row:95, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:95, column:7,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:7,the value of plot_cost is         : 8.931758541450971 

 At row:95, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:95, column:8,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:8,the value of plot_cost is         : 8.821819037758786 

 At row:95, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:95, column:9,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:9,the value of plot_cost is         : 8.712687594469113 

 At row:95, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:95, column:10,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:10,the value of plot_cost is         : 8.604364211581958 

 At row:95, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:95, column:11,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:11,the value of plot_cost is         : 8.496848889097313 

 At row:95, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:95, column:12,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:12,the value of plot_cost is         : 8.39014162701519 

 At row:95, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:95, column:13,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:13,the value of plot_cost is         : 8.284242425335579 

 At row:95, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:95, column:14,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:14,the value of plot_cost is         : 8.179151284058483 

 At row:95, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:95, column:15,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:15,the value of plot_cost is         : 8.0748682031839 

 At row:95, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:95, column:16,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:16,the value of plot_cost is         : 7.971393182711832 

 At row:95, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:95, column:17,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:17,the value of plot_cost is         : 7.868726222642284 

 At row:95, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:95, column:18,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:18,the value of plot_cost is         : 7.766867322975248 

 At row:95, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:95, column:19,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:19,the value of plot_cost is         : 7.665816483710728 

 At row:95, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:95, column:20,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:20,the value of plot_cost is         : 7.565573704848721 

 At row:95, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:95, column:21,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:21,the value of plot_cost is         : 7.466138986389229 

 At row:95, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:95, column:22,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:22,the value of plot_cost is         : 7.367512328332255 

 At row:95, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:95, column:23,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:23,the value of plot_cost is         : 7.269693730677796 

 At row:95, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:95, column:24,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:24,the value of plot_cost is         : 7.17268319342585 

 At row:95, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:95, column:25,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:25,the value of plot_cost is         : 7.0764807165764205 

 At row:95, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:95, column:26,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:26,the value of plot_cost is         : 6.981086300129505 

 At row:95, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:95, column:27,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:27,the value of plot_cost is         : 6.886499944085104 

 At row:95, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:95, column:28,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:28,the value of plot_cost is         : 6.79272164844322 

 At row:95, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:95, column:29,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:29,the value of plot_cost is         : 6.69975141320385 

 At row:95, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:95, column:30,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:30,the value of plot_cost is         : 6.6075892383669945 

 At row:95, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:95, column:31,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:31,the value of plot_cost is         : 6.516235123932654 

 At row:95, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:95, column:32,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:32,the value of plot_cost is         : 6.42568906990083 

 At row:95, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:95, column:33,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:33,the value of plot_cost is         : 6.335951076271521 

 At row:95, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:95, column:34,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:34,the value of plot_cost is         : 6.247021143044727 

 At row:95, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:95, column:35,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:35,the value of plot_cost is         : 6.158899270220448 

 At row:95, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:95, column:36,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:36,the value of plot_cost is         : 6.071585457798683 

 At row:95, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:95, column:37,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:37,the value of plot_cost is         : 5.985079705779435 

 At row:95, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:95, column:38,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:38,the value of plot_cost is         : 5.8993820141627005 

 At row:95, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:95, column:39,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:39,the value of plot_cost is         : 5.8144923829484805 

 At row:95, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:95, column:40,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:40,the value of plot_cost is         : 5.730410812136777 

 At row:95, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:95, column:41,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:41,the value of plot_cost is         : 5.647137301727587 

 At row:95, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:95, column:42,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:42,the value of plot_cost is         : 5.564671851720916 

 At row:95, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:95, column:43,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:43,the value of plot_cost is         : 5.483014462116758 

 At row:95, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:95, column:44,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:44,the value of plot_cost is         : 5.402165132915112 

 At row:95, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:95, column:45,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:45,the value of plot_cost is         : 5.3221238641159845 

 At row:95, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:95, column:46,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:46,the value of plot_cost is         : 5.24289065571937 

 At row:95, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:95, column:47,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:47,the value of plot_cost is         : 5.164465507725272 

 At row:95, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:95, column:48,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:48,the value of plot_cost is         : 5.08684842013369 

 At row:95, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:95, column:49,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:49,the value of plot_cost is         : 5.010039392944621 

 At row:95, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:95, column:50,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:50,the value of plot_cost is         : 4.934038426158069 

 At row:95, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:95, column:51,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:51,the value of plot_cost is         : 4.85884551977403 

 At row:95, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:95, column:52,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:52,the value of plot_cost is         : 4.784460673792508 

 At row:95, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:95, column:53,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:53,the value of plot_cost is         : 4.710883888213502 

 At row:95, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:95, column:54,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:54,the value of plot_cost is         : 4.638115163037007 

 At row:95, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:95, column:55,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:55,the value of plot_cost is         : 4.566154498263031 

 At row:95, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:95, column:56,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:56,the value of plot_cost is         : 4.495001893891566 

 At row:95, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:95, column:57,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:57,the value of plot_cost is         : 4.42465734992262 

 At row:95, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:95, column:58,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:58,the value of plot_cost is         : 4.355120866356189 

 At row:95, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:95, column:59,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:59,the value of plot_cost is         : 4.28639244319227 

 At row:95, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:95, column:60,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:60,the value of plot_cost is         : 4.218472080430868 

 At row:95, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:95, column:61,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:61,the value of plot_cost is         : 4.15135977807198 

 At row:95, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:95, column:62,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:62,the value of plot_cost is         : 4.0850555361156085 

 At row:95, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:95, column:63,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:63,the value of plot_cost is         : 4.019559354561753 

 At row:95, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:95, column:64,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:64,the value of plot_cost is         : 3.9548712334104104 

 At row:95, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:95, column:65,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:65,the value of plot_cost is         : 3.8909911726615842 

 At row:95, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:95, column:66,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:66,the value of plot_cost is         : 3.827919172315272 

 At row:95, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:95, column:67,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:67,the value of plot_cost is         : 3.765655232371476 

 At row:95, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:95, column:68,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:68,the value of plot_cost is         : 3.7041993528301953 

 At row:95, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:95, column:69,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:69,the value of plot_cost is         : 3.6435515336914275 

 At row:95, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:95, column:70,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:70,the value of plot_cost is         : 3.5837117749551775 

 At row:95, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:95, column:71,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:71,the value of plot_cost is         : 3.5246800766214403 

 At row:95, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:95, column:72,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:72,the value of plot_cost is         : 3.46645643869022 

 At row:95, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:95, column:73,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:73,the value of plot_cost is         : 3.4090408611615146 

 At row:95, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:95, column:74,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:74,the value of plot_cost is         : 3.352433344035323 

 At row:95, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:95, column:75,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:75,the value of plot_cost is         : 3.2966338873116476 

 At row:95, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:95, column:76,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:76,the value of plot_cost is         : 3.2416424909904866 

 At row:95, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:95, column:77,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:77,the value of plot_cost is         : 3.1874591550718403 

 At row:95, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:95, column:78,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:78,the value of plot_cost is         : 3.134083879555711 

 At row:95, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:95, column:79,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:79,the value of plot_cost is         : 3.081516664442094 

 At row:95, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:95, column:80,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:80,the value of plot_cost is         : 3.0297575097309943 

 At row:95, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:95, column:81,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:81,the value of plot_cost is         : 2.978806415422409 

 At row:95, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:95, column:82,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:82,the value of plot_cost is         : 2.928663381516339 

 At row:95, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:95, column:83,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:83,the value of plot_cost is         : 2.879328408012784 

 At row:95, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:95, column:84,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:84,the value of plot_cost is         : 2.8308014949117437 

 At row:95, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:95, column:85,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:85,the value of plot_cost is         : 2.7830826422132198 

 At row:95, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:95, column:86,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:86,the value of plot_cost is         : 2.736171849917209 

 At row:95, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:95, column:87,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:87,the value of plot_cost is         : 2.6900691180237146 

 At row:95, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:95, column:88,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:88,the value of plot_cost is         : 2.6447744465327347 

 At row:95, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:95, column:89,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:89,the value of plot_cost is         : 2.60028783544427 

 At row:95, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:95, column:90,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:90,the value of plot_cost is         : 2.556609284758321 

 At row:95, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:95, column:91,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:91,the value of plot_cost is         : 2.5137387944748864 

 At row:95, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:95, column:92,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:92,the value of plot_cost is         : 2.4716763645939674 

 At row:95, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:95, column:93,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:93,the value of plot_cost is         : 2.4304219951155632 

 At row:95, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:95, column:94,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:94,the value of plot_cost is         : 2.3899756860396733 

 At row:95, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:95, column:95,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:95,the value of plot_cost is         : 2.3503374373663 

 At row:95, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:95, column:96,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:96,the value of plot_cost is         : 2.3115072490954405 

 At row:95, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:95, column:97,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:97,the value of plot_cost is         : 2.2734851212270972 

 At row:95, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:95, column:98,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:98,the value of plot_cost is         : 2.2362710537612682 

 At row:95, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:95, column:99,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:99,the value of plot_cost is         : 2.1998650466979544 

 At row:95, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:95, column:100,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:100,the value of plot_cost is         : 2.164267100037156 

 At row:95, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:95, column:101,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:101,the value of plot_cost is         : 2.129477213778872 

 At row:95, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:95, column:102,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:102,the value of plot_cost is         : 2.0954953879231044 

 At row:95, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:95, column:103,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:103,the value of plot_cost is         : 2.062321622469851 

 At row:95, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:95, column:104,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:104,the value of plot_cost is         : 2.0299559174191124 

 At row:95, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:95, column:105,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:105,the value of plot_cost is         : 1.9983982727708895 

 At row:95, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:95, column:106,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:106,the value of plot_cost is         : 1.967648688525181 

 At row:95, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:95, column:107,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:107,the value of plot_cost is         : 1.9377071646819881 

 At row:95, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:95, column:108,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:108,the value of plot_cost is         : 1.908573701241311 

 At row:95, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:95, column:109,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:109,the value of plot_cost is         : 1.8802482982031474 

 At row:95, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:95, column:110,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:110,the value of plot_cost is         : 1.852730955567499 

 At row:95, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:95, column:111,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:111,the value of plot_cost is         : 1.8260216733343673 

 At row:95, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:95, column:112,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:112,the value of plot_cost is         : 1.8001204515037499 

 At row:95, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:95, column:113,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:113,the value of plot_cost is         : 1.7750272900756476 

 At row:95, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:95, column:114,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:114,the value of plot_cost is         : 1.7507421890500598 

 At row:95, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:95, column:115,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:115,the value of plot_cost is         : 1.7272651484269868 

 At row:95, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:95, column:116,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:116,the value of plot_cost is         : 1.70459616820643 

 At row:95, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:95, column:117,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:117,the value of plot_cost is         : 1.6827352483883882 

 At row:95, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:95, column:118,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:118,the value of plot_cost is         : 1.6616823889728618 

 At row:95, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:95, column:119,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:119,the value of plot_cost is         : 1.6414375899598492 

 At row:95, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:95, column:120,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:120,the value of plot_cost is         : 1.622000851349352 

 At row:95, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:95, column:121,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:121,the value of plot_cost is         : 1.6033721731413706 

 At row:95, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:95, column:122,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:122,the value of plot_cost is         : 1.5855515553359043 

 At row:95, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:95, column:123,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:123,the value of plot_cost is         : 1.5685389979329531 

 At row:95, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:95, column:124,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:124,the value of plot_cost is         : 1.552334500932516 

 At row:95, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:95, column:125,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:125,the value of plot_cost is         : 1.5369380643345942 

 At row:95, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:95, column:126,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:126,the value of plot_cost is         : 1.522349688139188 

 At row:95, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:95, column:127,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:127,the value of plot_cost is         : 1.508569372346297 

 At row:95, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:95, column:128,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:128,the value of plot_cost is         : 1.4955971169559215 

 At row:95, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:95, column:129,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:129,the value of plot_cost is         : 1.48343292196806 

 At row:95, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:95, column:130,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:130,the value of plot_cost is         : 1.4720767873827134 

 At row:95, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:95, column:131,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:131,the value of plot_cost is         : 1.4615287131998826 

 At row:95, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:95, column:132,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:132,the value of plot_cost is         : 1.4517886994195672 

 At row:95, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:95, column:133,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:133,the value of plot_cost is         : 1.4428567460417672 

 At row:95, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:95, column:134,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:134,the value of plot_cost is         : 1.4347328530664811 

 At row:95, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:95, column:135,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:135,the value of plot_cost is         : 1.4274170204937102 

 At row:95, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:95, column:136,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:136,the value of plot_cost is         : 1.4209092483234549 

 At row:95, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:95, column:137,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:137,the value of plot_cost is         : 1.415209536555715 

 At row:95, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:95, column:138,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:138,the value of plot_cost is         : 1.41031788519049 

 At row:95, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:95, column:139,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:139,the value of plot_cost is         : 1.4062342942277795 

 At row:95, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:95, column:140,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:140,the value of plot_cost is         : 1.402958763667584 

 At row:95, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:95, column:141,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:141,the value of plot_cost is         : 1.4004912935099039 

 At row:95, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:95, column:142,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:142,the value of plot_cost is         : 1.3988318837547398 

 At row:95, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:95, column:143,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:143,the value of plot_cost is         : 1.3979805344020901 

 At row:95, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:95, column:144,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:144,the value of plot_cost is         : 1.397937245451955 

 At row:95, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:95, column:145,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:145,the value of plot_cost is         : 1.3987020169043345 

 At row:95, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:95, column:146,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:146,the value of plot_cost is         : 1.40027484875923 

 At row:95, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:95, column:147,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:147,the value of plot_cost is         : 1.4026557410166414 

 At row:95, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:95, column:148,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:148,the value of plot_cost is         : 1.4058446936765674 

 At row:95, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:95, column:149,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:149,the value of plot_cost is         : 1.4098417067390077 

 At row:95, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:95, column:150,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:150,the value of plot_cost is         : 1.414646780203963 

 At row:95, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:95, column:151,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:151,the value of plot_cost is         : 1.4202599140714345 

 At row:95, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:95, column:152,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:152,the value of plot_cost is         : 1.4266811083414201 

 At row:95, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:95, column:153,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:153,the value of plot_cost is         : 1.4339103630139216 

 At row:95, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:95, column:154,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:154,the value of plot_cost is         : 1.4419476780889375 

 At row:95, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:95, column:155,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:155,the value of plot_cost is         : 1.4507930535664681 

 At row:95, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:95, column:156,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:156,the value of plot_cost is         : 1.4604464894465152 

 At row:95, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:95, column:157,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:157,the value of plot_cost is         : 1.4709079857290763 

 At row:95, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:95, column:158,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:158,the value of plot_cost is         : 1.4821775424141534 

 At row:95, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:95, column:159,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:159,the value of plot_cost is         : 1.4942551595017446 

 At row:95, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:95, column:160,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:160,the value of plot_cost is         : 1.5071408369918506 

 At row:95, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:95, column:161,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:161,the value of plot_cost is         : 1.5208345748844732 

 At row:95, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:95, column:162,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:162,the value of plot_cost is         : 1.53533637317961 

 At row:95, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:95, column:163,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:163,the value of plot_cost is         : 1.5506462318772622 

 At row:95, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:95, column:164,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:164,the value of plot_cost is         : 1.566764150977429 

 At row:95, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:95, column:165,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:165,the value of plot_cost is         : 1.5836901304801103 

 At row:95, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:95, column:166,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:166,the value of plot_cost is         : 1.6014241703853083 

 At row:95, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:95, column:167,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:167,the value of plot_cost is         : 1.6199662706930202 

 At row:95, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:95, column:168,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:168,the value of plot_cost is         : 1.6393164314032485 

 At row:95, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:95, column:169,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:169,the value of plot_cost is         : 1.6594746525159905 

 At row:95, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:95, column:170,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:170,the value of plot_cost is         : 1.6804409340312474 

 At row:95, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:95, column:171,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:171,the value of plot_cost is         : 1.7022152759490203 

 At row:95, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:95, column:172,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:172,the value of plot_cost is         : 1.7247976782693082 

 At row:95, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:95, column:173,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:173,the value of plot_cost is         : 1.7481881409921118 

 At row:95, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:95, column:174,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:174,the value of plot_cost is         : 1.772386664117429 

 At row:95, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:95, column:175,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:175,the value of plot_cost is         : 1.7973932476452612 

 At row:95, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:95, column:176,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:176,the value of plot_cost is         : 1.8232078915756103 

 At row:95, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:95, column:177,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:177,the value of plot_cost is         : 1.8498305959084729 

 At row:95, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:95, column:178,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:178,the value of plot_cost is         : 1.8772613606438522 

 At row:95, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:95, column:179,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:179,the value of plot_cost is         : 1.9055001857817448 

 At row:95, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:95, column:180,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:180,the value of plot_cost is         : 1.9345470713221526 

 At row:95, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:95, column:181,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:181,the value of plot_cost is         : 1.9644020172650771 

 At row:95, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:95, column:182,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:182,the value of plot_cost is         : 1.9950650236105154 

 At row:95, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:95, column:183,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:183,the value of plot_cost is         : 2.0265360903584697 

 At row:95, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:95, column:184,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:184,the value of plot_cost is         : 2.058815217508938 

 At row:95, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:95, column:185,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:185,the value of plot_cost is         : 2.091902405061921 

 At row:95, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:95, column:186,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:186,the value of plot_cost is         : 2.1257976530174214 

 At row:95, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:95, column:187,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:187,the value of plot_cost is         : 2.1605009613754347 

 At row:95, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:95, column:188,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:188,the value of plot_cost is         : 2.1960123301359644 

 At row:95, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:95, column:189,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:189,the value of plot_cost is         : 2.2323317592990084 

 At row:95, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:95, column:190,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:190,the value of plot_cost is         : 2.269459248864567 

 At row:95, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:95, column:191,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:191,the value of plot_cost is         : 2.3073947988326418 

 At row:95, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:95, column:192,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:192,the value of plot_cost is         : 2.346138409203231 

 At row:95, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:95, column:193,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:193,the value of plot_cost is         : 2.3856900799763365 

 At row:95, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:95, column:194,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:194,the value of plot_cost is         : 2.4260498111519553 

 At row:95, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:95, column:195,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:195,the value of plot_cost is         : 2.46721760273009 

 At row:95, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:95, column:196,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:196,the value of plot_cost is         : 2.509193454710741 

 At row:95, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:95, column:197,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:197,the value of plot_cost is         : 2.5519773670939063 

 At row:95, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:95, column:198,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:198,the value of plot_cost is         : 2.5955693398795856 

 At row:95, column:199,the value of plot_t0 is           : 3.0
 At row:95, column:199,the value of plot_t1 is           : 0.9095477386934674
 At row:95, column:199,the value of plot_cost is         : 2.6399693730677805 

 At row:96, column:0,the value of plot_t0 is           : -1.0
 At row:96, column:0,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:0,the value of plot_cost is         : 9.288045071011915 

 At row:96, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:96, column:1,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:1,the value of plot_cost is         : 9.17512728755046 

 At row:96, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:96, column:2,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:2,the value of plot_cost is         : 9.063017564491519 

 At row:96, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:96, column:3,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:3,the value of plot_cost is         : 8.95171590183509 

 At row:96, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:96, column:4,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:4,the value of plot_cost is         : 8.841222299581178 

 At row:96, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:96, column:5,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:5,the value of plot_cost is         : 8.731536757729783 

 At row:96, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:96, column:6,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:6,the value of plot_cost is         : 8.622659276280903 

 At row:96, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:96, column:7,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:7,the value of plot_cost is         : 8.514589855234536 

 At row:96, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:96, column:8,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:8,the value of plot_cost is         : 8.407328494590686 

 At row:96, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:96, column:9,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:9,the value of plot_cost is         : 8.300875194349349 

 At row:96, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:96, column:10,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:10,the value of plot_cost is         : 8.195229954510529 

 At row:96, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:96, column:11,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:11,the value of plot_cost is         : 8.090392775074223 

 At row:96, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:96, column:12,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:12,the value of plot_cost is         : 7.9863636560404325 

 At row:96, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:96, column:13,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:13,the value of plot_cost is         : 7.883142597409156 

 At row:96, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:96, column:14,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:14,the value of plot_cost is         : 7.780729599180395 

 At row:96, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:96, column:15,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:15,the value of plot_cost is         : 7.679124661354152 

 At row:96, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:96, column:16,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:16,the value of plot_cost is         : 7.578327783930421 

 At row:96, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:96, column:17,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:17,the value of plot_cost is         : 7.478338966909206 

 At row:96, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:96, column:18,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:18,the value of plot_cost is         : 7.379158210290506 

 At row:96, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:96, column:19,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:19,the value of plot_cost is         : 7.28078551407432 

 At row:96, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:96, column:20,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:20,the value of plot_cost is         : 7.18322087826065 

 At row:96, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:96, column:21,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:21,the value of plot_cost is         : 7.086464302849496 

 At row:96, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:96, column:22,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:22,the value of plot_cost is         : 6.990515787840854 

 At row:96, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:96, column:23,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:23,the value of plot_cost is         : 6.895375333234732 

 At row:96, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:96, column:24,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:24,the value of plot_cost is         : 6.801042939031121 

 At row:96, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:96, column:25,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:25,the value of plot_cost is         : 6.707518605230028 

 At row:96, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:96, column:26,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:26,the value of plot_cost is         : 6.614802331831449 

 At row:96, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:96, column:27,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:27,the value of plot_cost is         : 6.522894118835382 

 At row:96, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:96, column:28,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:28,the value of plot_cost is         : 6.431793966241835 

 At row:96, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:96, column:29,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:29,the value of plot_cost is         : 6.3415018740508 

 At row:96, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:96, column:30,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:30,the value of plot_cost is         : 6.25201784226228 

 At row:96, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:96, column:31,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:31,the value of plot_cost is         : 6.163341870876278 

 At row:96, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:96, column:32,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:32,the value of plot_cost is         : 6.075473959892787 

 At row:96, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:96, column:33,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:33,the value of plot_cost is         : 5.988414109311814 

 At row:96, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:96, column:34,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:34,the value of plot_cost is         : 5.902162319133355 

 At row:96, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:96, column:35,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:35,the value of plot_cost is         : 5.816718589357412 

 At row:96, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:96, column:36,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:36,the value of plot_cost is         : 5.732082919983984 

 At row:96, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:96, column:37,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:37,the value of plot_cost is         : 5.64825531101307 

 At row:96, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:96, column:38,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:38,the value of plot_cost is         : 5.565235762444672 

 At row:96, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:96, column:39,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:39,the value of plot_cost is         : 5.483024274278788 

 At row:96, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:96, column:40,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:40,the value of plot_cost is         : 5.401620846515422 

 At row:96, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:96, column:41,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:41,the value of plot_cost is         : 5.321025479154568 

 At row:96, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:96, column:42,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:42,the value of plot_cost is         : 5.241238172196229 

 At row:96, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:96, column:43,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:43,the value of plot_cost is         : 5.1622589256404074 

 At row:96, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:96, column:44,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:44,the value of plot_cost is         : 5.084087739487098 

 At row:96, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:96, column:45,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:45,the value of plot_cost is         : 5.0067246137363055 

 At row:96, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:96, column:46,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:46,the value of plot_cost is         : 4.9301695483880295 

 At row:96, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:96, column:47,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:47,the value of plot_cost is         : 4.854422543442265 

 At row:96, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:96, column:48,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:48,the value of plot_cost is         : 4.779483598899017 

 At row:96, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:96, column:49,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:49,the value of plot_cost is         : 4.705352714758285 

 At row:96, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:96, column:50,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:50,the value of plot_cost is         : 4.632029891020069 

 At row:96, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:96, column:51,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:51,the value of plot_cost is         : 4.559515127684367 

 At row:96, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:96, column:52,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:52,the value of plot_cost is         : 4.4878084247511785 

 At row:96, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:96, column:53,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:53,the value of plot_cost is         : 4.4169097822205075 

 At row:96, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:96, column:54,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:54,the value of plot_cost is         : 4.34681920009235 

 At row:96, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:96, column:55,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:55,the value of plot_cost is         : 4.277536678366708 

 At row:96, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:96, column:56,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:56,the value of plot_cost is         : 4.2090622170435825 

 At row:96, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:96, column:57,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:57,the value of plot_cost is         : 4.141395816122969 

 At row:96, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:96, column:58,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:58,the value of plot_cost is         : 4.074537475604874 

 At row:96, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:96, column:59,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:59,the value of plot_cost is         : 4.008487195489291 

 At row:96, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:96, column:60,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:60,the value of plot_cost is         : 3.943244975776225 

 At row:96, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:96, column:61,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:61,the value of plot_cost is         : 3.8788108164656747 

 At row:96, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:96, column:62,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:62,the value of plot_cost is         : 3.8151847175576377 

 At row:96, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:96, column:63,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:63,the value of plot_cost is         : 3.752366679052117 

 At row:96, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:96, column:64,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:64,the value of plot_cost is         : 3.6903567009491107 

 At row:96, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:96, column:65,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:65,the value of plot_cost is         : 3.62915478324862 

 At row:96, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:96, column:66,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:66,the value of plot_cost is         : 3.5687609259506443 

 At row:96, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:96, column:67,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:67,the value of plot_cost is         : 3.5091751290551834 

 At row:96, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:96, column:68,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:68,the value of plot_cost is         : 3.4503973925622375 

 At row:96, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:96, column:69,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:69,the value of plot_cost is         : 3.3924277164718064 

 At row:96, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:96, column:70,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:70,the value of plot_cost is         : 3.335266100783891 

 At row:96, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:96, column:71,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:71,the value of plot_cost is         : 3.2789125454984913 

 At row:96, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:96, column:72,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:72,the value of plot_cost is         : 3.223367050615605 

 At row:96, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:96, column:73,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:73,the value of plot_cost is         : 3.1686296161352354 

 At row:96, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:96, column:74,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:74,the value of plot_cost is         : 3.1147002420573795 

 At row:96, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:96, column:75,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:75,the value of plot_cost is         : 3.0615789283820396 

 At row:96, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:96, column:76,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:76,the value of plot_cost is         : 3.009265675109216 

 At row:96, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:96, column:77,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:77,the value of plot_cost is         : 2.9577604822389048 

 At row:96, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:96, column:78,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:78,the value of plot_cost is         : 2.907063349771109 

 At row:96, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:96, column:79,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:79,the value of plot_cost is         : 2.8571742777058304 

 At row:96, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:96, column:80,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:80,the value of plot_cost is         : 2.808093266043066 

 At row:96, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:96, column:81,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:81,the value of plot_cost is         : 2.7598203147828175 

 At row:96, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:96, column:82,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:82,the value of plot_cost is         : 2.7123554239250818 

 At row:96, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:96, column:83,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:83,the value of plot_cost is         : 2.665698593469861 

 At row:96, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:96, column:84,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:84,the value of plot_cost is         : 2.6198498234171574 

 At row:96, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:96, column:85,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:85,the value of plot_cost is         : 2.574809113766969 

 At row:96, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:96, column:86,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:86,the value of plot_cost is         : 2.5305764645192954 

 At row:96, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:96, column:87,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:87,the value of plot_cost is         : 2.4871518756741353 

 At row:96, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:96, column:88,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:88,the value of plot_cost is         : 2.444535347231491 

 At row:96, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:96, column:89,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:89,the value of plot_cost is         : 2.4027268791913627 

 At row:96, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:96, column:90,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:90,the value of plot_cost is         : 2.361726471553749 

 At row:96, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:96, column:91,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:91,the value of plot_cost is         : 2.321534124318651 

 At row:96, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:96, column:92,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:92,the value of plot_cost is         : 2.282149837486067 

 At row:96, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:96, column:93,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:93,the value of plot_cost is         : 2.2435736110559974 

 At row:96, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:96, column:94,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:94,the value of plot_cost is         : 2.2058054450284446 

 At row:96, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:96, column:95,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:95,the value of plot_cost is         : 2.1688453394034064 

 At row:96, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:96, column:96,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:96,the value of plot_cost is         : 2.132693294180884 

 At row:96, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:96, column:97,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:97,the value of plot_cost is         : 2.097349309360875 

 At row:96, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:96, column:98,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:98,the value of plot_cost is         : 2.062813384943381 

 At row:96, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:96, column:99,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:99,the value of plot_cost is         : 2.0290855209284038 

 At row:96, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:96, column:100,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:100,the value of plot_cost is         : 1.9961657173159415 

 At row:96, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:96, column:101,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:101,the value of plot_cost is         : 1.964053974105994 

 At row:96, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:96, column:102,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:102,the value of plot_cost is         : 1.9327502912985608 

 At row:96, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:96, column:103,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:103,the value of plot_cost is         : 1.9022546688936424 

 At row:96, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:96, column:104,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:104,the value of plot_cost is         : 1.8725671068912402 

 At row:96, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:96, column:105,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:105,the value of plot_cost is         : 1.8436876052913533 

 At row:96, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:96, column:106,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:106,the value of plot_cost is         : 1.8156161640939814 

 At row:96, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:96, column:107,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:107,the value of plot_cost is         : 1.7883527832991233 

 At row:96, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:96, column:108,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:108,the value of plot_cost is         : 1.761897462906781 

 At row:96, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:96, column:109,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:109,the value of plot_cost is         : 1.736250202916954 

 At row:96, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:96, column:110,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:110,the value of plot_cost is         : 1.711411003329642 

 At row:96, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:96, column:111,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:111,the value of plot_cost is         : 1.6873798641448456 

 At row:96, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:96, column:112,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:112,the value of plot_cost is         : 1.6641567853625632 

 At row:96, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:96, column:113,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:113,the value of plot_cost is         : 1.641741766982796 

 At row:96, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:96, column:114,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:114,the value of plot_cost is         : 1.6201348090055447 

 At row:96, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:96, column:115,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:115,the value of plot_cost is         : 1.5993359114308086 

 At row:96, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:96, column:116,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:116,the value of plot_cost is         : 1.5793450742585873 

 At row:96, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:96, column:117,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:117,the value of plot_cost is         : 1.5601622974888805 

 At row:96, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:96, column:118,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:118,the value of plot_cost is         : 1.5417875811216888 

 At row:96, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:96, column:119,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:119,the value of plot_cost is         : 1.5242209251570127 

 At row:96, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:96, column:120,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:120,the value of plot_cost is         : 1.507462329594852 

 At row:96, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:96, column:121,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:121,the value of plot_cost is         : 1.491511794435206 

 At row:96, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:96, column:122,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:122,the value of plot_cost is         : 1.4763693196780745 

 At row:96, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:96, column:123,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:123,the value of plot_cost is         : 1.4620349053234583 

 At row:96, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:96, column:124,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:124,the value of plot_cost is         : 1.448508551371358 

 At row:96, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:96, column:125,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:125,the value of plot_cost is         : 1.4357902578217727 

 At row:96, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:96, column:126,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:126,the value of plot_cost is         : 1.4238800246747025 

 At row:96, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:96, column:127,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:127,the value of plot_cost is         : 1.4127778519301464 

 At row:96, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:96, column:128,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:128,the value of plot_cost is         : 1.4024837395881056 

 At row:96, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:96, column:129,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:129,the value of plot_cost is         : 1.3929976876485803 

 At row:96, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:96, column:130,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:130,the value of plot_cost is         : 1.3843196961115705 

 At row:96, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:96, column:131,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:131,the value of plot_cost is         : 1.3764497649770755 

 At row:96, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:96, column:132,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:132,the value of plot_cost is         : 1.3693878942450952 

 At row:96, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:96, column:133,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:133,the value of plot_cost is         : 1.3631340839156296 

 At row:96, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:96, column:134,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:134,the value of plot_cost is         : 1.3576883339886803 

 At row:96, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:96, column:135,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:135,the value of plot_cost is         : 1.3530506444642456 

 At row:96, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:96, column:136,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:136,the value of plot_cost is         : 1.3492210153423259 

 At row:96, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:96, column:137,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:137,the value of plot_cost is         : 1.346199446622921 

 At row:96, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:96, column:138,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:138,the value of plot_cost is         : 1.343985938306031 

 At row:96, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:96, column:139,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:139,the value of plot_cost is         : 1.342580490391657 

 At row:96, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:96, column:140,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:140,the value of plot_cost is         : 1.341983102879798 

 At row:96, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:96, column:141,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:141,the value of plot_cost is         : 1.3421937757704534 

 At row:96, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:96, column:142,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:142,the value of plot_cost is         : 1.3432125090636242 

 At row:96, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:96, column:143,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:143,the value of plot_cost is         : 1.3450393027593097 

 At row:96, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:96, column:144,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:144,the value of plot_cost is         : 1.3476741568575112 

 At row:96, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:96, column:145,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:145,the value of plot_cost is         : 1.3511170713582275 

 At row:96, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:96, column:146,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:146,the value of plot_cost is         : 1.3553680462614583 

 At row:96, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:96, column:147,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:147,the value of plot_cost is         : 1.3604270815672044 

 At row:96, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:96, column:148,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:148,the value of plot_cost is         : 1.3662941772754653 

 At row:96, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:96, column:149,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:149,the value of plot_cost is         : 1.3729693333862423 

 At row:96, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:96, column:150,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:150,the value of plot_cost is         : 1.3804525498995344 

 At row:96, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:96, column:151,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:151,the value of plot_cost is         : 1.3887438268153403 

 At row:96, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:96, column:152,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:152,the value of plot_cost is         : 1.397843164133662 

 At row:96, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:96, column:153,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:153,the value of plot_cost is         : 1.4077505618544983 

 At row:96, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:96, column:154,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:154,the value of plot_cost is         : 1.418466019977851 

 At row:96, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:96, column:155,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:155,the value of plot_cost is         : 1.429989538503718 

 At row:96, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:96, column:156,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:156,the value of plot_cost is         : 1.4423211174320996 

 At row:96, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:96, column:157,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:157,the value of plot_cost is         : 1.4554607567629962 

 At row:96, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:96, column:158,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:158,the value of plot_cost is         : 1.4694084564964087 

 At row:96, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:96, column:159,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:159,the value of plot_cost is         : 1.4841642166323363 

 At row:96, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:96, column:160,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:160,the value of plot_cost is         : 1.4997280371707788 

 At row:96, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:96, column:161,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:161,the value of plot_cost is         : 1.516099918111736 

 At row:96, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:96, column:162,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:162,the value of plot_cost is         : 1.5332798594552084 

 At row:96, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:96, column:163,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:163,the value of plot_cost is         : 1.551267861201196 

 At row:96, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:96, column:164,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:164,the value of plot_cost is         : 1.5700639233496991 

 At row:96, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:96, column:165,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:165,the value of plot_cost is         : 1.5896680459007175 

 At row:96, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:96, column:166,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:166,the value of plot_cost is         : 1.61008022885425 

 At row:96, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:96, column:167,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:167,the value of plot_cost is         : 1.6313004722102973 

 At row:96, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:96, column:168,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:168,the value of plot_cost is         : 1.6533287759688609 

 At row:96, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:96, column:169,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:169,the value of plot_cost is         : 1.6761651401299393 

 At row:96, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:96, column:170,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:170,the value of plot_cost is         : 1.6998095646935325 

 At row:96, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:96, column:171,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:171,the value of plot_cost is         : 1.7242620496596412 

 At row:96, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:96, column:172,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:172,the value of plot_cost is         : 1.7495225950282638 

 At row:96, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:96, column:173,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:173,the value of plot_cost is         : 1.7755912007994026 

 At row:96, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:96, column:174,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:174,the value of plot_cost is         : 1.8024678669730563 

 At row:96, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:96, column:175,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:175,the value of plot_cost is         : 1.8301525935492253 

 At row:96, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:96, column:176,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:176,the value of plot_cost is         : 1.8586453805279088 

 At row:96, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:96, column:177,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:177,the value of plot_cost is         : 1.8879462279091073 

 At row:96, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:96, column:178,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:178,the value of plot_cost is         : 1.918055135692822 

 At row:96, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:96, column:179,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:179,the value of plot_cost is         : 1.9489721038790508 

 At row:96, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:96, column:180,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:180,the value of plot_cost is         : 1.9806971324677953 

 At row:96, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:96, column:181,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:181,the value of plot_cost is         : 2.013230221459054 

 At row:96, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:96, column:182,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:182,the value of plot_cost is         : 2.0465713708528277 

 At row:96, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:96, column:183,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:183,the value of plot_cost is         : 2.0807205806491176 

 At row:96, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:96, column:184,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:184,the value of plot_cost is         : 2.1156778508479226 

 At row:96, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:96, column:185,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:185,the value of plot_cost is         : 2.1514431814492423 

 At row:96, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:96, column:186,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:186,the value of plot_cost is         : 2.1880165724530762 

 At row:96, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:96, column:187,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:187,the value of plot_cost is         : 2.225398023859425 

 At row:96, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:96, column:188,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:188,the value of plot_cost is         : 2.263587535668291 

 At row:96, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:96, column:189,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:189,the value of plot_cost is         : 2.3025851078796715 

 At row:96, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:96, column:190,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:190,the value of plot_cost is         : 2.3423907404935664 

 At row:96, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:96, column:191,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:191,the value of plot_cost is         : 2.3830044335099765 

 At row:96, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:96, column:192,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:192,the value of plot_cost is         : 2.424426186928901 

 At row:96, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:96, column:193,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:193,the value of plot_cost is         : 2.4666560007503415 

 At row:96, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:96, column:194,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:194,the value of plot_cost is         : 2.509693874974297 

 At row:96, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:96, column:195,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:195,the value of plot_cost is         : 2.553539809600768 

 At row:96, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:96, column:196,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:196,the value of plot_cost is         : 2.598193804629753 

 At row:96, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:96, column:197,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:197,the value of plot_cost is         : 2.6436558600612545 

 At row:96, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:96, column:198,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:198,the value of plot_cost is         : 2.689925975895269 

 At row:96, column:199,the value of plot_t0 is           : 3.0
 At row:96, column:199,the value of plot_t1 is           : 0.9296482412060301
 At row:96, column:199,the value of plot_cost is         : 2.7370041521318007 

 At row:97, column:0,the value of plot_t0 is           : -1.0
 At row:97, column:0,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:0,the value of plot_cost is         : 8.86471203829629 

 At row:97, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:97, column:1,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:1,the value of plot_cost is         : 8.75447239788317 

 At row:97, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:97, column:2,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:2,the value of plot_cost is         : 8.645040817872562 

 At row:97, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:97, column:3,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:3,the value of plot_cost is         : 8.536417298264475 

 At row:97, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:97, column:4,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:4,the value of plot_cost is         : 8.428601839058897 

 At row:97, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:97, column:5,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:5,the value of plot_cost is         : 8.321594440255836 

 At row:97, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:97, column:6,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:6,the value of plot_cost is         : 8.215395101855293 

 At row:97, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:97, column:7,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:7,the value of plot_cost is         : 8.11000382385726 

 At row:97, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:97, column:8,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:8,the value of plot_cost is         : 8.005420606261746 

 At row:97, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:97, column:9,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:9,the value of plot_cost is         : 7.901645449068746 

 At row:97, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:97, column:10,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:10,the value of plot_cost is         : 7.798678352278261 

 At row:97, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:97, column:11,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:11,the value of plot_cost is         : 7.696519315890289 

 At row:97, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:97, column:12,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:12,the value of plot_cost is         : 7.595168339904835 

 At row:97, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:97, column:13,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:13,the value of plot_cost is         : 7.494625424321896 

 At row:97, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:97, column:14,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:14,the value of plot_cost is         : 7.394890569141471 

 At row:97, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:97, column:15,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:15,the value of plot_cost is         : 7.295963774363561 

 At row:97, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:97, column:16,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:16,the value of plot_cost is         : 7.1978450399881675 

 At row:97, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:97, column:17,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:17,the value of plot_cost is         : 7.100534366015286 

 At row:97, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:97, column:18,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:18,the value of plot_cost is         : 7.0040317524449245 

 At row:97, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:97, column:19,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:19,the value of plot_cost is         : 6.9083371992770735 

 At row:97, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:97, column:20,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:20,the value of plot_cost is         : 6.813450706511739 

 At row:97, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:97, column:21,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:21,the value of plot_cost is         : 6.71937227414892 

 At row:97, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:97, column:22,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:22,the value of plot_cost is         : 6.626101902188616 

 At row:97, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:97, column:23,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:23,the value of plot_cost is         : 6.533639590630829 

 At row:97, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:97, column:24,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:24,the value of plot_cost is         : 6.441985339475554 

 At row:97, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:97, column:25,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:25,the value of plot_cost is         : 6.351139148722796 

 At row:97, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:97, column:26,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:26,the value of plot_cost is         : 6.261101018372551 

 At row:97, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:97, column:27,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:27,the value of plot_cost is         : 6.171870948424822 

 At row:97, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:97, column:28,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:28,the value of plot_cost is         : 6.083448938879609 

 At row:97, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:97, column:29,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:29,the value of plot_cost is         : 5.9958349897369105 

 At row:97, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:97, column:30,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:30,the value of plot_cost is         : 5.909029100996729 

 At row:97, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:97, column:31,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:31,the value of plot_cost is         : 5.823031272659059 

 At row:97, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:97, column:32,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:32,the value of plot_cost is         : 5.737841504723906 

 At row:97, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:97, column:33,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:33,the value of plot_cost is         : 5.653459797191269 

 At row:97, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:97, column:34,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:34,the value of plot_cost is         : 5.569886150061145 

 At row:97, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:97, column:35,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:35,the value of plot_cost is         : 5.487120563333536 

 At row:97, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:97, column:36,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:36,the value of plot_cost is         : 5.405163037008443 

 At row:97, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:97, column:37,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:37,the value of plot_cost is         : 5.3240135710858665 

 At row:97, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:97, column:38,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:38,the value of plot_cost is         : 5.243672165565805 

 At row:97, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:97, column:39,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:39,the value of plot_cost is         : 5.1641388204482555 

 At row:97, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:97, column:40,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:40,the value of plot_cost is         : 5.085413535733224 

 At row:97, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:97, column:41,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:41,the value of plot_cost is         : 5.007496311420707 

 At row:97, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:97, column:42,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:42,the value of plot_cost is         : 4.930387147510704 

 At row:97, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:97, column:43,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:43,the value of plot_cost is         : 4.8540860440032185 

 At row:97, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:97, column:44,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:44,the value of plot_cost is         : 4.778593000898244 

 At row:97, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:97, column:45,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:45,the value of plot_cost is         : 4.703908018195789 

 At row:97, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:97, column:46,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:46,the value of plot_cost is         : 4.630031095895847 

 At row:97, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:97, column:47,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:47,the value of plot_cost is         : 4.556962233998419 

 At row:97, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:97, column:48,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:48,the value of plot_cost is         : 4.484701432503509 

 At row:97, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:97, column:49,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:49,the value of plot_cost is         : 4.41324869141111 

 At row:97, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:97, column:50,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:50,the value of plot_cost is         : 4.34260401072123 

 At row:97, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:97, column:51,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:51,the value of plot_cost is         : 4.272767390433863 

 At row:97, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:97, column:52,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:52,the value of plot_cost is         : 4.203738830549011 

 At row:97, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:97, column:53,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:53,the value of plot_cost is         : 4.1355183310666765 

 At row:97, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:97, column:54,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:54,the value of plot_cost is         : 4.068105891986853 

 At row:97, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:97, column:55,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:55,the value of plot_cost is         : 4.001501513309549 

 At row:97, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:97, column:56,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:56,the value of plot_cost is         : 3.9357051950347572 

 At row:97, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:97, column:57,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:57,the value of plot_cost is         : 3.870716937162481 

 At row:97, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:97, column:58,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:58,the value of plot_cost is         : 3.806536739692721 

 At row:97, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:97, column:59,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:59,the value of plot_cost is         : 3.743164602625474 

 At row:97, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:97, column:60,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:60,the value of plot_cost is         : 3.6806005259607435 

 At row:97, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:97, column:61,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:61,the value of plot_cost is         : 3.6188445096985284 

 At row:97, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:97, column:62,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:62,the value of plot_cost is         : 3.557896553838827 

 At row:97, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:97, column:63,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:63,the value of plot_cost is         : 3.4977566583816424 

 At row:97, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:97, column:64,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:64,the value of plot_cost is         : 3.438424823326971 

 At row:97, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:97, column:65,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:65,the value of plot_cost is         : 3.3799010486748164 

 At row:97, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:97, column:66,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:66,the value of plot_cost is         : 3.3221853344251766 

 At row:97, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:97, column:67,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:67,the value of plot_cost is         : 3.265277680578051 

 At row:97, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:97, column:68,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:68,the value of plot_cost is         : 3.2091780871334423 

 At row:97, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:97, column:69,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:69,the value of plot_cost is         : 3.153886554091346 

 At row:97, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:97, column:70,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:70,the value of plot_cost is         : 3.0994030814517672 

 At row:97, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:97, column:71,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:71,the value of plot_cost is         : 3.0457276692147017 

 At row:97, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:97, column:72,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:72,the value of plot_cost is         : 2.9928603173801527 

 At row:97, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:97, column:73,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:73,the value of plot_cost is         : 2.9408010259481188 

 At row:97, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:97, column:74,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:74,the value of plot_cost is         : 2.8895497949185978 

 At row:97, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:97, column:75,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:75,the value of plot_cost is         : 2.839106624291595 

 At row:97, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:97, column:76,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:76,the value of plot_cost is         : 2.7894715140671047 

 At row:97, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:97, column:77,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:77,the value of plot_cost is         : 2.7406444642451304 

 At row:97, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:97, column:78,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:78,the value of plot_cost is         : 2.6926254748256717 

 At row:97, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:97, column:79,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:79,the value of plot_cost is         : 2.6454145458087273 

 At row:97, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:97, column:80,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:80,the value of plot_cost is         : 2.5990116771942993 

 At row:97, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:97, column:81,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:81,the value of plot_cost is         : 2.553416868982385 

 At row:97, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:97, column:82,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:82,the value of plot_cost is         : 2.508630121172986 

 At row:97, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:97, column:83,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:83,the value of plot_cost is         : 2.464651433766102 

 At row:97, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:97, column:84,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:84,the value of plot_cost is         : 2.4214808067617333 

 At row:97, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:97, column:85,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:85,the value of plot_cost is         : 2.3791182401598805 

 At row:97, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:97, column:86,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:86,the value of plot_cost is         : 2.337563733960542 

 At row:97, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:97, column:87,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:87,the value of plot_cost is         : 2.296817288163719 

 At row:97, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:97, column:88,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:88,the value of plot_cost is         : 2.2568789027694103 

 At row:97, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:97, column:89,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:89,the value of plot_cost is         : 2.217748577777617 

 At row:97, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:97, column:90,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:90,the value of plot_cost is         : 2.17942631318834 

 At row:97, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:97, column:91,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:91,the value of plot_cost is         : 2.1419121090015762 

 At row:97, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:97, column:92,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:92,the value of plot_cost is         : 2.1052059652173285 

 At row:97, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:97, column:93,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:93,the value of plot_cost is         : 2.0693078818355954 

 At row:97, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:97, column:94,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:94,the value of plot_cost is         : 2.034217858856378 

 At row:97, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:97, column:95,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:95,the value of plot_cost is         : 1.9999358962796756 

 At row:97, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:97, column:96,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:96,the value of plot_cost is         : 1.966461994105488 

 At row:97, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:97, column:97,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:97,the value of plot_cost is         : 1.9337961523338154 

 At row:97, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:97, column:98,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:98,the value of plot_cost is         : 1.9019383709646585 

 At row:97, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:97, column:99,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:99,the value of plot_cost is         : 1.8708886499980157 

 At row:97, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:97, column:100,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:100,the value of plot_cost is         : 1.8406469894338893 

 At row:97, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:97, column:101,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:101,the value of plot_cost is         : 1.8112133892722766 

 At row:97, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:97, column:102,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:102,the value of plot_cost is         : 1.7825878495131797 

 At row:97, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:97, column:103,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:103,the value of plot_cost is         : 1.754770370156598 

 At row:97, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:97, column:104,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:104,the value of plot_cost is         : 1.7277609512025307 

 At row:97, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:97, column:105,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:105,the value of plot_cost is         : 1.7015595926509794 

 At row:97, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:97, column:106,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:106,the value of plot_cost is         : 1.6761662945019424 

 At row:97, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:97, column:107,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:107,the value of plot_cost is         : 1.651581056755421 

 At row:97, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:97, column:108,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:108,the value of plot_cost is         : 1.627803879411415 

 At row:97, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:97, column:109,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:109,the value of plot_cost is         : 1.604834762469923 

 At row:97, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:97, column:110,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:110,the value of plot_cost is         : 1.5826737059309464 

 At row:97, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:97, column:111,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:111,the value of plot_cost is         : 1.5613207097944855 

 At row:97, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:97, column:112,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:112,the value of plot_cost is         : 1.5407757740605394 

 At row:97, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:97, column:113,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:113,the value of plot_cost is         : 1.5210388987291088 

 At row:97, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:97, column:114,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:114,the value of plot_cost is         : 1.5021100838001926 

 At row:97, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:97, column:115,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:115,the value of plot_cost is         : 1.4839893292737911 

 At row:97, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:97, column:116,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:116,the value of plot_cost is         : 1.4666766351499059 

 At row:97, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:97, column:117,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:117,the value of plot_cost is         : 1.4501720014285353 

 At row:97, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:97, column:118,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:118,the value of plot_cost is         : 1.4344754281096803 

 At row:97, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:97, column:119,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:119,the value of plot_cost is         : 1.4195869151933391 

 At row:97, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:97, column:120,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:120,the value of plot_cost is         : 1.4055064626795135 

 At row:97, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:97, column:121,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:121,the value of plot_cost is         : 1.3922340705682033 

 At row:97, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:97, column:122,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:122,the value of plot_cost is         : 1.3797697388594086 

 At row:97, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:97, column:123,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:123,the value of plot_cost is         : 1.3681134675531286 

 At row:97, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:97, column:124,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:124,the value of plot_cost is         : 1.357265256649363 

 At row:97, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:97, column:125,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:125,the value of plot_cost is         : 1.3472251061481129 

 At row:97, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:97, column:126,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:126,the value of plot_cost is         : 1.337993016049378 

 At row:97, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:97, column:127,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:127,the value of plot_cost is         : 1.329568986353159 

 At row:97, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:97, column:128,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:128,the value of plot_cost is         : 1.3219530170594547 

 At row:97, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:97, column:129,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:129,the value of plot_cost is         : 1.3151451081682646 

 At row:97, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:97, column:130,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:130,the value of plot_cost is         : 1.3091452596795894 

 At row:97, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:97, column:131,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:131,the value of plot_cost is         : 1.30395347159343 

 At row:97, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:97, column:132,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:132,the value of plot_cost is         : 1.299569743909786 

 At row:97, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:97, column:133,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:133,the value of plot_cost is         : 1.2959940766286573 

 At row:97, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:97, column:134,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:134,the value of plot_cost is         : 1.2932264697500424 

 At row:97, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:97, column:135,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:135,the value of plot_cost is         : 1.291266923273943 

 At row:97, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:97, column:136,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:136,the value of plot_cost is         : 1.290115437200359 

 At row:97, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:97, column:137,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:137,the value of plot_cost is         : 1.2897720115292908 

 At row:97, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:97, column:138,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:138,the value of plot_cost is         : 1.2902366462607373 

 At row:97, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:97, column:139,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:139,the value of plot_cost is         : 1.2915093413946979 

 At row:97, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:97, column:140,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:140,the value of plot_cost is         : 1.2935900969311742 

 At row:97, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:97, column:141,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:141,the value of plot_cost is         : 1.2964789128701655 

 At row:97, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:97, column:142,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:142,the value of plot_cost is         : 1.3001757892116725 

 At row:97, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:97, column:143,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:143,the value of plot_cost is         : 1.3046807259556943 

 At row:97, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:97, column:144,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:144,the value of plot_cost is         : 1.309993723102231 

 At row:97, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:97, column:145,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:145,the value of plot_cost is         : 1.316114780651282 

 At row:97, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:97, column:146,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:146,the value of plot_cost is         : 1.323043898602849 

 At row:97, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:97, column:147,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:147,the value of plot_cost is         : 1.3307810769569315 

 At row:97, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:97, column:148,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:148,the value of plot_cost is         : 1.339326315713529 

 At row:97, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:97, column:149,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:149,the value of plot_cost is         : 1.3486796148726408 

 At row:97, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:97, column:150,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:150,the value of plot_cost is         : 1.3588409744342675 

 At row:97, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:97, column:151,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:151,the value of plot_cost is         : 1.3698103943984106 

 At row:97, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:97, column:152,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:152,the value of plot_cost is         : 1.3815878747650676 

 At row:97, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:97, column:153,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:153,the value of plot_cost is         : 1.3941734155342407 

 At row:97, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:97, column:154,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:154,the value of plot_cost is         : 1.4075670167059278 

 At row:97, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:97, column:155,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:155,the value of plot_cost is         : 1.42176867828013 

 At row:97, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:97, column:156,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:156,the value of plot_cost is         : 1.4367784002568487 

 At row:97, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:97, column:157,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:157,the value of plot_cost is         : 1.452596182636081 

 At row:97, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:97, column:158,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:158,the value of plot_cost is         : 1.4692220254178292 

 At row:97, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:97, column:159,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:159,the value of plot_cost is         : 1.486655928602092 

 At row:97, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:97, column:160,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:160,the value of plot_cost is         : 1.50489789218887 

 At row:97, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:97, column:161,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:161,the value of plot_cost is         : 1.5239479161781635 

 At row:97, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:97, column:162,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:162,the value of plot_cost is         : 1.5438060005699714 

 At row:97, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:97, column:163,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:163,the value of plot_cost is         : 1.5644721453642954 

 At row:97, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:97, column:164,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:164,the value of plot_cost is         : 1.5859463505611333 

 At row:97, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:97, column:165,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:165,the value of plot_cost is         : 1.6082286161604868 

 At row:97, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:97, column:166,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:166,the value of plot_cost is         : 1.6313189421623562 

 At row:97, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:97, column:167,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:167,the value of plot_cost is         : 1.655217328566739 

 At row:97, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:97, column:168,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:168,the value of plot_cost is         : 1.6799237753736387 

 At row:97, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:97, column:169,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:169,the value of plot_cost is         : 1.7054382825830523 

 At row:97, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:97, column:170,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:170,the value of plot_cost is         : 1.7317608501949813 

 At row:97, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:97, column:171,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:171,the value of plot_cost is         : 1.7588914782094254 

 At row:97, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:97, column:172,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:172,the value of plot_cost is         : 1.7868301666263844 

 At row:97, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:97, column:173,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:173,the value of plot_cost is         : 1.815576915445859 

 At row:97, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:97, column:174,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:174,the value of plot_cost is         : 1.845131724667848 

 At row:97, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:97, column:175,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:175,the value of plot_cost is         : 1.8754945942923522 

 At row:97, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:97, column:176,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:176,the value of plot_cost is         : 1.9066655243193722 

 At row:97, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:97, column:177,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:177,the value of plot_cost is         : 1.9386445147489062 

 At row:97, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:97, column:178,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:178,the value of plot_cost is         : 1.9714315655809564 

 At row:97, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:97, column:179,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:179,the value of plot_cost is         : 2.005026676815521 

 At row:97, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:97, column:180,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:180,the value of plot_cost is         : 2.0394298484526003 

 At row:97, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:97, column:181,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:181,the value of plot_cost is         : 2.074641080492196 

 At row:97, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:97, column:182,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:182,the value of plot_cost is         : 2.110660372934306 

 At row:97, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:97, column:183,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:183,the value of plot_cost is         : 2.1474877257789315 

 At row:97, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:97, column:184,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:184,the value of plot_cost is         : 2.1851231390260715 

 At row:97, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:97, column:185,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:185,the value of plot_cost is         : 2.223566612675726 

 At row:97, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:97, column:186,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:186,the value of plot_cost is         : 2.262818146727897 

 At row:97, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:97, column:187,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:187,the value of plot_cost is         : 2.302877741182582 

 At row:97, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:97, column:188,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:188,the value of plot_cost is         : 2.343745396039784 

 At row:97, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:97, column:189,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:189,the value of plot_cost is         : 2.385421111299499 

 At row:97, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:97, column:190,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:190,the value of plot_cost is         : 2.4279048869617292 

 At row:97, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:97, column:191,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:191,the value of plot_cost is         : 2.4711967230264764 

 At row:97, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:97, column:192,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:192,the value of plot_cost is         : 2.515296619493736 

 At row:97, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:97, column:193,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:193,the value of plot_cost is         : 2.5602045763635126 

 At row:97, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:97, column:194,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:194,the value of plot_cost is         : 2.6059205936358043 

 At row:97, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:97, column:195,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:195,the value of plot_cost is         : 2.65244467131061 

 At row:97, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:97, column:196,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:196,the value of plot_cost is         : 2.6997768093879313 

 At row:97, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:97, column:197,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:197,the value of plot_cost is         : 2.7479170078677684 

 At row:97, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:97, column:198,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:198,the value of plot_cost is         : 2.796865266750119 

 At row:97, column:199,the value of plot_t0 is           : 3.0
 At row:97, column:199,the value of plot_t1 is           : 0.949748743718593
 At row:97, column:199,the value of plot_cost is         : 2.846621586034985 

 At row:98, column:0,the value of plot_t0 is           : -1.0
 At row:98, column:0,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:0,the value of plot_cost is         : 8.453961660419829 

 At row:98, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:98, column:1,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:1,the value of plot_cost is         : 8.346400163055042 

 At row:98, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:98, column:2,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:2,the value of plot_cost is         : 8.239646726092772 

 At row:98, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:98, column:3,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:3,the value of plot_cost is         : 8.133701349533018 

 At row:98, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:98, column:4,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:4,the value of plot_cost is         : 8.028564033375778 

 At row:98, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:98, column:5,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:5,the value of plot_cost is         : 7.924234777621052 

 At row:98, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:98, column:6,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:6,the value of plot_cost is         : 7.820713582268844 

 At row:98, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:98, column:7,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:7,the value of plot_cost is         : 7.718000447319149 

 At row:98, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:98, column:8,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:8,the value of plot_cost is         : 7.616095372771969 

 At row:98, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:98, column:9,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:9,the value of plot_cost is         : 7.514998358627304 

 At row:98, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:98, column:10,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:10,the value of plot_cost is         : 7.414709404885156 

 At row:98, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:98, column:11,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:11,the value of plot_cost is         : 7.31522851154552 

 At row:98, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:98, column:12,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:12,the value of plot_cost is         : 7.216555678608402 

 At row:98, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:98, column:13,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:13,the value of plot_cost is         : 7.118690906073798 

 At row:98, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:98, column:14,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:14,the value of plot_cost is         : 7.021634193941709 

 At row:98, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:98, column:15,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:15,the value of plot_cost is         : 6.925385542212135 

 At row:98, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:98, column:16,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:16,the value of plot_cost is         : 6.829944950885075 

 At row:98, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:98, column:17,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:17,the value of plot_cost is         : 6.7353124199605325 

 At row:98, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:98, column:18,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:18,the value of plot_cost is         : 6.6414879494385035 

 At row:98, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:98, column:19,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:19,the value of plot_cost is         : 6.5484715393189905 

 At row:98, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:98, column:20,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:20,the value of plot_cost is         : 6.456263189601993 

 At row:98, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:98, column:21,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:21,the value of plot_cost is         : 6.364862900287507 

 At row:98, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:98, column:22,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:22,the value of plot_cost is         : 6.27427067137554 

 At row:98, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:98, column:23,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:23,the value of plot_cost is         : 6.184486502866088 

 At row:98, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:98, column:24,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:24,the value of plot_cost is         : 6.095510394759149 

 At row:98, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:98, column:25,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:25,the value of plot_cost is         : 6.007342347054726 

 At row:98, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:98, column:26,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:26,the value of plot_cost is         : 5.919982359752817 

 At row:98, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:98, column:27,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:27,the value of plot_cost is         : 5.833430432853424 

 At row:98, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:98, column:28,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:28,the value of plot_cost is         : 5.747686566356547 

 At row:98, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:98, column:29,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:29,the value of plot_cost is         : 5.662750760262184 

 At row:98, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:98, column:30,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:30,the value of plot_cost is         : 5.578623014570336 

 At row:98, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:98, column:31,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:31,the value of plot_cost is         : 5.495303329281004 

 At row:98, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:98, column:32,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:32,the value of plot_cost is         : 5.412791704394187 

 At row:98, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:98, column:33,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:33,the value of plot_cost is         : 5.331088139909884 

 At row:98, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:98, column:34,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:34,the value of plot_cost is         : 5.250192635828097 

 At row:98, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:98, column:35,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:35,the value of plot_cost is         : 5.170105192148825 

 At row:98, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:98, column:36,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:36,the value of plot_cost is         : 5.090825808872068 

 At row:98, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:98, column:37,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:37,the value of plot_cost is         : 5.012354485997826 

 At row:98, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:98, column:38,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:38,the value of plot_cost is         : 4.934691223526101 

 At row:98, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:98, column:39,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:39,the value of plot_cost is         : 4.857836021456887 

 At row:98, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:98, column:40,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:40,the value of plot_cost is         : 4.7817888797901915 

 At row:98, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:98, column:41,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:41,the value of plot_cost is         : 4.706549798526008 

 At row:98, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:98, column:42,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:42,the value of plot_cost is         : 4.632118777664342 

 At row:98, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:98, column:43,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:43,the value of plot_cost is         : 4.558495817205191 

 At row:98, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:98, column:44,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:44,the value of plot_cost is         : 4.485680917148554 

 At row:98, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:98, column:45,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:45,the value of plot_cost is         : 4.413674077494434 

 At row:98, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:98, column:46,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:46,the value of plot_cost is         : 4.342475298242826 

 At row:98, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:98, column:47,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:47,the value of plot_cost is         : 4.272084579393735 

 At row:98, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:98, column:48,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:48,the value of plot_cost is         : 4.202501920947161 

 At row:98, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:98, column:49,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:49,the value of plot_cost is         : 4.133727322903099 

 At row:98, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:98, column:50,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:50,the value of plot_cost is         : 4.065760785261554 

 At row:98, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:98, column:51,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:51,the value of plot_cost is         : 3.998602308022522 

 At row:98, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:98, column:52,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:52,the value of plot_cost is         : 3.9322518911860067 

 At row:98, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:98, column:53,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:53,the value of plot_cost is         : 3.866709534752007 

 At row:98, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:98, column:54,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:54,the value of plot_cost is         : 3.801975238720521 

 At row:98, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:98, column:55,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:55,the value of plot_cost is         : 3.7380490030915507 

 At row:98, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:98, column:56,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:56,the value of plot_cost is         : 3.674930827865095 

 At row:98, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:98, column:57,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:57,the value of plot_cost is         : 3.6126207130411547 

 At row:98, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:98, column:58,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:58,the value of plot_cost is         : 3.5511186586197305 

 At row:98, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:98, column:59,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:59,the value of plot_cost is         : 3.49042466460082 

 At row:98, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:98, column:60,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:60,the value of plot_cost is         : 3.4305387309844253 

 At row:98, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:98, column:61,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:61,the value of plot_cost is         : 3.3714608577705447 

 At row:98, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:98, column:62,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:62,the value of plot_cost is         : 3.31319104495918 

 At row:98, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:98, column:63,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:63,the value of plot_cost is         : 3.2557292925503316 

 At row:98, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:98, column:64,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:64,the value of plot_cost is         : 3.199075600543996 

 At row:98, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:98, column:65,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:65,the value of plot_cost is         : 3.1432299689401764 

 At row:98, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:98, column:66,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:66,the value of plot_cost is         : 3.0881923977388714 

 At row:98, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:98, column:67,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:67,the value of plot_cost is         : 3.0339628869400825 

 At row:98, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:98, column:68,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:68,the value of plot_cost is         : 2.9805414365438088 

 At row:98, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:98, column:69,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:69,the value of plot_cost is         : 2.9279280465500492 

 At row:98, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:98, column:70,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:70,the value of plot_cost is         : 2.8761227169588053 

 At row:98, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:98, column:71,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:71,the value of plot_cost is         : 2.8251254477700765 

 At row:98, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:98, column:72,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:72,the value of plot_cost is         : 2.7749362389838623 

 At row:98, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:98, column:73,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:73,the value of plot_cost is         : 2.725555090600164 

 At row:98, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:98, column:74,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:74,the value of plot_cost is         : 2.6769820026189795 

 At row:98, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:98, column:75,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:75,the value of plot_cost is         : 2.629216975040311 

 At row:98, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:98, column:76,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:76,the value of plot_cost is         : 2.5822600078641575 

 At row:98, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:98, column:77,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:77,the value of plot_cost is         : 2.536111101090519 

 At row:98, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:98, column:78,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:78,the value of plot_cost is         : 2.4907702547193966 

 At row:98, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:98, column:79,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:79,the value of plot_cost is         : 2.446237468750788 

 At row:98, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:98, column:80,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:80,the value of plot_cost is         : 2.402512743184695 

 At row:98, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:98, column:81,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:81,the value of plot_cost is         : 2.359596078021116 

 At row:98, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:98, column:82,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:82,the value of plot_cost is         : 2.317487473260053 

 At row:98, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:98, column:83,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:83,the value of plot_cost is         : 2.276186928901506 

 At row:98, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:98, column:84,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:84,the value of plot_cost is         : 2.2356944449454725 

 At row:98, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:98, column:85,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:85,the value of plot_cost is         : 2.196010021391955 

 At row:98, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:98, column:86,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:86,the value of plot_cost is         : 2.157133658240952 

 At row:98, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:98, column:87,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:87,the value of plot_cost is         : 2.1190653554924648 

 At row:98, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:98, column:88,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:88,the value of plot_cost is         : 2.0818051131464927 

 At row:98, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:98, column:89,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:89,the value of plot_cost is         : 2.045352931203035 

 At row:98, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:98, column:90,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:90,the value of plot_cost is         : 2.0097088096620923 

 At row:98, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:98, column:91,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:91,the value of plot_cost is         : 1.9748727485236648 

 At row:98, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:98, column:92,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:92,the value of plot_cost is         : 1.9408447477877528 

 At row:98, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:98, column:93,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:93,the value of plot_cost is         : 1.9076248074543565 

 At row:98, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:98, column:94,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:94,the value of plot_cost is         : 1.875212927523474 

 At row:98, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:98, column:95,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:95,the value of plot_cost is         : 1.8436091079951076 

 At row:98, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:98, column:96,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:96,the value of plot_cost is         : 1.812813348869255 

 At row:98, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:98, column:97,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:97,the value of plot_cost is         : 1.7828256501459185 

 At row:98, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:98, column:98,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:98,the value of plot_cost is         : 1.7536460118250978 

 At row:98, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:98, column:99,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:99,the value of plot_cost is         : 1.725274433906791 

 At row:98, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:98, column:100,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:100,the value of plot_cost is         : 1.6977109163909996 

 At row:98, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:98, column:101,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:101,the value of plot_cost is         : 1.6709554592777227 

 At row:98, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:98, column:102,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:102,the value of plot_cost is         : 1.6450080625669614 

 At row:98, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:98, column:103,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:103,the value of plot_cost is         : 1.6198687262587161 

 At row:98, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:98, column:104,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:104,the value of plot_cost is         : 1.5955374503529847 

 At row:98, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:98, column:105,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:105,the value of plot_cost is         : 1.5720142348497688 

 At row:98, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:98, column:106,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:106,the value of plot_cost is         : 1.5492990797490673 

 At row:98, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:98, column:107,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:107,the value of plot_cost is         : 1.5273919850508817 

 At row:98, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:98, column:108,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:108,the value of plot_cost is         : 1.5062929507552119 

 At row:98, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:98, column:109,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:109,the value of plot_cost is         : 1.4860019768620552 

 At row:98, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:98, column:110,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:110,the value of plot_cost is         : 1.466519063371414 

 At row:98, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:98, column:111,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:111,the value of plot_cost is         : 1.447844210283289 

 At row:98, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:98, column:112,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:112,the value of plot_cost is         : 1.4299774175976792 

 At row:98, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:98, column:113,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:113,the value of plot_cost is         : 1.4129186853145843 

 At row:98, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:98, column:114,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:114,the value of plot_cost is         : 1.3966680134340035 

 At row:98, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:98, column:115,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:115,the value of plot_cost is         : 1.3812254019559378 

 At row:98, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:98, column:116,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:116,the value of plot_cost is         : 1.366590850880388 

 At row:98, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:98, column:117,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:117,the value of plot_cost is         : 1.3527643602073534 

 At row:98, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:98, column:118,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:118,the value of plot_cost is         : 1.3397459299368342 

 At row:98, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:98, column:119,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:119,the value of plot_cost is         : 1.327535560068829 

 At row:98, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:98, column:120,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:120,the value of plot_cost is         : 1.3161332506033383 

 At row:98, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:98, column:121,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:121,the value of plot_cost is         : 1.305539001540364 

 At row:98, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:98, column:122,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:122,the value of plot_cost is         : 1.295752812879905 

 At row:98, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:98, column:123,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:123,the value of plot_cost is         : 1.2867746846219612 

 At row:98, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:98, column:124,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:124,the value of plot_cost is         : 1.2786046167665315 

 At row:98, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:98, column:125,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:125,the value of plot_cost is         : 1.2712426093136164 

 At row:98, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:98, column:126,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:126,the value of plot_cost is         : 1.2646886622632179 

 At row:98, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:98, column:127,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:127,the value of plot_cost is         : 1.258942775615334 

 At row:98, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:98, column:128,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:128,the value of plot_cost is         : 1.2540049493699656 

 At row:98, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:98, column:129,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:129,the value of plot_cost is         : 1.2498751835271114 

 At row:98, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:98, column:130,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:130,the value of plot_cost is         : 1.2465534780867715 

 At row:98, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:98, column:131,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:131,the value of plot_cost is         : 1.2440398330489482 

 At row:98, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:98, column:132,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:132,the value of plot_cost is         : 1.2423342484136402 

 At row:98, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:98, column:133,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:133,the value of plot_cost is         : 1.241436724180847 

 At row:98, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:98, column:134,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:134,the value of plot_cost is         : 1.2413472603505682 

 At row:98, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:98, column:135,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:135,the value of plot_cost is         : 1.2420658569228042 

 At row:98, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:98, column:136,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:136,the value of plot_cost is         : 1.2435925138975559 

 At row:98, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:98, column:137,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:137,the value of plot_cost is         : 1.2459272312748233 

 At row:98, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:98, column:138,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:138,the value of plot_cost is         : 1.249070009054606 

 At row:98, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:98, column:139,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:139,the value of plot_cost is         : 1.2530208472369024 

 At row:98, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:98, column:140,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:140,the value of plot_cost is         : 1.2577797458217135 

 At row:98, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:98, column:141,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:141,the value of plot_cost is         : 1.2633467048090408 

 At row:98, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:98, column:142,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:142,the value of plot_cost is         : 1.2697217241988836 

 At row:98, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:98, column:143,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:143,the value of plot_cost is         : 1.2769048039912418 

 At row:98, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:98, column:144,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:144,the value of plot_cost is         : 1.2848959441861136 

 At row:98, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:98, column:145,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:145,the value of plot_cost is         : 1.2936951447835006 

 At row:98, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:98, column:146,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:146,the value of plot_cost is         : 1.3033024057834028 

 At row:98, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:98, column:147,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:147,the value of plot_cost is         : 1.3137177271858216 

 At row:98, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:98, column:148,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:148,the value of plot_cost is         : 1.324941108990755 

 At row:98, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:98, column:149,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:149,the value of plot_cost is         : 1.3369725511982022 

 At row:98, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:98, column:150,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:150,the value of plot_cost is         : 1.3498120538081644 

 At row:98, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:98, column:151,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:151,the value of plot_cost is         : 1.3634596168206434 

 At row:98, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:98, column:152,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:152,the value of plot_cost is         : 1.377915240235636 

 At row:98, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:98, column:153,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:153,the value of plot_cost is         : 1.393178924053145 

 At row:98, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:98, column:154,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:154,the value of plot_cost is         : 1.4092506682731678 

 At row:98, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:98, column:155,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:155,the value of plot_cost is         : 1.4261304728957058 

 At row:98, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:98, column:156,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:156,the value of plot_cost is         : 1.4438183379207596 

 At row:98, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:98, column:157,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:157,the value of plot_cost is         : 1.4623142633483281 

 At row:98, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:98, column:158,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:158,the value of plot_cost is         : 1.4816182491784127 

 At row:98, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:98, column:159,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:159,the value of plot_cost is         : 1.5017302954110106 

 At row:98, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:98, column:160,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:160,the value of plot_cost is         : 1.522650402046124 

 At row:98, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:98, column:161,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:161,the value of plot_cost is         : 1.5443785690837537 

 At row:98, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:98, column:162,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:162,the value of plot_cost is         : 1.5669147965238974 

 At row:98, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:98, column:163,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:163,the value of plot_cost is         : 1.5902590843665572 

 At row:98, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:98, column:164,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:164,the value of plot_cost is         : 1.614411432611731 

 At row:98, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:98, column:165,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:165,the value of plot_cost is         : 1.63937184125942 

 At row:98, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:98, column:166,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:166,the value of plot_cost is         : 1.6651403103096247 

 At row:98, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:98, column:167,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:167,the value of plot_cost is         : 1.6917168397623439 

 At row:98, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:98, column:168,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:168,the value of plot_cost is         : 1.719101429617579 

 At row:98, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:98, column:169,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:169,the value of plot_cost is         : 1.747294079875328 

 At row:98, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:98, column:170,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:170,the value of plot_cost is         : 1.7762947905355926 

 At row:98, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:98, column:171,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:171,the value of plot_cost is         : 1.806103561598373 

 At row:98, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:98, column:172,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:172,the value of plot_cost is         : 1.8367203930636675 

 At row:98, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:98, column:173,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:173,the value of plot_cost is         : 1.8681452849314784 

 At row:98, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:98, column:174,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:174,the value of plot_cost is         : 1.9003782372018034 

 At row:98, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:98, column:175,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:175,the value of plot_cost is         : 1.9334192498746425 

 At row:98, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:98, column:176,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:176,the value of plot_cost is         : 1.9672683229499988 

 At row:98, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:98, column:177,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:177,the value of plot_cost is         : 2.001925456427868 

 At row:98, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:98, column:178,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:178,the value of plot_cost is         : 2.037390650308254 

 At row:98, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:98, column:179,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:179,the value of plot_cost is         : 2.0736639045911542 

 At row:98, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:98, column:180,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:180,the value of plot_cost is         : 2.1107452192765694 

 At row:98, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:98, column:181,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:181,the value of plot_cost is         : 2.1486345943645015 

 At row:98, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:98, column:182,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:182,the value of plot_cost is         : 2.1873320298549466 

 At row:98, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:98, column:183,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:183,the value of plot_cost is         : 2.226837525747908 

 At row:98, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:98, column:184,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:184,the value of plot_cost is         : 2.267151082043384 

 At row:98, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:98, column:185,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:185,the value of plot_cost is         : 2.3082726987413738 

 At row:98, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:98, column:186,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:186,the value of plot_cost is         : 2.3502023758418815 

 At row:98, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:98, column:187,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:187,the value of plot_cost is         : 2.3929401133449013 

 At row:98, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:98, column:188,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:188,the value of plot_cost is         : 2.4364859112504385 

 At row:98, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:98, column:189,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:189,the value of plot_cost is         : 2.480839769558489 

 At row:98, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:98, column:190,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:190,the value of plot_cost is         : 2.5260016882690555 

 At row:98, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:98, column:191,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:191,the value of plot_cost is         : 2.5719716673821384 

 At row:98, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:98, column:192,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:192,the value of plot_cost is         : 2.6187497068977343 

 At row:98, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:98, column:193,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:193,the value of plot_cost is         : 2.6663358068158454 

 At row:98, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:98, column:194,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:194,the value of plot_cost is         : 2.7147299671364737 

 At row:98, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:98, column:195,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:195,the value of plot_cost is         : 2.763932187859614 

 At row:98, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:98, column:196,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:196,the value of plot_cost is         : 2.8139424689852723 

 At row:98, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:98, column:197,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:197,the value of plot_cost is         : 2.864760810513445 

 At row:98, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:98, column:198,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:198,the value of plot_cost is         : 2.916387212444131 

 At row:98, column:199,the value of plot_t0 is           : 3.0
 At row:98, column:199,the value of plot_t1 is           : 0.9698492462311559
 At row:98, column:199,the value of plot_cost is         : 2.9688216747773333 

 At row:99, column:0,the value of plot_t0 is           : -1.0
 At row:99, column:0,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:0,the value of plot_cost is         : 8.055793937382534 

 At row:99, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:99, column:1,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:1,the value of plot_cost is         : 7.950910583066086 

 At row:99, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:99, column:2,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:2,the value of plot_cost is         : 7.84683528915215 

 At row:99, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:99, column:3,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:3,the value of plot_cost is         : 7.743568055640732 

 At row:99, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:99, column:4,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:4,the value of plot_cost is         : 7.641108882531826 

 At row:99, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:99, column:5,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:5,the value of plot_cost is         : 7.539457769825438 

 At row:99, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:99, column:6,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:6,the value of plot_cost is         : 7.438614717521563 

 At row:99, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:99, column:7,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:7,the value of plot_cost is         : 7.338579725620205 

 At row:99, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:99, column:8,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:8,the value of plot_cost is         : 7.239352794121362 

 At row:99, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:99, column:9,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:9,the value of plot_cost is         : 7.140933923025032 

 At row:99, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:99, column:10,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:10,the value of plot_cost is         : 7.043323112331218 

 At row:99, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:99, column:11,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:11,the value of plot_cost is         : 6.94652036203992 

 At row:99, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:99, column:12,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:12,the value of plot_cost is         : 6.850525672151136 

 At row:99, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:99, column:13,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:13,the value of plot_cost is         : 6.755339042664869 

 At row:99, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:99, column:14,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:14,the value of plot_cost is         : 6.660960473581115 

 At row:99, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:99, column:15,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:15,the value of plot_cost is         : 6.567389964899876 

 At row:99, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:99, column:16,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:16,the value of plot_cost is         : 6.474627516621153 

 At row:99, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:99, column:17,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:17,the value of plot_cost is         : 6.382673128744945 

 At row:99, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:99, column:18,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:18,the value of plot_cost is         : 6.291526801271253 

 At row:99, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:99, column:19,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:19,the value of plot_cost is         : 6.2011885342000745 

 At row:99, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:99, column:20,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:20,the value of plot_cost is         : 6.111658327531411 

 At row:99, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:99, column:21,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:21,the value of plot_cost is         : 6.022936181265264 

 At row:99, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:99, column:22,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:22,the value of plot_cost is         : 5.935022095401631 

 At row:99, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:99, column:23,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:23,the value of plot_cost is         : 5.847916069940514 

 At row:99, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:99, column:24,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:24,the value of plot_cost is         : 5.7616181048819115 

 At row:99, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:99, column:25,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:25,the value of plot_cost is         : 5.676128200225825 

 At row:99, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:99, column:26,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:26,the value of plot_cost is         : 5.591446355972252 

 At row:99, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:99, column:27,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:27,the value of plot_cost is         : 5.5075725721211946 

 At row:99, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:99, column:28,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:28,the value of plot_cost is         : 5.424506848672653 

 At row:99, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:99, column:29,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:29,the value of plot_cost is         : 5.342249185626627 

 At row:99, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:99, column:30,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:30,the value of plot_cost is         : 5.260799582983115 

 At row:99, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:99, column:31,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:31,the value of plot_cost is         : 5.180158040742118 

 At row:99, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:99, column:32,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:32,the value of plot_cost is         : 5.100324558903636 

 At row:99, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:99, column:33,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:33,the value of plot_cost is         : 5.021299137467669 

 At row:99, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:99, column:34,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:34,the value of plot_cost is         : 4.943081776434217 

 At row:99, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:99, column:35,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:35,the value of plot_cost is         : 4.865672475803281 

 At row:99, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:99, column:36,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:36,the value of plot_cost is         : 4.789071235574859 

 At row:99, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:99, column:37,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:37,the value of plot_cost is         : 4.713278055748953 

 At row:99, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:99, column:38,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:38,the value of plot_cost is         : 4.638292936325564 

 At row:99, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:99, column:39,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:39,the value of plot_cost is         : 4.564115877304686 

 At row:99, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:99, column:40,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:40,the value of plot_cost is         : 4.490746878686326 

 At row:99, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:99, column:41,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:41,the value of plot_cost is         : 4.418185940470479 

 At row:99, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:99, column:42,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:42,the value of plot_cost is         : 4.346433062657148 

 At row:99, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:99, column:43,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:43,the value of plot_cost is         : 4.275488245246333 

 At row:99, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:99, column:44,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:44,the value of plot_cost is         : 4.205351488238031 

 At row:99, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:99, column:45,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:45,the value of plot_cost is         : 4.1360227916322465 

 At row:99, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:99, column:46,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:46,the value of plot_cost is         : 4.067502155428976 

 At row:99, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:99, column:47,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:47,the value of plot_cost is         : 3.99978957962822 

 At row:99, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:99, column:48,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:48,the value of plot_cost is         : 3.9328850642299806 

 At row:99, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:99, column:49,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:49,the value of plot_cost is         : 3.8667886092342543 

 At row:99, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:99, column:50,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:50,the value of plot_cost is         : 3.8015002146410453 

 At row:99, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:99, column:51,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:51,the value of plot_cost is         : 3.7370198804503496 

 At row:99, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:99, column:52,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:52,the value of plot_cost is         : 3.67334760666217 

 At row:99, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:99, column:53,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:53,the value of plot_cost is         : 3.610483393276506 

 At row:99, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:99, column:54,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:54,the value of plot_cost is         : 3.5484272402933548 

 At row:99, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:99, column:55,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:55,the value of plot_cost is         : 3.487179147712721 

 At row:99, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:99, column:56,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:56,the value of plot_cost is         : 3.4267391155346005 

 At row:99, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:99, column:57,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:57,the value of plot_cost is         : 3.3671071437589966 

 At row:99, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:99, column:58,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:58,the value of plot_cost is         : 3.3082832323859077 

 At row:99, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:99, column:59,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:59,the value of plot_cost is         : 3.250267381415332 

 At row:99, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:99, column:60,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:60,the value of plot_cost is         : 3.1930595908472736 

 At row:99, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:99, column:61,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:61,the value of plot_cost is         : 3.1366598606817293 

 At row:99, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:99, column:62,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:62,the value of plot_cost is         : 3.0810681909187 

 At row:99, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:99, column:63,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:63,the value of plot_cost is         : 3.026284581558187 

 At row:99, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:99, column:64,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:64,the value of plot_cost is         : 2.972309032600187 

 At row:99, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:99, column:65,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:65,the value of plot_cost is         : 2.9191415440447037 

 At row:99, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:99, column:66,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:66,the value of plot_cost is         : 2.8667821158917346 

 At row:99, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:99, column:67,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:67,the value of plot_cost is         : 2.8152307481412806 

 At row:99, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:99, column:68,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:68,the value of plot_cost is         : 2.764487440793343 

 At row:99, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:99, column:69,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:69,the value of plot_cost is         : 2.714552193847919 

 At row:99, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:99, column:70,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:70,the value of plot_cost is         : 2.665425007305011 

 At row:99, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:99, column:71,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:71,the value of plot_cost is         : 2.6171058811646173 

 At row:99, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:99, column:72,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:72,the value of plot_cost is         : 2.56959481542674 

 At row:99, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:99, column:73,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:73,the value of plot_cost is         : 2.5228918100913766 

 At row:99, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:99, column:74,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:74,the value of plot_cost is         : 2.4769968651585277 

 At row:99, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:99, column:75,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:75,the value of plot_cost is         : 2.4319099806281956 

 At row:99, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:99, column:76,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:76,the value of plot_cost is         : 2.3876311565003774 

 At row:99, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:99, column:77,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:77,the value of plot_cost is         : 2.3441603927750747 

 At row:99, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:99, column:78,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:78,the value of plot_cost is         : 2.3014976894522867 

 At row:99, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:99, column:79,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:79,the value of plot_cost is         : 2.259643046532014 

 At row:99, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:99, column:80,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:80,the value of plot_cost is         : 2.2185964640142575 

 At row:99, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:99, column:81,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:81,the value of plot_cost is         : 2.1783579418990144 

 At row:99, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:99, column:82,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:82,the value of plot_cost is         : 2.1389274801862874 

 At row:99, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:99, column:83,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:83,the value of plot_cost is         : 2.1003050788760746 

 At row:99, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:99, column:84,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:84,the value of plot_cost is         : 2.0624907379683775 

 At row:99, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:99, column:85,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:85,the value of plot_cost is         : 2.0254844574631963 

 At row:99, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:99, column:86,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:86,the value of plot_cost is         : 1.989286237360529 

 At row:99, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:99, column:87,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:87,the value of plot_cost is         : 1.953896077660377 

 At row:99, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:99, column:88,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:88,the value of plot_cost is         : 1.91931397836274 

 At row:99, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:99, column:89,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:89,the value of plot_cost is         : 1.8855399394676184 

 At row:99, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:99, column:90,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:90,the value of plot_cost is         : 1.852573960975012 

 At row:99, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:99, column:91,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:91,the value of plot_cost is         : 1.8204160428849205 

 At row:99, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:99, column:92,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:92,the value of plot_cost is         : 1.789066185197344 

 At row:99, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:99, column:93,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:93,the value of plot_cost is         : 1.7585243879122825 

 At row:99, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:99, column:94,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:94,the value of plot_cost is         : 1.7287906510297362 

 At row:99, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:99, column:95,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:95,the value of plot_cost is         : 1.6998649745497054 

 At row:99, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:99, column:96,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:96,the value of plot_cost is         : 1.671747358472189 

 At row:99, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:99, column:97,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:97,the value of plot_cost is         : 1.644437802797188 

 At row:99, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:99, column:98,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:98,the value of plot_cost is         : 1.6179363075247022 

 At row:99, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:99, column:99,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:99,the value of plot_cost is         : 1.5922428726547309 

 At row:99, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:99, column:100,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:100,the value of plot_cost is         : 1.567357498187276 

 At row:99, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:99, column:101,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:101,the value of plot_cost is         : 1.543280184122335 

 At row:99, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:99, column:102,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:102,the value of plot_cost is         : 1.5200109304599094 

 At row:99, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:99, column:103,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:103,the value of plot_cost is         : 1.497549737199999 

 At row:99, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:99, column:104,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:104,the value of plot_cost is         : 1.4758966043426036 

 At row:99, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:99, column:105,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:105,the value of plot_cost is         : 1.4550515318877233 

 At row:99, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:99, column:106,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:106,the value of plot_cost is         : 1.4350145198353579 

 At row:99, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:99, column:107,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:107,the value of plot_cost is         : 1.415785568185508 

 At row:99, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:99, column:108,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:108,the value of plot_cost is         : 1.3973646769381731 

 At row:99, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:99, column:109,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:109,the value of plot_cost is         : 1.3797518460933529 

 At row:99, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:99, column:110,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:110,the value of plot_cost is         : 1.3629470756510476 

 At row:99, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:99, column:111,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:111,the value of plot_cost is         : 1.3469503656112585 

 At row:99, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:99, column:112,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:112,the value of plot_cost is         : 1.3317617159739836 

 At row:99, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:99, column:113,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:113,the value of plot_cost is         : 1.3173811267392246 

 At row:99, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:99, column:114,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:114,the value of plot_cost is         : 1.3038085979069796 

 At row:99, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:99, column:115,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:115,the value of plot_cost is         : 1.29104412947725 

 At row:99, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:99, column:116,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:116,the value of plot_cost is         : 1.2790877214500356 

 At row:99, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:99, column:117,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:117,the value of plot_cost is         : 1.2679393738253368 

 At row:99, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:99, column:118,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:118,the value of plot_cost is         : 1.2575990866031528 

 At row:99, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:99, column:119,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:119,the value of plot_cost is         : 1.2480668597834834 

 At row:99, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:99, column:120,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:120,the value of plot_cost is         : 1.2393426933663292 

 At row:99, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:99, column:121,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:121,the value of plot_cost is         : 1.2314265873516903 

 At row:99, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:99, column:122,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:122,the value of plot_cost is         : 1.224318541739567 

 At row:99, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:99, column:123,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:123,the value of plot_cost is         : 1.2180185565299582 

 At row:99, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:99, column:124,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:124,the value of plot_cost is         : 1.2125266317228647 

 At row:99, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:99, column:125,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:125,the value of plot_cost is         : 1.2078427673182854 

 At row:99, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:99, column:126,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:126,the value of plot_cost is         : 1.203966963316222 

 At row:99, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:99, column:127,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:127,the value of plot_cost is         : 1.2008992197166741 

 At row:99, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:99, column:128,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:128,the value of plot_cost is         : 1.1986395365196414 

 At row:99, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:99, column:129,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:129,the value of plot_cost is         : 1.1971879137251227 

 At row:99, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:99, column:130,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:130,the value of plot_cost is         : 1.196544351333119 

 At row:99, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:99, column:131,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:131,the value of plot_cost is         : 1.196708849343631 

 At row:99, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:99, column:132,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:132,the value of plot_cost is         : 1.1976814077566584 

 At row:99, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:99, column:133,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:133,the value of plot_cost is         : 1.1994620265722016 

 At row:99, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:99, column:134,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:134,the value of plot_cost is         : 1.2020507057902583 

 At row:99, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:99, column:135,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:135,the value of plot_cost is         : 1.20544744541083 

 At row:99, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:99, column:136,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:136,the value of plot_cost is         : 1.2096522454339174 

 At row:99, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:99, column:137,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:137,the value of plot_cost is         : 1.2146651058595204 

 At row:99, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:99, column:138,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:138,the value of plot_cost is         : 1.220486026687639 

 At row:99, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:99, column:139,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:139,the value of plot_cost is         : 1.2271150079182707 

 At row:99, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:99, column:140,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:140,the value of plot_cost is         : 1.234552049551418 

 At row:99, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:99, column:141,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:141,the value of plot_cost is         : 1.2427971515870808 

 At row:99, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:99, column:142,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:142,the value of plot_cost is         : 1.2518503140252593 

 At row:99, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:99, column:143,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:143,the value of plot_cost is         : 1.261711536865953 

 At row:99, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:99, column:144,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:144,the value of plot_cost is         : 1.2723808201091609 

 At row:99, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:99, column:145,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:145,the value of plot_cost is         : 1.2838581637548832 

 At row:99, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:99, column:146,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:146,the value of plot_cost is         : 1.2961435678031215 

 At row:99, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:99, column:147,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:147,the value of plot_cost is         : 1.3092370322538756 

 At row:99, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:99, column:148,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:148,the value of plot_cost is         : 1.3231385571071448 

 At row:99, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:99, column:149,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:149,the value of plot_cost is         : 1.3378481423629276 

 At row:99, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:99, column:150,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:150,the value of plot_cost is         : 1.3533657880212258 

 At row:99, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:99, column:151,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:151,the value of plot_cost is         : 1.3696914940820406 

 At row:99, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:99, column:152,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:152,the value of plot_cost is         : 1.3868252605453688 

 At row:99, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:99, column:153,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:153,the value of plot_cost is         : 1.4047670874112137 

 At row:99, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:99, column:154,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:154,the value of plot_cost is         : 1.423516974679572 

 At row:99, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:99, column:155,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:155,the value of plot_cost is         : 1.4430749223504453 

 At row:99, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:99, column:156,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:156,the value of plot_cost is         : 1.4634409304238352 

 At row:99, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:99, column:157,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:157,the value of plot_cost is         : 1.484614998899739 

 At row:99, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:99, column:158,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:158,the value of plot_cost is         : 1.5065971277781594 

 At row:99, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:99, column:159,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:159,the value of plot_cost is         : 1.529387317059093 

 At row:99, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:99, column:160,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:160,the value of plot_cost is         : 1.5529855667425425 

 At row:99, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:99, column:161,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:161,the value of plot_cost is         : 1.5773918768285078 

 At row:99, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:99, column:162,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:162,the value of plot_cost is         : 1.602606247316987 

 At row:99, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:99, column:163,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:163,the value of plot_cost is         : 1.6286286782079826 

 At row:99, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:99, column:164,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:164,the value of plot_cost is         : 1.655459169501492 

 At row:99, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:99, column:165,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:165,the value of plot_cost is         : 1.6830977211975162 

 At row:99, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:99, column:166,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:166,the value of plot_cost is         : 1.7115443332960574 

 At row:99, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:99, column:167,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:167,the value of plot_cost is         : 1.7407990057971119 

 At row:99, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:99, column:168,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:168,the value of plot_cost is         : 1.770861738700683 

 At row:99, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:99, column:169,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:169,the value of plot_cost is         : 1.8017325320067679 

 At row:99, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:99, column:170,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:170,the value of plot_cost is         : 1.8334113857153675 

 At row:99, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:99, column:171,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:171,the value of plot_cost is         : 1.865898299826484 

 At row:99, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:99, column:172,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:172,the value of plot_cost is         : 1.899193274340114 

 At row:99, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:99, column:173,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:173,the value of plot_cost is         : 1.9332963092562607 

 At row:99, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:99, column:174,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:174,the value of plot_cost is         : 1.9682074045749203 

 At row:99, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:99, column:175,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:175,the value of plot_cost is         : 2.003926560296096 

 At row:99, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:99, column:176,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:176,the value of plot_cost is         : 2.040453776419788 

 At row:99, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:99, column:177,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:177,the value of plot_cost is         : 2.077789052945993 

 At row:99, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:99, column:178,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:178,the value of plot_cost is         : 2.115932389874715 

 At row:99, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:99, column:179,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:179,the value of plot_cost is         : 2.1548837872059514 

 At row:99, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:99, column:180,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:180,the value of plot_cost is         : 2.1946432449397015 

 At row:99, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:99, column:181,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:181,the value of plot_cost is         : 2.2352107630759694 

 At row:99, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:99, column:182,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:182,the value of plot_cost is         : 2.27658634161475 

 At row:99, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:99, column:183,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:183,the value of plot_cost is         : 2.318769980556047 

 At row:99, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:99, column:184,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:184,the value of plot_cost is         : 2.361761679899858 

 At row:99, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:99, column:185,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:185,the value of plot_cost is         : 2.405561439646185 

 At row:99, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:99, column:186,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:186,the value of plot_cost is         : 2.450169259795027 

 At row:99, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:99, column:187,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:187,the value of plot_cost is         : 2.495585140346383 

 At row:99, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:99, column:188,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:188,the value of plot_cost is         : 2.541809081300256 

 At row:99, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:99, column:189,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:189,the value of plot_cost is         : 2.5888410826566433 

 At row:99, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:99, column:190,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:190,the value of plot_cost is         : 2.6366811444155447 

 At row:99, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:99, column:191,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:191,the value of plot_cost is         : 2.685329266576963 

 At row:99, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:99, column:192,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:192,the value of plot_cost is         : 2.7347854491408947 

 At row:99, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:99, column:193,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:193,the value of plot_cost is         : 2.7850496921073433 

 At row:99, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:99, column:194,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:194,the value of plot_cost is         : 2.8361219954763044 

 At row:99, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:99, column:195,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:195,the value of plot_cost is         : 2.888002359247782 

 At row:99, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:99, column:196,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:196,the value of plot_cost is         : 2.9406907834217755 

 At row:99, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:99, column:197,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:197,the value of plot_cost is         : 2.994187267998284 

 At row:99, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:99, column:198,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:198,the value of plot_cost is         : 3.048491812977307 

 At row:99, column:199,the value of plot_t0 is           : 3.0
 At row:99, column:199,the value of plot_t1 is           : 0.9899497487437185
 At row:99, column:199,the value of plot_cost is         : 3.103604418358844 

 At row:100, column:0,the value of plot_t0 is           : -1.0
 At row:100, column:0,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:0,the value of plot_cost is         : 7.670208869184403 

 At row:100, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:100, column:1,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:1,the value of plot_cost is         : 7.56800365791629 

 At row:100, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:100, column:2,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:2,the value of plot_cost is         : 7.46660650705069 

 At row:100, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:100, column:3,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:3,the value of plot_cost is         : 7.3660174165876064 

 At row:100, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:100, column:4,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:4,the value of plot_cost is         : 7.266236386527038 

 At row:100, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:100, column:5,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:5,the value of plot_cost is         : 7.167263416868985 

 At row:100, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:100, column:6,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:6,the value of plot_cost is         : 7.0690985076134485 

 At row:100, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:100, column:7,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:7,the value of plot_cost is         : 6.971741658760424 

 At row:100, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:100, column:8,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:8,the value of plot_cost is         : 6.875192870309917 

 At row:100, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:100, column:9,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:9,the value of plot_cost is         : 6.779452142261922 

 At row:100, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:100, column:10,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:10,the value of plot_cost is         : 6.684519474616445 

 At row:100, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:100, column:11,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:11,the value of plot_cost is         : 6.590394867373481 

 At row:100, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:100, column:12,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:12,the value of plot_cost is         : 6.497078320533035 

 At row:100, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:100, column:13,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:13,the value of plot_cost is         : 6.404569834095101 

 At row:100, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:100, column:14,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:14,the value of plot_cost is         : 6.312869408059683 

 At row:100, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:100, column:15,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:15,the value of plot_cost is         : 6.221977042426782 

 At row:100, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:100, column:16,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:16,the value of plot_cost is         : 6.131892737196393 

 At row:100, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:100, column:17,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:17,the value of plot_cost is         : 6.042616492368521 

 At row:100, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:100, column:18,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:18,the value of plot_cost is         : 5.954148307943164 

 At row:100, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:100, column:19,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:19,the value of plot_cost is         : 5.866488183920321 

 At row:100, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:100, column:20,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:20,the value of plot_cost is         : 5.779636120299994 

 At row:100, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:100, column:21,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:21,the value of plot_cost is         : 5.693592117082182 

 At row:100, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:100, column:22,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:22,the value of plot_cost is         : 5.608356174266885 

 At row:100, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:100, column:23,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:23,the value of plot_cost is         : 5.523928291854105 

 At row:100, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:100, column:24,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:24,the value of plot_cost is         : 5.440308469843837 

 At row:100, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:100, column:25,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:25,the value of plot_cost is         : 5.357496708236086 

 At row:100, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:100, column:26,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:26,the value of plot_cost is         : 5.275493007030849 

 At row:100, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:100, column:27,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:27,the value of plot_cost is         : 5.194297366228128 

 At row:100, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:100, column:28,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:28,the value of plot_cost is         : 5.113909785827922 

 At row:100, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:100, column:29,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:29,the value of plot_cost is         : 5.0343302658302305 

 At row:100, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:100, column:30,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:30,the value of plot_cost is         : 4.955558806235055 

 At row:100, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:100, column:31,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:31,the value of plot_cost is         : 4.877595407042393 

 At row:100, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:100, column:32,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:32,the value of plot_cost is         : 4.800440068252247 

 At row:100, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:100, column:33,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:33,the value of plot_cost is         : 4.724092789864617 

 At row:100, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:100, column:34,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:34,the value of plot_cost is         : 4.6485535718795 

 At row:100, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:100, column:35,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:35,the value of plot_cost is         : 4.573822414296901 

 At row:100, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:100, column:36,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:36,the value of plot_cost is         : 4.499899317116814 

 At row:100, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:100, column:37,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:37,the value of plot_cost is         : 4.426784280339244 

 At row:100, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:100, column:38,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:38,the value of plot_cost is         : 4.354477303964188 

 At row:100, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:100, column:39,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:39,the value of plot_cost is         : 4.282978387991648 

 At row:100, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:100, column:40,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:40,the value of plot_cost is         : 4.212287532421622 

 At row:100, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:100, column:41,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:41,the value of plot_cost is         : 4.142404737254111 

 At row:100, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:100, column:42,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:42,the value of plot_cost is         : 4.073330002489117 

 At row:100, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:100, column:43,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:43,the value of plot_cost is         : 4.005063328126638 

 At row:100, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:100, column:44,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:44,the value of plot_cost is         : 3.937604714166671 

 At row:100, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:100, column:45,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:45,the value of plot_cost is         : 3.870954160609223 

 At row:100, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:100, column:46,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:46,the value of plot_cost is         : 3.8051116674542866 

 At row:100, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:100, column:47,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:47,the value of plot_cost is         : 3.740077234701868 

 At row:100, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:100, column:48,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:48,the value of plot_cost is         : 3.6758508623519646 

 At row:100, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:100, column:49,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:49,the value of plot_cost is         : 3.6124325504045727 

 At row:100, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:100, column:50,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:50,the value of plot_cost is         : 3.5498222988597 

 At row:100, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:100, column:51,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:51,the value of plot_cost is         : 3.4880201077173396 

 At row:100, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:100, column:52,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:52,the value of plot_cost is         : 3.4270259769774953 

 At row:100, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:100, column:53,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:53,the value of plot_cost is         : 3.366839906640167 

 At row:100, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:100, column:54,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:54,the value of plot_cost is         : 3.307461896705352 

 At row:100, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:100, column:55,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:55,the value of plot_cost is         : 3.2488919471730537 

 At row:100, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:100, column:56,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:56,the value of plot_cost is         : 3.1911300580432687 

 At row:100, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:100, column:57,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:57,the value of plot_cost is         : 3.134176229316 

 At row:100, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:100, column:58,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:58,the value of plot_cost is         : 3.0780304609912474 

 At row:100, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:100, column:59,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:59,the value of plot_cost is         : 3.0226927530690078 

 At row:100, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:100, column:60,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:60,the value of plot_cost is         : 2.968163105549285 

 At row:100, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:100, column:61,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:61,the value of plot_cost is         : 2.914441518432076 

 At row:100, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:100, column:62,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:62,the value of plot_cost is         : 2.8615279917173826 

 At row:100, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:100, column:63,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:63,the value of plot_cost is         : 2.809422525405205 

 At row:100, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:100, column:64,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:64,the value of plot_cost is         : 2.7581251194955407 

 At row:100, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:100, column:65,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:65,the value of plot_cost is         : 2.707635773988393 

 At row:100, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:100, column:66,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:66,the value of plot_cost is         : 2.6579544888837603 

 At row:100, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:100, column:67,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:67,the value of plot_cost is         : 2.609081264181642 

 At row:100, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:100, column:68,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:68,the value of plot_cost is         : 2.56101609988204 

 At row:100, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:100, column:69,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:69,the value of plot_cost is         : 2.513758995984951 

 At row:100, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:100, column:70,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:70,the value of plot_cost is         : 2.467309952490379 

 At row:100, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:100, column:71,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:71,the value of plot_cost is         : 2.4216689693983207 

 At row:100, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:100, column:72,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:72,the value of plot_cost is         : 2.376836046708779 

 At row:100, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:100, column:73,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:73,the value of plot_cost is         : 2.332811184421752 

 At row:100, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:100, column:74,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:74,the value of plot_cost is         : 2.289594382537239 

 At row:100, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:100, column:75,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:75,the value of plot_cost is         : 2.247185641055242 

 At row:100, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:100, column:76,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:76,the value of plot_cost is         : 2.2055849599757598 

 At row:100, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:100, column:77,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:77,the value of plot_cost is         : 2.164792339298793 

 At row:100, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:100, column:78,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:78,the value of plot_cost is         : 2.124807779024341 

 At row:100, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:100, column:79,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:79,the value of plot_cost is         : 2.0856312791524036 

 At row:100, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:100, column:80,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:80,the value of plot_cost is         : 2.0472628396829826 

 At row:100, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:100, column:81,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:81,the value of plot_cost is         : 2.0097024606160754 

 At row:100, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:100, column:82,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:82,the value of plot_cost is         : 1.972950141951684 

 At row:100, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:100, column:83,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:83,the value of plot_cost is         : 1.9370058836898079 

 At row:100, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:100, column:84,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:84,the value of plot_cost is         : 1.9018696858304454 

 At row:100, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:100, column:85,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:85,the value of plot_cost is         : 1.8675415483736 

 At row:100, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:100, column:86,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:86,the value of plot_cost is         : 1.8340214713192684 

 At row:100, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:100, column:87,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:87,the value of plot_cost is         : 1.8013094546674524 

 At row:100, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:100, column:88,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:88,the value of plot_cost is         : 1.7694054984181513 

 At row:100, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:100, column:89,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:89,the value of plot_cost is         : 1.738309602571365 

 At row:100, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:100, column:90,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:90,the value of plot_cost is         : 1.7080217671270943 

 At row:100, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:100, column:91,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:91,the value of plot_cost is         : 1.6785419920853382 

 At row:100, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:100, column:92,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:92,the value of plot_cost is         : 1.6498702774460974 

 At row:100, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:100, column:93,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:93,the value of plot_cost is         : 1.6220066232093722 

 At row:100, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:100, column:94,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:94,the value of plot_cost is         : 1.594951029375161 

 At row:100, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:100, column:95,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:95,the value of plot_cost is         : 1.5687034959434663 

 At row:100, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:100, column:96,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:96,the value of plot_cost is         : 1.5432640229142853 

 At row:100, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:100, column:97,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:97,the value of plot_cost is         : 1.5186326102876202 

 At row:100, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:100, column:98,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:98,the value of plot_cost is         : 1.4948092580634704 

 At row:100, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:100, column:99,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:99,the value of plot_cost is         : 1.471793966241835 

 At row:100, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:100, column:100,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:100,the value of plot_cost is         : 1.4495867348227154 

 At row:100, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:100, column:101,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:101,the value of plot_cost is         : 1.4281875638061097 

 At row:100, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:100, column:102,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:102,the value of plot_cost is         : 1.40759645319202 

 At row:100, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:100, column:103,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:103,the value of plot_cost is         : 1.3878134029804456 

 At row:100, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:100, column:104,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:104,the value of plot_cost is         : 1.3688384131713858 

 At row:100, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:100, column:105,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:105,the value of plot_cost is         : 1.3506714837648415 

 At row:100, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:100, column:106,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:106,the value of plot_cost is         : 1.3333126147608114 

 At row:100, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:100, column:107,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:107,the value of plot_cost is         : 1.3167618061592972 

 At row:100, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:100, column:108,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:108,the value of plot_cost is         : 1.3010190579602985 

 At row:100, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:100, column:109,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:109,the value of plot_cost is         : 1.2860843701638138 

 At row:100, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:100, column:110,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:110,the value of plot_cost is         : 1.271957742769844 

 At row:100, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:100, column:111,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:111,the value of plot_cost is         : 1.2586391757783901 

 At row:100, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:100, column:112,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:112,the value of plot_cost is         : 1.2461286691894515 

 At row:100, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:100, column:113,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:113,the value of plot_cost is         : 1.2344262230030283 

 At row:100, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:100, column:114,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:114,the value of plot_cost is         : 1.2235318372191188 

 At row:100, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:100, column:115,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:115,the value of plot_cost is         : 1.2134455118377245 

 At row:100, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:100, column:116,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:116,the value of plot_cost is         : 1.2041672468588462 

 At row:100, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:100, column:117,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:117,the value of plot_cost is         : 1.1956970422824829 

 At row:100, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:100, column:118,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:118,the value of plot_cost is         : 1.1880348981086348 

 At row:100, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:100, column:119,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:119,the value of plot_cost is         : 1.1811808143373013 

 At row:100, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:100, column:120,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:120,the value of plot_cost is         : 1.1751347909684826 

 At row:100, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:100, column:121,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:121,the value of plot_cost is         : 1.1698968280021793 

 At row:100, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:100, column:122,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:122,the value of plot_cost is         : 1.1654669254383916 

 At row:100, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:100, column:123,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:123,the value of plot_cost is         : 1.161845083277119 

 At row:100, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:100, column:124,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:124,the value of plot_cost is         : 1.159031301518361 

 At row:100, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:100, column:125,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:125,the value of plot_cost is         : 1.1570255801621177 

 At row:100, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:100, column:126,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:126,the value of plot_cost is         : 1.15582791920839 

 At row:100, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:100, column:127,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:127,the value of plot_cost is         : 1.1554383186571773 

 At row:100, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:100, column:128,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:128,the value of plot_cost is         : 1.1558567785084801 

 At row:100, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:100, column:129,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:129,the value of plot_cost is         : 1.1570832987622977 

 At row:100, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:100, column:130,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:130,the value of plot_cost is         : 1.1591178794186296 

 At row:100, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:100, column:131,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:131,the value of plot_cost is         : 1.1619605204774774 

 At row:100, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:100, column:132,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:132,the value of plot_cost is         : 1.1656112219388406 

 At row:100, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:100, column:133,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:133,the value of plot_cost is         : 1.1700699838027189 

 At row:100, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:100, column:134,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:134,the value of plot_cost is         : 1.1753368060691116 

 At row:100, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:100, column:135,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:135,the value of plot_cost is         : 1.1814116887380193 

 At row:100, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:100, column:136,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:136,the value of plot_cost is         : 1.1882946318094423 

 At row:100, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:100, column:137,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:137,the value of plot_cost is         : 1.1959856352833806 

 At row:100, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:100, column:138,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:138,the value of plot_cost is         : 1.2044846991598346 

 At row:100, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:100, column:139,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:139,the value of plot_cost is         : 1.2137918234388028 

 At row:100, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:100, column:140,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:140,the value of plot_cost is         : 1.223907008120286 

 At row:100, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:100, column:141,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:141,the value of plot_cost is         : 1.2348302532042845 

 At row:100, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:100, column:142,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:142,the value of plot_cost is         : 1.246561558690798 

 At row:100, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:100, column:143,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:143,the value of plot_cost is         : 1.2591009245798273 

 At row:100, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:100, column:144,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:144,the value of plot_cost is         : 1.272448350871371 

 At row:100, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:100, column:145,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:145,the value of plot_cost is         : 1.2866038375654298 

 At row:100, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:100, column:146,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:146,the value of plot_cost is         : 1.3015673846620037 

 At row:100, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:100, column:147,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:147,the value of plot_cost is         : 1.3173389921610927 

 At row:100, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:100, column:148,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:148,the value of plot_cost is         : 1.3339186600626975 

 At row:100, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:100, column:149,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:149,the value of plot_cost is         : 1.3513063883668164 

 At row:100, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:100, column:150,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:150,the value of plot_cost is         : 1.3695021770734508 

 At row:100, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:100, column:151,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:151,the value of plot_cost is         : 1.3885060261826003 

 At row:100, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:100, column:152,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:152,the value of plot_cost is         : 1.4083179356942643 

 At row:100, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:100, column:153,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:153,the value of plot_cost is         : 1.4289379056084446 

 At row:100, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:100, column:154,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:154,the value of plot_cost is         : 1.4503659359251393 

 At row:100, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:100, column:155,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:155,the value of plot_cost is         : 1.4726020266443491 

 At row:100, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:100, column:156,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:156,the value of plot_cost is         : 1.495646177766074 

 At row:100, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:100, column:157,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:157,the value of plot_cost is         : 1.5194983892903133 

 At row:100, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:100, column:158,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:158,the value of plot_cost is         : 1.5441586612170695 

 At row:100, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:100, column:159,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:159,the value of plot_cost is         : 1.5696269935463392 

 At row:100, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:100, column:160,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:160,the value of plot_cost is         : 1.5959033862781244 

 At row:100, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:100, column:161,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:161,the value of plot_cost is         : 1.6229878394124249 

 At row:100, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:100, column:162,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:162,the value of plot_cost is         : 1.6508803529492395 

 At row:100, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:100, column:163,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:163,the value of plot_cost is         : 1.679580926888571 

 At row:100, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:100, column:164,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:164,the value of plot_cost is         : 1.7090895612304169 

 At row:100, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:100, column:165,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:165,the value of plot_cost is         : 1.739406255974777 

 At row:100, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:100, column:166,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:166,the value of plot_cost is         : 1.770531011121653 

 At row:100, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:100, column:167,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:167,the value of plot_cost is         : 1.802463826671043 

 At row:100, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:100, column:168,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:168,the value of plot_cost is         : 1.8352047026229494 

 At row:100, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:100, column:169,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:169,the value of plot_cost is         : 1.8687536389773705 

 At row:100, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:100, column:170,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:170,the value of plot_cost is         : 1.9031106357343066 

 At row:100, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:100, column:171,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:171,the value of plot_cost is         : 1.938275692893758 

 At row:100, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:100, column:172,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:172,the value of plot_cost is         : 1.9742488104557236 

 At row:100, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:100, column:173,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:173,the value of plot_cost is         : 2.0110299884202054 

 At row:100, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:100, column:174,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:174,the value of plot_cost is         : 2.0486192267872028 

 At row:100, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:100, column:175,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:175,the value of plot_cost is         : 2.087016525556714 

 At row:100, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:100, column:176,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:176,the value of plot_cost is         : 2.1262218847287406 

 At row:100, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:100, column:177,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:177,the value of plot_cost is         : 2.1662353043032816 

 At row:100, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:100, column:178,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:178,the value of plot_cost is         : 2.207056784280339 

 At row:100, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:100, column:179,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:179,the value of plot_cost is         : 2.2486863246599107 

 At row:100, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:100, column:180,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:180,the value of plot_cost is         : 2.2911239254419975 

 At row:100, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:100, column:181,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:181,the value of plot_cost is         : 2.3343695866266 

 At row:100, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:100, column:182,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:182,the value of plot_cost is         : 2.3784233082137165 

 At row:100, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:100, column:183,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:183,the value of plot_cost is         : 2.423285090203349 

 At row:100, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:100, column:184,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:184,the value of plot_cost is         : 2.4689549325954974 

 At row:100, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:100, column:185,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:185,the value of plot_cost is         : 2.5154328353901594 

 At row:100, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:100, column:186,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:186,the value of plot_cost is         : 2.5627187985873374 

 At row:100, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:100, column:187,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:187,the value of plot_cost is         : 2.610812822187029 

 At row:100, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:100, column:188,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:188,the value of plot_cost is         : 2.659714906189237 

 At row:100, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:100, column:189,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:189,the value of plot_cost is         : 2.709425050593959 

 At row:100, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:100, column:190,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:190,the value of plot_cost is         : 2.759943255401198 

 At row:100, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:100, column:191,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:191,the value of plot_cost is         : 2.81126952061095 

 At row:100, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:100, column:192,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:192,the value of plot_cost is         : 2.8634038462232176 

 At row:100, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:100, column:193,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:193,the value of plot_cost is         : 2.916346232238002 

 At row:100, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:100, column:194,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:194,the value of plot_cost is         : 2.9700966786553 

 At row:100, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:100, column:195,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:195,the value of plot_cost is         : 3.024655185475113 

 At row:100, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:100, column:196,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:196,the value of plot_cost is         : 3.080021752697443 

 At row:100, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:100, column:197,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:197,the value of plot_cost is         : 3.1361963803222865 

 At row:100, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:100, column:198,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:198,the value of plot_cost is         : 3.1931790683496444 

 At row:100, column:199,the value of plot_t0 is           : 3.0
 At row:100, column:199,the value of plot_t1 is           : 1.0100502512562812
 At row:100, column:199,the value of plot_cost is         : 3.2509698167795182 

 At row:101, column:0,the value of plot_t0 is           : -1.0
 At row:101, column:0,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:0,the value of plot_cost is         : 7.297206455825432 

 At row:101, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:101, column:1,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:1,the value of plot_cost is         : 7.197679387605654 

 At row:101, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:101, column:2,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:2,the value of plot_cost is         : 7.09896037978839 

 At row:101, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:101, column:3,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:3,the value of plot_cost is         : 7.001049432373644 

 At row:101, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:101, column:4,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:4,the value of plot_cost is         : 6.903946545361409 

 At row:101, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:101, column:5,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:5,the value of plot_cost is         : 6.807651718751691 

 At row:101, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:101, column:6,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:6,the value of plot_cost is         : 6.712164952544489 

 At row:101, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:101, column:7,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:7,the value of plot_cost is         : 6.6174862467398015 

 At row:101, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:101, column:8,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:8,the value of plot_cost is         : 6.523615601337632 

 At row:101, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:101, column:9,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:9,the value of plot_cost is         : 6.430553016337972 

 At row:101, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:101, column:10,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:10,the value of plot_cost is         : 6.33829849174083 

 At row:101, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:101, column:11,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:11,the value of plot_cost is         : 6.246852027546201 

 At row:101, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:101, column:12,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:12,the value of plot_cost is         : 6.156213623754091 

 At row:101, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:101, column:13,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:13,the value of plot_cost is         : 6.066383280364494 

 At row:101, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:101, column:14,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:14,the value of plot_cost is         : 5.977360997377411 

 At row:101, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:101, column:15,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:15,the value of plot_cost is         : 5.889146774792845 

 At row:101, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:101, column:16,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:16,the value of plot_cost is         : 5.801740612610793 

 At row:101, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:101, column:17,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:17,the value of plot_cost is         : 5.715142510831257 

 At row:101, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:101, column:18,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:18,the value of plot_cost is         : 5.629352469454236 

 At row:101, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:101, column:19,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:19,the value of plot_cost is         : 5.5443704884797285 

 At row:101, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:101, column:20,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:20,the value of plot_cost is         : 5.460196567907738 

 At row:101, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:101, column:21,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:21,the value of plot_cost is         : 5.37683070773826 

 At row:101, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:101, column:22,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:22,the value of plot_cost is         : 5.2942729079713 

 At row:101, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:101, column:23,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:23,the value of plot_cost is         : 5.212523168606855 

 At row:101, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:101, column:24,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:24,the value of plot_cost is         : 5.131581489644923 

 At row:101, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:101, column:25,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:25,the value of plot_cost is         : 5.051447871085508 

 At row:101, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:101, column:26,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:26,the value of plot_cost is         : 4.972122312928605 

 At row:101, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:101, column:27,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:27,the value of plot_cost is         : 4.89360481517422 

 At row:101, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:101, column:28,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:28,the value of plot_cost is         : 4.8158953778223506 

 At row:101, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:101, column:29,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:29,the value of plot_cost is         : 4.738994000872995 

 At row:101, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:101, column:30,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:30,the value of plot_cost is         : 4.6629006843261545 

 At row:101, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:101, column:31,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:31,the value of plot_cost is         : 4.587615428181828 

 At row:101, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:101, column:32,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:32,the value of plot_cost is         : 4.513138232440018 

 At row:101, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:101, column:33,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:33,the value of plot_cost is         : 4.439469097100724 

 At row:101, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:101, column:34,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:34,the value of plot_cost is         : 4.366608022163943 

 At row:101, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:101, column:35,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:35,the value of plot_cost is         : 4.294555007629679 

 At row:101, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:101, column:36,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:36,the value of plot_cost is         : 4.2233100534979275 

 At row:101, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:101, column:37,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:37,the value of plot_cost is         : 4.152873159768693 

 At row:101, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:101, column:38,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:38,the value of plot_cost is         : 4.083244326441974 

 At row:101, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:101, column:39,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:39,the value of plot_cost is         : 4.014423553517768 

 At row:101, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:101, column:40,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:40,the value of plot_cost is         : 3.94641084099608 

 At row:101, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:101, column:41,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:41,the value of plot_cost is         : 3.8792061888769047 

 At row:101, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:101, column:42,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:42,the value of plot_cost is         : 3.8128095971602454 

 At row:101, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:101, column:43,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:43,the value of plot_cost is         : 3.747221065846102 

 At row:101, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:101, column:44,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:44,the value of plot_cost is         : 3.6824405949344716 

 At row:101, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:101, column:45,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:45,the value of plot_cost is         : 3.618468184425358 

 At row:101, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:101, column:46,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:46,the value of plot_cost is         : 3.5553038343187584 

 At row:101, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:101, column:47,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:47,the value of plot_cost is         : 3.4929475446146747 

 At row:101, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:101, column:48,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:48,the value of plot_cost is         : 3.4313993153131066 

 At row:101, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:101, column:49,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:49,the value of plot_cost is         : 3.3706591464140514 

 At row:101, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:101, column:50,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:50,the value of plot_cost is         : 3.310727037917514 

 At row:101, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:101, column:51,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:51,the value of plot_cost is         : 3.25160298982349 

 At row:101, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:101, column:52,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:52,the value of plot_cost is         : 3.1932870021319815 

 At row:101, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:101, column:53,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:53,the value of plot_cost is         : 3.135779074842989 

 At row:101, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:101, column:54,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:54,the value of plot_cost is         : 3.0790792079565095 

 At row:101, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:101, column:55,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:55,the value of plot_cost is         : 3.023187401472547 

 At row:101, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:101, column:56,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:56,the value of plot_cost is         : 2.968103655391098 

 At row:101, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:101, column:57,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:57,the value of plot_cost is         : 2.913827969712165 

 At row:101, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:101, column:58,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:58,the value of plot_cost is         : 2.860360344435748 

 At row:101, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:101, column:59,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:59,the value of plot_cost is         : 2.8077007795618445 

 At row:101, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:101, column:60,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:60,the value of plot_cost is         : 2.755849275090457 

 At row:101, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:101, column:61,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:61,the value of plot_cost is         : 2.704805831021584 

 At row:101, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:101, column:62,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:62,the value of plot_cost is         : 2.6545704473552263 

 At row:101, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:101, column:63,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:63,the value of plot_cost is         : 2.6051431240913847 

 At row:101, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:101, column:64,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:64,the value of plot_cost is         : 2.5565238612300556 

 At row:101, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:101, column:65,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:65,the value of plot_cost is         : 2.5087126587712443 

 At row:101, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:101, column:66,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:66,the value of plot_cost is         : 2.4617095167149468 

 At row:101, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:101, column:67,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:67,the value of plot_cost is         : 2.4155144350611644 

 At row:101, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:101, column:68,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:68,the value of plot_cost is         : 2.3701274138098976 

 At row:101, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:101, column:69,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:69,the value of plot_cost is         : 2.3255484529611445 

 At row:101, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:101, column:70,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:70,the value of plot_cost is         : 2.2817775525149084 

 At row:101, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:101, column:71,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:71,the value of plot_cost is         : 2.238814712471186 

 At row:101, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:101, column:72,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:72,the value of plot_cost is         : 2.1966599328299794 

 At row:101, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:101, column:73,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:73,the value of plot_cost is         : 2.1553132135912887 

 At row:101, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:101, column:74,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:74,the value of plot_cost is         : 2.1147745547551113 

 At row:101, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:101, column:75,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:75,the value of plot_cost is         : 2.07504395632145 

 At row:101, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:101, column:76,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:76,the value of plot_cost is         : 2.0361214182903034 

 At row:101, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:101, column:77,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:77,the value of plot_cost is         : 1.998006940661672 

 At row:101, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:101, column:78,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:78,the value of plot_cost is         : 1.9607005234355561 

 At row:101, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:101, column:79,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:79,the value of plot_cost is         : 1.9242021666119546 

 At row:101, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:101, column:80,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:80,the value of plot_cost is         : 1.8885118701908687 

 At row:101, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:101, column:81,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:81,the value of plot_cost is         : 1.8536296341722978 

 At row:101, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:101, column:82,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:82,the value of plot_cost is         : 1.819555458556242 

 At row:101, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:101, column:83,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:83,the value of plot_cost is         : 1.7862893433427012 

 At row:101, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:101, column:84,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:84,the value of plot_cost is         : 1.7538312885316754 

 At row:101, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:101, column:85,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:85,the value of plot_cost is         : 1.7221812941231651 

 At row:101, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:101, column:86,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:86,the value of plot_cost is         : 1.6913393601171691 

 At row:101, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:101, column:87,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:87,the value of plot_cost is         : 1.661305486513689 

 At row:101, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:101, column:88,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:88,the value of plot_cost is         : 1.6320796733127239 

 At row:101, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:101, column:89,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:89,the value of plot_cost is         : 1.6036619205142728 

 At row:101, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:101, column:90,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:90,the value of plot_cost is         : 1.5760522281183382 

 At row:101, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:101, column:91,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:91,the value of plot_cost is         : 1.549250596124918 

 At row:101, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:101, column:92,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:92,the value of plot_cost is         : 1.5232570245340131 

 At row:101, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:101, column:93,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:93,the value of plot_cost is         : 1.4980715133456235 

 At row:101, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:101, column:94,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:94,the value of plot_cost is         : 1.4736940625597483 

 At row:101, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:101, column:95,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:95,the value of plot_cost is         : 1.4501246721763887 

 At row:101, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:101, column:96,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:96,the value of plot_cost is         : 1.4273633421955436 

 At row:101, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:101, column:97,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:97,the value of plot_cost is         : 1.4054100726172143 

 At row:101, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:101, column:98,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:98,the value of plot_cost is         : 1.3842648634414005 

 At row:101, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:101, column:99,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:99,the value of plot_cost is         : 1.3639277146681004 

 At row:101, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:101, column:100,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:100,the value of plot_cost is         : 1.3443986262973167 

 At row:101, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:101, column:101,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:101,the value of plot_cost is         : 1.3256775983290467 

 At row:101, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:101, column:102,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:102,the value of plot_cost is         : 1.307764630763293 

 At row:101, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:101, column:103,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:103,the value of plot_cost is         : 1.2906597236000543 

 At row:101, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:101, column:104,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:104,the value of plot_cost is         : 1.2743628768393298 

 At row:101, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:101, column:105,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:105,the value of plot_cost is         : 1.258874090481121 

 At row:101, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:101, column:106,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:106,the value of plot_cost is         : 1.2441933645254268 

 At row:101, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:101, column:107,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:107,the value of plot_cost is         : 1.2303206989722486 

 At row:101, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:101, column:108,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:108,the value of plot_cost is         : 1.2172560938215853 

 At row:101, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:101, column:109,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:109,the value of plot_cost is         : 1.2049995490734366 

 At row:101, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:101, column:110,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:110,the value of plot_cost is         : 1.1935510647278027 

 At row:101, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:101, column:111,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:111,the value of plot_cost is         : 1.1829106407846843 

 At row:101, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:101, column:112,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:112,the value of plot_cost is         : 1.1730782772440815 

 At row:101, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:101, column:113,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:113,the value of plot_cost is         : 1.1640539741059939 

 At row:101, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:101, column:114,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:114,the value of plot_cost is         : 1.1558377313704205 

 At row:101, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:101, column:115,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:115,the value of plot_cost is         : 1.148429549037362 

 At row:101, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:101, column:116,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:116,the value of plot_cost is         : 1.1418294271068192 

 At row:101, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:101, column:117,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:117,the value of plot_cost is         : 1.1360373655787919 

 At row:101, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:101, column:118,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:118,the value of plot_cost is         : 1.1310533644532796 

 At row:101, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:101, column:119,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:119,the value of plot_cost is         : 1.1268774237302812 

 At row:101, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:101, column:120,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:120,the value of plot_cost is         : 1.1235095434097986 

 At row:101, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:101, column:121,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:121,the value of plot_cost is         : 1.1209497234918309 

 At row:101, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:101, column:122,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:122,the value of plot_cost is         : 1.119197963976379 

 At row:101, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:101, column:123,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:123,the value of plot_cost is         : 1.1182542648634421 

 At row:101, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:101, column:124,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:124,the value of plot_cost is         : 1.1181186261530196 

 At row:101, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:101, column:125,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:125,the value of plot_cost is         : 1.118791047845112 

 At row:101, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:101, column:126,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:126,the value of plot_cost is         : 1.1202715299397201 

 At row:101, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:101, column:127,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:127,the value of plot_cost is         : 1.1225600724368436 

 At row:101, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:101, column:128,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:128,the value of plot_cost is         : 1.125656675336482 

 At row:101, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:101, column:129,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:129,the value of plot_cost is         : 1.129561338638635 

 At row:101, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:101, column:130,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:130,the value of plot_cost is         : 1.134274062343303 

 At row:101, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:101, column:131,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:131,the value of plot_cost is         : 1.1397948464504863 

 At row:101, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:101, column:132,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:132,the value of plot_cost is         : 1.146123690960185 

 At row:101, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:101, column:133,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:133,the value of plot_cost is         : 1.1532605958723992 

 At row:101, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:101, column:134,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:134,the value of plot_cost is         : 1.1612055611871275 

 At row:101, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:101, column:135,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:135,the value of plot_cost is         : 1.1699585869043714 

 At row:101, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:101, column:136,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:136,the value of plot_cost is         : 1.17951967302413 

 At row:101, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:101, column:137,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:137,the value of plot_cost is         : 1.1898888195464041 

 At row:101, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:101, column:138,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:138,the value of plot_cost is         : 1.2010660264711934 

 At row:101, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:101, column:139,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:139,the value of plot_cost is         : 1.2130512937984974 

 At row:101, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:101, column:140,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:140,the value of plot_cost is         : 1.2258446215283163 

 At row:101, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:101, column:141,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:141,the value of plot_cost is         : 1.2394460096606503 

 At row:101, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:101, column:142,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:142,the value of plot_cost is         : 1.2538554581955001 

 At row:101, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:101, column:143,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:143,the value of plot_cost is         : 1.269072967132865 

 At row:101, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:101, column:144,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:144,the value of plot_cost is         : 1.2850985364727443 

 At row:101, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:101, column:145,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:145,the value of plot_cost is         : 1.3019321662151389 

 At row:101, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:101, column:146,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:146,the value of plot_cost is         : 1.3195738563600483 

 At row:101, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:101, column:147,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:147,the value of plot_cost is         : 1.3380236069074736 

 At row:101, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:101, column:148,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:148,the value of plot_cost is         : 1.357281417857414 

 At row:101, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:101, column:149,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:149,the value of plot_cost is         : 1.3773472892098688 

 At row:101, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:101, column:150,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:150,the value of plot_cost is         : 1.3982212209648386 

 At row:101, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:101, column:151,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:151,the value of plot_cost is         : 1.4199032131223241 

 At row:101, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:101, column:152,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:152,the value of plot_cost is         : 1.442393265682324 

 At row:101, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:101, column:153,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:153,the value of plot_cost is         : 1.4656913786448398 

 At row:101, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:101, column:154,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:154,the value of plot_cost is         : 1.4897975520098696 

 At row:101, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:101, column:155,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:155,the value of plot_cost is         : 1.5147117857774155 

 At row:101, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:101, column:156,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:156,the value of plot_cost is         : 1.5404340799474765 

 At row:101, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:101, column:157,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:157,the value of plot_cost is         : 1.5669644345200517 

 At row:101, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:101, column:158,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:158,the value of plot_cost is         : 1.594302849495143 

 At row:101, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:101, column:159,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:159,the value of plot_cost is         : 1.622449324872749 

 At row:101, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:101, column:160,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:160,the value of plot_cost is         : 1.6514038606528694 

 At row:101, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:101, column:161,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:161,the value of plot_cost is         : 1.6811664568355058 

 At row:101, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:101, column:162,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:162,the value of plot_cost is         : 1.7117371134206567 

 At row:101, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:101, column:163,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:163,the value of plot_cost is         : 1.7431158304083232 

 At row:101, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:101, column:164,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:164,the value of plot_cost is         : 1.7753026077985044 

 At row:101, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:101, column:165,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:165,the value of plot_cost is         : 1.8082974455912004 

 At row:101, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:101, column:166,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:166,the value of plot_cost is         : 1.8421003437864125 

 At row:101, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:101, column:167,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:167,the value of plot_cost is         : 1.8767113023841389 

 At row:101, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:101, column:168,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:168,the value of plot_cost is         : 1.912130321384381 

 At row:101, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:101, column:169,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:169,the value of plot_cost is         : 1.9483574007871374 

 At row:101, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:101, column:170,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:170,the value of plot_cost is         : 1.9853925405924093 

 At row:101, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:101, column:171,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:171,the value of plot_cost is         : 2.0232357408001964 

 At row:101, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:101, column:172,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:172,the value of plot_cost is         : 2.0618870014104975 

 At row:101, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:101, column:173,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:173,the value of plot_cost is         : 2.1013463224233155 

 At row:101, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:101, column:174,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:174,the value of plot_cost is         : 2.141613703838648 

 At row:101, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:101, column:175,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:175,the value of plot_cost is         : 2.182689145656495 

 At row:101, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:101, column:176,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:176,the value of plot_cost is         : 2.2245726478768577 

 At row:101, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:101, column:177,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:177,the value of plot_cost is         : 2.2672642104997345 

 At row:101, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:101, column:178,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:178,the value of plot_cost is         : 2.3107638335251273 

 At row:101, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:101, column:179,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:179,the value of plot_cost is         : 2.355071516953035 

 At row:101, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:101, column:180,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:180,the value of plot_cost is         : 2.400187260783458 

 At row:101, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:101, column:181,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:181,the value of plot_cost is         : 2.446111065016396 

 At row:101, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:101, column:182,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:182,the value of plot_cost is         : 2.492842929651848 

 At row:101, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:101, column:183,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:183,the value of plot_cost is         : 2.5403828546898164 

 At row:101, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:101, column:184,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:184,the value of plot_cost is         : 2.5887308401302995 

 At row:101, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:101, column:185,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:185,the value of plot_cost is         : 2.6378868859732982 

 At row:101, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:101, column:186,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:186,the value of plot_cost is         : 2.687850992218811 

 At row:101, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:101, column:187,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:187,the value of plot_cost is         : 2.7386231588668384 

 At row:101, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:101, column:188,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:188,the value of plot_cost is         : 2.7902033859173834 

 At row:101, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:101, column:189,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:189,the value of plot_cost is         : 2.8425916733704413 

 At row:101, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:101, column:190,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:190,the value of plot_cost is         : 2.8957880212260148 

 At row:101, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:101, column:191,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:191,the value of plot_cost is         : 2.9497924294841043 

 At row:101, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:101, column:192,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:192,the value of plot_cost is         : 3.004604898144707 

 At row:101, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:101, column:193,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:193,the value of plot_cost is         : 3.0602254272078264 

 At row:101, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:101, column:194,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:194,the value of plot_cost is         : 3.11665401667346 

 At row:101, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:101, column:195,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:195,the value of plot_cost is         : 3.1738906665416096 

 At row:101, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:101, column:196,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:196,the value of plot_cost is         : 3.2319353768122743 

 At row:101, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:101, column:197,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:197,the value of plot_cost is         : 3.2907881474854532 

 At row:101, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:101, column:198,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:198,the value of plot_cost is         : 3.3504489785611473 

 At row:101, column:199,the value of plot_t0 is           : 3.0
 At row:101, column:199,the value of plot_t1 is           : 1.0301507537688441
 At row:101, column:199,the value of plot_cost is         : 3.4109178700393574 

 At row:102, column:0,the value of plot_t0 is           : -1.0
 At row:102, column:0,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:0,the value of plot_cost is         : 6.936786697305623 

 At row:102, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:102, column:1,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:1,the value of plot_cost is         : 6.839937772134181 

 At row:102, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:102, column:2,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:2,the value of plot_cost is         : 6.743896907365253 

 At row:102, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:102, column:3,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:3,the value of plot_cost is         : 6.648664102998842 

 At row:102, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:102, column:4,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:4,the value of plot_cost is         : 6.554239359034945 

 At row:102, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:102, column:5,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:5,the value of plot_cost is         : 6.460622675473563 

 At row:102, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:102, column:6,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:6,the value of plot_cost is         : 6.367814052314696 

 At row:102, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:102, column:7,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:7,the value of plot_cost is         : 6.2758134895583435 

 At row:102, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:102, column:8,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:8,the value of plot_cost is         : 6.184620987204508 

 At row:102, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:102, column:9,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:9,the value of plot_cost is         : 6.094236545253185 

 At row:102, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:102, column:10,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:10,the value of plot_cost is         : 6.00466016370438 

 At row:102, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:102, column:11,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:11,the value of plot_cost is         : 5.915891842558087 

 At row:102, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:102, column:12,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:12,the value of plot_cost is         : 5.827931581814312 

 At row:102, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:102, column:13,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:13,the value of plot_cost is         : 5.740779381473051 

 At row:102, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:102, column:14,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:14,the value of plot_cost is         : 5.654435241534304 

 At row:102, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:102, column:15,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:15,the value of plot_cost is         : 5.568899161998072 

 At row:102, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:102, column:16,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:16,the value of plot_cost is         : 5.484171142864357 

 At row:102, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:102, column:17,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:17,the value of plot_cost is         : 5.400251184133157 

 At row:102, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:102, column:18,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:18,the value of plot_cost is         : 5.317139285804472 

 At row:102, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:102, column:19,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:19,the value of plot_cost is         : 5.234835447878299 

 At row:102, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:102, column:20,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:20,the value of plot_cost is         : 5.153339670354644 

 At row:102, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:102, column:21,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:21,the value of plot_cost is         : 5.072651953233504 

 At row:102, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:102, column:22,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:22,the value of plot_cost is         : 4.992772296514878 

 At row:102, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:102, column:23,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:23,the value of plot_cost is         : 4.913700700198769 

 At row:102, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:102, column:24,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:24,the value of plot_cost is         : 4.835437164285172 

 At row:102, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:102, column:25,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:25,the value of plot_cost is         : 4.757981688774092 

 At row:102, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:102, column:26,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:26,the value of plot_cost is         : 4.681334273665528 

 At row:102, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:102, column:27,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:27,the value of plot_cost is         : 4.605494918959477 

 At row:102, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:102, column:28,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:28,the value of plot_cost is         : 4.530463624655943 

 At row:102, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:102, column:29,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:29,the value of plot_cost is         : 4.456240390754922 

 At row:102, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:102, column:30,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:30,the value of plot_cost is         : 4.382825217256418 

 At row:102, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:102, column:31,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:31,the value of plot_cost is         : 4.310218104160428 

 At row:102, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:102, column:32,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:32,the value of plot_cost is         : 4.238419051466954 

 At row:102, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:102, column:33,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:33,the value of plot_cost is         : 4.167428059175996 

 At row:102, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:102, column:34,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:34,the value of plot_cost is         : 4.097245127287549 

 At row:102, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:102, column:35,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:35,the value of plot_cost is         : 4.027870255801621 

 At row:102, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:102, column:36,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:36,the value of plot_cost is         : 3.959303444718207 

 At row:102, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:102, column:37,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:37,the value of plot_cost is         : 3.8915446940373077 

 At row:102, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:102, column:38,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:38,the value of plot_cost is         : 3.824594003758924 

 At row:102, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:102, column:39,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:39,the value of plot_cost is         : 3.758451373883054 

 At row:102, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:102, column:40,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:40,the value of plot_cost is         : 3.6931168044097005 

 At row:102, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:102, column:41,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:41,the value of plot_cost is         : 3.628590295338862 

 At row:102, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:102, column:42,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:42,the value of plot_cost is         : 3.5648718466705382 

 At row:102, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:102, column:43,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:43,the value of plot_cost is         : 3.5019614584047303 

 At row:102, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:102, column:44,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:44,the value of plot_cost is         : 3.4398591305414357 

 At row:102, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:102, column:45,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:45,the value of plot_cost is         : 3.3785648630806584 

 At row:102, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:102, column:46,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:46,the value of plot_cost is         : 3.3180786560223945 

 At row:102, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:102, column:47,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:47,the value of plot_cost is         : 3.2584005093666457 

 At row:102, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:102, column:48,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:48,the value of plot_cost is         : 3.199530423113414 

 At row:102, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:102, column:49,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:49,the value of plot_cost is         : 3.1414683972626944 

 At row:102, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:102, column:50,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:50,the value of plot_cost is         : 3.0842144318144924 

 At row:102, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:102, column:51,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:51,the value of plot_cost is         : 3.027768526768804 

 At row:102, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:102, column:52,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:52,the value of plot_cost is         : 2.972130682125631 

 At row:102, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:102, column:53,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:53,the value of plot_cost is         : 2.9173008978849744 

 At row:102, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:102, column:54,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:54,the value of plot_cost is         : 2.863279174046831 

 At row:102, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:102, column:55,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:55,the value of plot_cost is         : 2.810065510611204 

 At row:102, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:102, column:56,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:56,the value of plot_cost is         : 2.757659907578091 

 At row:102, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:102, column:57,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:57,the value of plot_cost is         : 2.7060623649474933 

 At row:102, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:102, column:58,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:58,the value of plot_cost is         : 2.6552728827194123 

 At row:102, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:102, column:59,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:59,the value of plot_cost is         : 2.605291460893844 

 At row:102, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:102, column:60,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:60,the value of plot_cost is         : 2.556118099470792 

 At row:102, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:102, column:61,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:61,the value of plot_cost is         : 2.5077527984502552 

 At row:102, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:102, column:62,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:62,the value of plot_cost is         : 2.4601955578322334 

 At row:102, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:102, column:63,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:63,the value of plot_cost is         : 2.413446377616727 

 At row:102, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:102, column:64,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:64,the value of plot_cost is         : 2.3675052578037348 

 At row:102, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:102, column:65,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:65,the value of plot_cost is         : 2.3223721983932584 

 At row:102, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:102, column:66,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:66,the value of plot_cost is         : 2.2780471993852967 

 At row:102, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:102, column:67,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:67,the value of plot_cost is         : 2.23453026077985 

 At row:102, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:102, column:68,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:68,the value of plot_cost is         : 2.191821382576919 

 At row:102, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:102, column:69,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:69,the value of plot_cost is         : 2.1499205647765023 

 At row:102, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:102, column:70,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:70,the value of plot_cost is         : 2.1088278073786015 

 At row:102, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:102, column:71,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:71,the value of plot_cost is         : 2.068543110383215 

 At row:102, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:102, column:72,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:72,the value of plot_cost is         : 2.029066473790344 

 At row:102, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:102, column:73,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:73,the value of plot_cost is         : 1.9903978975999888 

 At row:102, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:102, column:74,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:74,the value of plot_cost is         : 1.952537381812147 

 At row:102, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:102, column:75,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:75,the value of plot_cost is         : 1.9154849264268219 

 At row:102, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:102, column:76,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:76,the value of plot_cost is         : 1.879240531444011 

 At row:102, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:102, column:77,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:77,the value of plot_cost is         : 1.8438041968637153 

 At row:102, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:102, column:78,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:78,the value of plot_cost is         : 1.8091759226859347 

 At row:102, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:102, column:79,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:79,the value of plot_cost is         : 1.7753557089106693 

 At row:102, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:102, column:80,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:80,the value of plot_cost is         : 1.7423435555379192 

 At row:102, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:102, column:81,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:81,the value of plot_cost is         : 1.7101394625676838 

 At row:102, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:102, column:82,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:82,the value of plot_cost is         : 1.6787434299999635 

 At row:102, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:102, column:83,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:83,the value of plot_cost is         : 1.6481554578347588 

 At row:102, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:102, column:84,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:84,the value of plot_cost is         : 1.6183755460720686 

 At row:102, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:102, column:85,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:85,the value of plot_cost is         : 1.5894036947118941 

 At row:102, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:102, column:86,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:86,the value of plot_cost is         : 1.561239903754234 

 At row:102, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:102, column:87,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:87,the value of plot_cost is         : 1.5338841731990895 

 At row:102, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:102, column:88,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:88,the value of plot_cost is         : 1.50733650304646 

 At row:102, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:102, column:89,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:89,the value of plot_cost is         : 1.481596893296345 

 At row:102, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:102, column:90,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:90,the value of plot_cost is         : 1.4566653439487456 

 At row:102, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:102, column:91,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:91,the value of plot_cost is         : 1.4325418550036613 

 At row:102, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:102, column:92,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:92,the value of plot_cost is         : 1.4092264264610923 

 At row:102, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:102, column:93,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:93,the value of plot_cost is         : 1.386719058321038 

 At row:102, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:102, column:94,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:94,the value of plot_cost is         : 1.3650197505834984 

 At row:102, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:102, column:95,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:95,the value of plot_cost is         : 1.3441285032484747 

 At row:102, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:102, column:96,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:96,the value of plot_cost is         : 1.3240453163159658 

 At row:102, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:102, column:97,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:97,the value of plot_cost is         : 1.304770189785972 

 At row:102, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:102, column:98,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:98,the value of plot_cost is         : 1.2863031236584936 

 At row:102, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:102, column:99,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:99,the value of plot_cost is         : 1.2686441179335297 

 At row:102, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:102, column:100,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:100,the value of plot_cost is         : 1.2517931726110811 

 At row:102, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:102, column:101,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:101,the value of plot_cost is         : 1.2357502876911473 

 At row:102, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:102, column:102,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:102,the value of plot_cost is         : 1.2205154631737294 

 At row:102, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:102, column:103,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:103,the value of plot_cost is         : 1.2060886990588264 

 At row:102, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:102, column:104,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:104,the value of plot_cost is         : 1.1924699953464377 

 At row:102, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:102, column:105,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:105,the value of plot_cost is         : 1.1796593520365648 

 At row:102, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:102, column:106,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:106,the value of plot_cost is         : 1.1676567691292061 

 At row:102, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:102, column:107,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:107,the value of plot_cost is         : 1.1564622466243635 

 At row:102, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:102, column:108,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:108,the value of plot_cost is         : 1.1460757845220362 

 At row:102, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:102, column:109,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:109,the value of plot_cost is         : 1.136497382822223 

 At row:102, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:102, column:110,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:110,the value of plot_cost is         : 1.1277270415249248 

 At row:102, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:102, column:111,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:111,the value of plot_cost is         : 1.1197647606301422 

 At row:102, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:102, column:112,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:112,the value of plot_cost is         : 1.1126105401378752 

 At row:102, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:102, column:113,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:113,the value of plot_cost is         : 1.106264380048123 

 At row:102, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:102, column:114,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:114,the value of plot_cost is         : 1.1007262803608855 

 At row:102, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:102, column:115,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:115,the value of plot_cost is         : 1.0959962410761628 

 At row:102, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:102, column:116,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:116,the value of plot_cost is         : 1.0920742621939559 

 At row:102, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:102, column:117,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:117,the value of plot_cost is         : 1.088960343714264 

 At row:102, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:102, column:118,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:118,the value of plot_cost is         : 1.0866544856370874 

 At row:102, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:102, column:119,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:119,the value of plot_cost is         : 1.085156687962425 

 At row:102, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:102, column:120,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:120,the value of plot_cost is         : 1.0844669506902778 

 At row:102, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:102, column:121,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:121,the value of plot_cost is         : 1.084585273820646 

 At row:102, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:102, column:122,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:122,the value of plot_cost is         : 1.08551165735353 

 At row:102, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:102, column:123,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:123,the value of plot_cost is         : 1.087246101288929 

 At row:102, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:102, column:124,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:124,the value of plot_cost is         : 1.089788605626842 

 At row:102, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:102, column:125,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:125,the value of plot_cost is         : 1.0931391703672702 

 At row:102, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:102, column:126,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:126,the value of plot_cost is         : 1.0972977955102137 

 At row:102, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:102, column:127,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:127,the value of plot_cost is         : 1.102264481055673 

 At row:102, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:102, column:128,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:128,the value of plot_cost is         : 1.1080392270036477 

 At row:102, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:102, column:129,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:129,the value of plot_cost is         : 1.1146220333541361 

 At row:102, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:102, column:130,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:130,the value of plot_cost is         : 1.1220129001071397 

 At row:102, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:102, column:131,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:131,the value of plot_cost is         : 1.1302118272626587 

 At row:102, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:102, column:132,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:132,the value of plot_cost is         : 1.1392188148206934 

 At row:102, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:102, column:133,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:133,the value of plot_cost is         : 1.1490338627812433 

 At row:102, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:102, column:134,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:134,the value of plot_cost is         : 1.1596569711443072 

 At row:102, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:102, column:135,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:135,the value of plot_cost is         : 1.1710881399098865 

 At row:102, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:102, column:136,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:136,the value of plot_cost is         : 1.1833273690779809 

 At row:102, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:102, column:137,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:137,the value of plot_cost is         : 1.196374658648591 

 At row:102, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:102, column:138,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:138,the value of plot_cost is         : 1.2102300086217164 

 At row:102, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:102, column:139,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:139,the value of plot_cost is         : 1.224893418997356 

 At row:102, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:102, column:140,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:140,the value of plot_cost is         : 1.24036488977551 

 At row:102, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:102, column:141,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:141,the value of plot_cost is         : 1.2566444209561802 

 At row:102, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:102, column:142,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:142,the value of plot_cost is         : 1.2737320125393659 

 At row:102, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:102, column:143,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:143,the value of plot_cost is         : 1.2916276645250666 

 At row:102, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:102, column:144,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:144,the value of plot_cost is         : 1.3103313769132814 

 At row:102, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:102, column:145,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:145,the value of plot_cost is         : 1.3298431497040113 

 At row:102, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:102, column:146,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:146,the value of plot_cost is         : 1.3501629828972563 

 At row:102, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:102, column:147,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:147,the value of plot_cost is         : 1.3712908764930176 

 At row:102, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:102, column:148,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:148,the value of plot_cost is         : 1.3932268304912943 

 At row:102, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:102, column:149,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:149,the value of plot_cost is         : 1.4159708448920842 

 At row:102, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:102, column:150,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:150,the value of plot_cost is         : 1.4395229196953894 

 At row:102, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:102, column:151,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:151,the value of plot_cost is         : 1.4638830549012116 

 At row:102, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:102, column:152,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:152,the value of plot_cost is         : 1.4890512505095472 

 At row:102, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:102, column:153,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:153,the value of plot_cost is         : 1.515027506520399 

 At row:102, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:102, column:154,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:154,the value of plot_cost is         : 1.5418118229337647 

 At row:102, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:102, column:155,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:155,the value of plot_cost is         : 1.569404199749645 

 At row:102, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:102, column:156,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:156,the value of plot_cost is         : 1.5978046369680416 

 At row:102, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:102, column:157,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:157,the value of plot_cost is         : 1.6270131345889527 

 At row:102, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:102, column:158,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:158,the value of plot_cost is         : 1.6570296926123804 

 At row:102, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:102, column:159,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:159,the value of plot_cost is         : 1.6878543110383213 

 At row:102, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:102, column:160,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:160,the value of plot_cost is         : 1.7194869898667777 

 At row:102, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:102, column:161,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:161,the value of plot_cost is         : 1.7519277290977504 

 At row:102, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:102, column:162,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:162,the value of plot_cost is         : 1.7851765287312371 

 At row:102, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:102, column:163,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:163,the value of plot_cost is         : 1.8192333887672396 

 At row:102, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:102, column:164,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:164,the value of plot_cost is         : 1.8540983092057561 

 At row:102, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:102, column:165,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:165,the value of plot_cost is         : 1.8897712900467873 

 At row:102, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:102, column:166,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:166,the value of plot_cost is         : 1.9262523312903357 

 At row:102, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:102, column:167,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:167,the value of plot_cost is         : 1.9635414329363974 

 At row:102, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:102, column:168,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:168,the value of plot_cost is         : 2.001638594984976 

 At row:102, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:102, column:169,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:169,the value of plot_cost is         : 2.0405438174360673 

 At row:102, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:102, column:170,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:170,the value of plot_cost is         : 2.080257100289675 

 At row:102, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:102, column:171,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:171,the value of plot_cost is         : 2.1207784435457984 

 At row:102, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:102, column:172,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:172,the value of plot_cost is         : 2.1621078472044357 

 At row:102, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:102, column:173,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:173,the value of plot_cost is         : 2.2042453112655895 

 At row:102, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:102, column:174,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:174,the value of plot_cost is         : 2.247190835729257 

 At row:102, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:102, column:175,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:175,the value of plot_cost is         : 2.2909444205954386 

 At row:102, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:102, column:176,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:176,the value of plot_cost is         : 2.335506065864138 

 At row:102, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:102, column:177,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:177,the value of plot_cost is         : 2.3808757715353503 

 At row:102, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:102, column:178,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:178,the value of plot_cost is         : 2.42705353760908 

 At row:102, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:102, column:179,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:179,the value of plot_cost is         : 2.474039364085322 

 At row:102, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:102, column:180,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:180,the value of plot_cost is         : 2.5218332509640806 

 At row:102, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:102, column:181,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:181,the value of plot_cost is         : 2.5704351982453546 

 At row:102, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:102, column:182,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:182,the value of plot_cost is         : 2.6198452059291433 

 At row:102, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:102, column:183,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:183,the value of plot_cost is         : 2.670063274015448 

 At row:102, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:102, column:184,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:184,the value of plot_cost is         : 2.7210894025042656 

 At row:102, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:102, column:185,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:185,the value of plot_cost is         : 2.772923591395599 

 At row:102, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:102, column:186,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:186,the value of plot_cost is         : 2.8255658406894493 

 At row:102, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:102, column:187,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:187,the value of plot_cost is         : 2.8790161503858123 

 At row:102, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:102, column:188,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:188,the value of plot_cost is         : 2.9332745204846935 

 At row:102, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:102, column:189,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:189,the value of plot_cost is         : 2.9883409509860863 

 At row:102, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:102, column:190,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:190,the value of plot_cost is         : 3.0442154418899943 

 At row:102, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:102, column:191,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:191,the value of plot_cost is         : 3.1008979931964205 

 At row:102, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:102, column:192,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:192,the value of plot_cost is         : 3.158388604905359 

 At row:102, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:102, column:193,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:193,the value of plot_cost is         : 3.216687277016815 

 At row:102, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:102, column:194,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:194,the value of plot_cost is         : 3.2757940095307845 

 At row:102, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:102, column:195,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:195,the value of plot_cost is         : 3.335708802447268 

 At row:102, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:102, column:196,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:196,the value of plot_cost is         : 3.396431655766268 

 At row:102, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:102, column:197,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:197,the value of plot_cost is         : 3.4579625694877856 

 At row:102, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:102, column:198,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:198,the value of plot_cost is         : 3.520301543611815 

 At row:102, column:199,the value of plot_t0 is           : 3.0
 At row:102, column:199,the value of plot_t1 is           : 1.050251256281407
 At row:102, column:199,the value of plot_cost is         : 3.583448578138359 

 At row:103, column:0,the value of plot_t0 is           : -1.0
 At row:103, column:0,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:0,the value of plot_cost is         : 6.588949593624979 

 At row:103, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:103, column:1,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:1,the value of plot_cost is         : 6.494778811501874 

 At row:103, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:103, column:2,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:2,the value of plot_cost is         : 6.40141608978128 

 At row:103, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:103, column:3,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:3,the value of plot_cost is         : 6.308861428463205 

 At row:103, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:103, column:4,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:4,the value of plot_cost is         : 6.217114827547642 

 At row:103, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:103, column:5,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:5,the value of plot_cost is         : 6.126176287034596 

 At row:103, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:103, column:6,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:6,the value of plot_cost is         : 6.036045806924067 

 At row:103, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:103, column:7,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:7,the value of plot_cost is         : 5.946723387216049 

 At row:103, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:103, column:8,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:8,the value of plot_cost is         : 5.858209027910549 

 At row:103, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:103, column:9,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:9,the value of plot_cost is         : 5.7705027290075614 

 At row:103, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:103, column:10,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:10,the value of plot_cost is         : 5.683604490507093 

 At row:103, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:103, column:11,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:11,the value of plot_cost is         : 5.597514312409138 

 At row:103, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:103, column:12,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:12,the value of plot_cost is         : 5.512232194713696 

 At row:103, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:103, column:13,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:13,the value of plot_cost is         : 5.4277581374207715 

 At row:103, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:103, column:14,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:14,the value of plot_cost is         : 5.34409214053036 

 At row:103, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:103, column:15,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:15,the value of plot_cost is         : 5.261234204042464 

 At row:103, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:103, column:16,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:16,the value of plot_cost is         : 5.179184327957084 

 At row:103, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:103, column:17,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:17,the value of plot_cost is         : 5.097942512274218 

 At row:103, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:103, column:18,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:18,the value of plot_cost is         : 5.0175087569938706 

 At row:103, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:103, column:19,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:19,the value of plot_cost is         : 4.9378830621160335 

 At row:103, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:103, column:20,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:20,the value of plot_cost is         : 4.859065427640715 

 At row:103, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:103, column:21,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:21,the value of plot_cost is         : 4.78105585356791 

 At row:103, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:103, column:22,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:22,the value of plot_cost is         : 4.70385433989762 

 At row:103, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:103, column:23,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:23,the value of plot_cost is         : 4.627460886629847 

 At row:103, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:103, column:24,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:24,the value of plot_cost is         : 4.551875493764586 

 At row:103, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:103, column:25,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:25,the value of plot_cost is         : 4.477098161301842 

 At row:103, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:103, column:26,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:26,the value of plot_cost is         : 4.403128889241613 

 At row:103, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:103, column:27,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:27,the value of plot_cost is         : 4.329967677583897 

 At row:103, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:103, column:28,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:28,the value of plot_cost is         : 4.257614526328699 

 At row:103, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:103, column:29,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:29,the value of plot_cost is         : 4.186069435476014 

 At row:103, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:103, column:30,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:30,the value of plot_cost is         : 4.115332405025845 

 At row:103, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:103, column:31,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:31,the value of plot_cost is         : 4.045403434978192 

 At row:103, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:103, column:32,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:32,the value of plot_cost is         : 3.976282525333053 

 At row:103, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:103, column:33,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:33,the value of plot_cost is         : 3.90796967609043 

 At row:103, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:103, column:34,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:34,the value of plot_cost is         : 3.84046488725032 

 At row:103, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:103, column:35,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:35,the value of plot_cost is         : 3.773768158812727 

 At row:103, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:103, column:36,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:36,the value of plot_cost is         : 3.707879490777649 

 At row:103, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:103, column:37,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:37,the value of plot_cost is         : 3.642798883145085 

 At row:103, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:103, column:38,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:38,the value of plot_cost is         : 3.578526335915037 

 At row:103, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:103, column:39,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:39,the value of plot_cost is         : 3.5150618490875036 

 At row:103, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:103, column:40,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:40,the value of plot_cost is         : 3.4524054226624856 

 At row:103, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:103, column:41,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:41,the value of plot_cost is         : 3.3905570566399827 

 At row:103, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:103, column:42,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:42,the value of plot_cost is         : 3.3295167510199946 

 At row:103, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:103, column:43,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:43,the value of plot_cost is         : 3.269284505802522 

 At row:103, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:103, column:44,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:44,the value of plot_cost is         : 3.209860320987564 

 At row:103, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:103, column:45,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:45,the value of plot_cost is         : 3.1512441965751217 

 At row:103, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:103, column:46,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:46,the value of plot_cost is         : 3.093436132565194 

 At row:103, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:103, column:47,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:47,the value of plot_cost is         : 3.0364361289577806 

 At row:103, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:103, column:48,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:48,the value of plot_cost is         : 2.9802441857528845 

 At row:103, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:103, column:49,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:49,the value of plot_cost is         : 2.924860302950501 

 At row:103, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:103, column:50,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:50,the value of plot_cost is         : 2.8702844805506347 

 At row:103, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:103, column:51,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:51,the value of plot_cost is         : 2.8165167185532827 

 At row:103, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:103, column:52,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:52,the value of plot_cost is         : 2.763557016958445 

 At row:103, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:103, column:53,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:53,the value of plot_cost is         : 2.7114053757661236 

 At row:103, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:103, column:54,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:54,the value of plot_cost is         : 2.660061794976316 

 At row:103, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:103, column:55,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:55,the value of plot_cost is         : 2.6095262745890246 

 At row:103, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:103, column:56,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:56,the value of plot_cost is         : 2.5597988146042483 

 At row:103, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:103, column:57,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:57,the value of plot_cost is         : 2.5108794150219866 

 At row:103, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:103, column:58,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:58,the value of plot_cost is         : 2.46276807584224 

 At row:103, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:103, column:59,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:59,the value of plot_cost is         : 2.415464797065008 

 At row:103, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:103, column:60,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:60,the value of plot_cost is         : 2.368969578690292 

 At row:103, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:103, column:61,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:61,the value of plot_cost is         : 2.323282420718091 

 At row:103, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:103, column:62,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:62,the value of plot_cost is         : 2.2784033231484044 

 At row:103, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:103, column:63,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:63,the value of plot_cost is         : 2.234332285981234 

 At row:103, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:103, column:64,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:64,the value of plot_cost is         : 2.191069309216577 

 At row:103, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:103, column:65,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:65,the value of plot_cost is         : 2.148614392854437 

 At row:103, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:103, column:66,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:66,the value of plot_cost is         : 2.106967536894811 

 At row:103, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:103, column:67,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:67,the value of plot_cost is         : 2.0661287413376996 

 At row:103, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:103, column:68,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:68,the value of plot_cost is         : 2.026098006183105 

 At row:103, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:103, column:69,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:69,the value of plot_cost is         : 1.9868753314310232 

 At row:103, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:103, column:70,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:70,the value of plot_cost is         : 1.9484607170814585 

 At row:103, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:103, column:71,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:71,the value of plot_cost is         : 1.9108541631344085 

 At row:103, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:103, column:72,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:72,the value of plot_cost is         : 1.8740556695898725 

 At row:103, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:103, column:73,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:73,the value of plot_cost is         : 1.8380652364478527 

 At row:103, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:103, column:74,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:74,the value of plot_cost is         : 1.802882863708347 

 At row:103, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:103, column:75,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:75,the value of plot_cost is         : 1.7685085513713572 

 At row:103, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:103, column:76,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:76,the value of plot_cost is         : 1.7349422994368826 

 At row:103, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:103, column:77,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:77,the value of plot_cost is         : 1.7021841079049225 

 At row:103, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:103, column:78,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:78,the value of plot_cost is         : 1.670233976775477 

 At row:103, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:103, column:79,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:79,the value of plot_cost is         : 1.6390919060485476 

 At row:103, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:103, column:80,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:80,the value of plot_cost is         : 1.6087578957241333 

 At row:103, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:103, column:81,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:81,the value of plot_cost is         : 1.5792319458022341 

 At row:103, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:103, column:82,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:82,the value of plot_cost is         : 1.5505140562828497 

 At row:103, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:103, column:83,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:83,the value of plot_cost is         : 1.5226042271659799 

 At row:103, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:103, column:84,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:84,the value of plot_cost is         : 1.4955024584516259 

 At row:103, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:103, column:85,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:85,the value of plot_cost is         : 1.469208750139787 

 At row:103, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:103, column:86,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:86,the value of plot_cost is         : 1.4437231022304633 

 At row:103, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:103, column:87,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:87,the value of plot_cost is         : 1.4190455147236538 

 At row:103, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:103, column:88,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:88,the value of plot_cost is         : 1.3951759876193595 

 At row:103, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:103, column:89,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:89,the value of plot_cost is         : 1.372114520917581 

 At row:103, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:103, column:90,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:90,the value of plot_cost is         : 1.3498611146183177 

 At row:103, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:103, column:91,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:91,the value of plot_cost is         : 1.328415768721569 

 At row:103, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:103, column:92,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:92,the value of plot_cost is         : 1.3077784832273351 

 At row:103, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:103, column:93,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:93,the value of plot_cost is         : 1.2879492581356162 

 At row:103, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:103, column:94,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:94,the value of plot_cost is         : 1.2689280934464129 

 At row:103, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:103, column:95,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:95,the value of plot_cost is         : 1.2507149891597253 

 At row:103, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:103, column:96,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:96,the value of plot_cost is         : 1.2333099452755523 

 At row:103, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:103, column:97,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:97,the value of plot_cost is         : 1.216712961793894 

 At row:103, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:103, column:98,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:98,the value of plot_cost is         : 1.2009240387147508 

 At row:103, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:103, column:99,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:99,the value of plot_cost is         : 1.1859431760381227 

 At row:103, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:103, column:100,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:100,the value of plot_cost is         : 1.1717703737640102 

 At row:103, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:103, column:101,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:101,the value of plot_cost is         : 1.1584056318924125 

 At row:103, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:103, column:102,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:102,the value of plot_cost is         : 1.14584895042333 

 At row:103, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:103, column:103,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:103,the value of plot_cost is         : 1.1341003293567617 

 At row:103, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:103, column:104,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:104,the value of plot_cost is         : 1.1231597686927093 

 At row:103, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:103, column:105,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:105,the value of plot_cost is         : 1.1130272684311722 

 At row:103, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:103, column:106,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:106,the value of plot_cost is         : 1.1037028285721504 

 At row:103, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:103, column:107,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:107,the value of plot_cost is         : 1.0951864491156431 

 At row:103, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:103, column:108,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:108,the value of plot_cost is         : 1.0874781300616505 

 At row:103, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:103, column:109,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:109,the value of plot_cost is         : 1.0805778714101733 

 At row:103, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:103, column:110,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:110,the value of plot_cost is         : 1.0744856731612118 

 At row:103, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:103, column:111,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:111,the value of plot_cost is         : 1.0692015353147648 

 At row:103, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:103, column:112,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:112,the value of plot_cost is         : 1.0647254578708332 

 At row:103, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:103, column:113,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:113,the value of plot_cost is         : 1.0610574408294162 

 At row:103, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:103, column:114,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:114,the value of plot_cost is         : 1.0581974841905144 

 At row:103, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:103, column:115,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:115,the value of plot_cost is         : 1.0561455879541282 

 At row:103, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:103, column:116,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:116,the value of plot_cost is         : 1.054901752120257 

 At row:103, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:103, column:117,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:117,the value of plot_cost is         : 1.0544659766889006 

 At row:103, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:103, column:118,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:118,the value of plot_cost is         : 1.0548382616600591 

 At row:103, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:103, column:119,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:119,the value of plot_cost is         : 1.0560186070337327 

 At row:103, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:103, column:120,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:120,the value of plot_cost is         : 1.0580070128099222 

 At row:103, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:103, column:121,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:121,the value of plot_cost is         : 1.0608034789886263 

 At row:103, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:103, column:122,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:122,the value of plot_cost is         : 1.0644080055698455 

 At row:103, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:103, column:123,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:123,the value of plot_cost is         : 1.0688205925535792 

 At row:103, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:103, column:124,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:124,the value of plot_cost is         : 1.0740412399398283 

 At row:103, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:103, column:125,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:125,the value of plot_cost is         : 1.0800699477285933 

 At row:103, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:103, column:126,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:126,the value of plot_cost is         : 1.0869067159198726 

 At row:103, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:103, column:127,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:127,the value of plot_cost is         : 1.094551544513667 

 At row:103, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:103, column:128,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:128,the value of plot_cost is         : 1.1030044335099765 

 At row:103, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:103, column:129,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:129,the value of plot_cost is         : 1.112265382908801 

 At row:103, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:103, column:130,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:130,the value of plot_cost is         : 1.1223343927101415 

 At row:103, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:103, column:131,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:131,the value of plot_cost is         : 1.133211462913996 

 At row:103, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:103, column:132,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:132,the value of plot_cost is         : 1.1448965935203663 

 At row:103, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:103, column:133,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:133,the value of plot_cost is         : 1.157389784529251 

 At row:103, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:103, column:134,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:134,the value of plot_cost is         : 1.170691035940651 

 At row:103, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:103, column:135,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:135,the value of plot_cost is         : 1.1848003477545672 

 At row:103, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:103, column:136,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:136,the value of plot_cost is         : 1.1997177199709967 

 At row:103, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:103, column:137,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:137,the value of plot_cost is         : 1.2154431525899423 

 At row:103, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:103, column:138,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:138,the value of plot_cost is         : 1.2319766456114027 

 At row:103, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:103, column:139,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:139,the value of plot_cost is         : 1.2493181990353779 

 At row:103, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:103, column:140,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:140,the value of plot_cost is         : 1.2674678128618693 

 At row:103, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:103, column:141,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:141,the value of plot_cost is         : 1.2864254870908747 

 At row:103, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:103, column:142,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:142,the value of plot_cost is         : 1.306191221722396 

 At row:103, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:103, column:143,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:143,the value of plot_cost is         : 1.3267650167564315 

 At row:103, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:103, column:144,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:144,the value of plot_cost is         : 1.3481468721929823 

 At row:103, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:103, column:145,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:145,the value of plot_cost is         : 1.3703367880320492 

 At row:103, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:103, column:146,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:146,the value of plot_cost is         : 1.3933347642736302 

 At row:103, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:103, column:147,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:147,the value of plot_cost is         : 1.4171408009177267 

 At row:103, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:103, column:148,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:148,the value of plot_cost is         : 1.4417548979643378 

 At row:103, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:103, column:149,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:149,the value of plot_cost is         : 1.4671770554134638 

 At row:103, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:103, column:150,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:150,the value of plot_cost is         : 1.4934072732651056 

 At row:103, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:103, column:151,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:151,the value of plot_cost is         : 1.520445551519263 

 At row:103, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:103, column:152,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:152,the value of plot_cost is         : 1.5482918901759342 

 At row:103, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:103, column:153,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:153,the value of plot_cost is         : 1.576946289235121 

 At row:103, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:103, column:154,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:154,the value of plot_cost is         : 1.6064087486968226 

 At row:103, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:103, column:155,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:155,the value of plot_cost is         : 1.63667926856104 

 At row:103, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:103, column:156,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:156,the value of plot_cost is         : 1.667757848827773 

 At row:103, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:103, column:157,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:157,the value of plot_cost is         : 1.6996444894970195 

 At row:103, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:103, column:158,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:158,the value of plot_cost is         : 1.7323391905687813 

 At row:103, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:103, column:159,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:159,the value of plot_cost is         : 1.7658419520430582 

 At row:103, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:103, column:160,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:160,the value of plot_cost is         : 1.8001527739198517 

 At row:103, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:103, column:161,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:161,the value of plot_cost is         : 1.8352716561991596 

 At row:103, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:103, column:162,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:162,the value of plot_cost is         : 1.8711985988809814 

 At row:103, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:103, column:163,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:163,the value of plot_cost is         : 1.907933601965319 

 At row:103, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:103, column:164,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:164,the value of plot_cost is         : 1.9454766654521713 

 At row:103, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:103, column:165,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:165,the value of plot_cost is         : 1.9838277893415401 

 At row:103, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:103, column:166,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:166,the value of plot_cost is         : 2.0229869736334236 

 At row:103, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:103, column:167,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:167,the value of plot_cost is         : 2.062954218327821 

 At row:103, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:103, column:168,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:168,the value of plot_cost is         : 2.1037295234247337 

 At row:103, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:103, column:169,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:169,the value of plot_cost is         : 2.1453128889241615 

 At row:103, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:103, column:170,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:170,the value of plot_cost is         : 2.187704314826106 

 At row:103, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:103, column:171,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:171,the value of plot_cost is         : 2.2309038011305655 

 At row:103, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:103, column:172,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:172,the value of plot_cost is         : 2.274911347837538 

 At row:103, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:103, column:173,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:173,the value of plot_cost is         : 2.319726954947026 

 At row:103, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:103, column:174,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:174,the value of plot_cost is         : 2.365350622459029 

 At row:103, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:103, column:175,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:175,the value of plot_cost is         : 2.411782350373549 

 At row:103, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:103, column:176,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:176,the value of plot_cost is         : 2.459022138690583 

 At row:103, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:103, column:177,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:177,the value of plot_cost is         : 2.507069987410131 

 At row:103, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:103, column:178,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:178,the value of plot_cost is         : 2.5559258965321954 

 At row:103, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:103, column:179,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:179,the value of plot_cost is         : 2.6055898660567736 

 At row:103, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:103, column:180,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:180,the value of plot_cost is         : 2.656061895983869 

 At row:103, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:103, column:181,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:181,the value of plot_cost is         : 2.707341986313479 

 At row:103, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:103, column:182,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:182,the value of plot_cost is         : 2.7594301370456025 

 At row:103, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:103, column:183,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:183,the value of plot_cost is         : 2.812326348180242 

 At row:103, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:103, column:184,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:184,the value of plot_cost is         : 2.866030619717395 

 At row:103, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:103, column:185,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:185,the value of plot_cost is         : 2.9205429516570662 

 At row:103, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:103, column:186,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:186,the value of plot_cost is         : 2.9758633439992517 

 At row:103, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:103, column:187,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:187,the value of plot_cost is         : 3.0319917967439505 

 At row:103, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:103, column:188,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:188,the value of plot_cost is         : 3.088928309891165 

 At row:103, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:103, column:189,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:189,the value of plot_cost is         : 3.1466728834408944 

 At row:103, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:103, column:190,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:190,the value of plot_cost is         : 3.2052255173931408 

 At row:103, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:103, column:191,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:191,the value of plot_cost is         : 3.264586211747902 

 At row:103, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:103, column:192,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:192,the value of plot_cost is         : 3.3247549665051768 

 At row:103, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:103, column:193,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:193,the value of plot_cost is         : 3.3857317816649664 

 At row:103, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:103, column:194,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:194,the value of plot_cost is         : 3.447516657227271 

 At row:103, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:103, column:195,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:195,the value of plot_cost is         : 3.5101095931920927 

 At row:103, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:103, column:196,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:196,the value of plot_cost is         : 3.5735105895594286 

 At row:103, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:103, column:197,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:197,the value of plot_cost is         : 3.637719646329279 

 At row:103, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:103, column:198,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:198,the value of plot_cost is         : 3.7027367635016444 

 At row:103, column:199,the value of plot_t0 is           : 3.0
 At row:103, column:199,the value of plot_t1 is           : 1.07035175879397
 At row:103, column:199,the value of plot_cost is         : 3.7685619410765243 

 At row:104, column:0,the value of plot_t0 is           : -1.0
 At row:104, column:0,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:0,the value of plot_cost is         : 6.253695144783499 

 At row:104, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:104, column:1,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:1,the value of plot_cost is         : 6.162202505708728 

 At row:104, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:104, column:2,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:2,the value of plot_cost is         : 6.071517927036471 

 At row:104, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:104, column:3,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:3,the value of plot_cost is         : 5.9816414087667304 

 At row:104, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:104, column:4,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:4,the value of plot_cost is         : 5.892572950899504 

 At row:104, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:104, column:5,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:5,the value of plot_cost is         : 5.804312553434794 

 At row:104, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:104, column:6,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:6,the value of plot_cost is         : 5.7168602163725994 

 At row:104, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:104, column:7,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:7,the value of plot_cost is         : 5.630215939712919 

 At row:104, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:104, column:8,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:8,the value of plot_cost is         : 5.544379723455754 

 At row:104, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:104, column:9,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:9,the value of plot_cost is         : 5.459351567601103 

 At row:104, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:104, column:10,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:10,the value of plot_cost is         : 5.3751314721489685 

 At row:104, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:104, column:11,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:11,the value of plot_cost is         : 5.291719437099349 

 At row:104, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:104, column:12,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:12,the value of plot_cost is         : 5.209115462452243 

 At row:104, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:104, column:13,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:13,the value of plot_cost is         : 5.127319548207654 

 At row:104, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:104, column:14,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:14,the value of plot_cost is         : 5.046331694365579 

 At row:104, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:104, column:15,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:15,the value of plot_cost is         : 4.966151900926019 

 At row:104, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:104, column:16,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:16,the value of plot_cost is         : 4.8867801678889755 

 At row:104, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:104, column:17,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:17,the value of plot_cost is         : 4.808216495254445 

 At row:104, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:104, column:18,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:18,the value of plot_cost is         : 4.730460883022433 

 At row:104, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:104, column:19,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:19,the value of plot_cost is         : 4.653513331192932 

 At row:104, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:104, column:20,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:20,the value of plot_cost is         : 4.577373839765949 

 At row:104, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:104, column:21,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:21,the value of plot_cost is         : 4.502042408741479 

 At row:104, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:104, column:22,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:22,the value of plot_cost is         : 4.427519038119525 

 At row:104, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:104, column:23,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:23,the value of plot_cost is         : 4.353803727900087 

 At row:104, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:104, column:24,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:24,the value of plot_cost is         : 4.280896478083163 

 At row:104, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:104, column:25,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:25,the value of plot_cost is         : 4.208797288668754 

 At row:104, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:104, column:26,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:26,the value of plot_cost is         : 4.13750615965686 

 At row:104, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:104, column:27,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:27,the value of plot_cost is         : 4.067023091047481 

 At row:104, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:104, column:28,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:28,the value of plot_cost is         : 3.997348082840619 

 At row:104, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:104, column:29,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:29,the value of plot_cost is         : 3.9284811350362694 

 At row:104, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:104, column:30,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:30,the value of plot_cost is         : 3.8604222476344368 

 At row:104, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:104, column:31,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:31,the value of plot_cost is         : 3.793171420635119 

 At row:104, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:104, column:32,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:32,the value of plot_cost is         : 3.726728654038316 

 At row:104, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:104, column:33,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:33,the value of plot_cost is         : 3.661093947844028 

 At row:104, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:104, column:34,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:34,the value of plot_cost is         : 3.5962673020522544 

 At row:104, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:104, column:35,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:35,the value of plot_cost is         : 3.532248716662996 

 At row:104, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:104, column:36,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:36,the value of plot_cost is         : 3.469038191676254 

 At row:104, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:104, column:37,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:37,the value of plot_cost is         : 3.4066357270920262 

 At row:104, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:104, column:38,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:38,the value of plot_cost is         : 3.345041322910314 

 At row:104, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:104, column:39,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:39,the value of plot_cost is         : 3.2842549791311155 

 At row:104, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:104, column:40,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:40,the value of plot_cost is         : 3.224276695754434 

 At row:104, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:104, column:41,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:41,the value of plot_cost is         : 3.1651064727802667 

 At row:104, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:104, column:42,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:42,the value of plot_cost is         : 3.1067443102086143 

 At row:104, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:104, column:43,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:43,the value of plot_cost is         : 3.0491902080394775 

 At row:104, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:104, column:44,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:44,the value of plot_cost is         : 2.992444166272855 

 At row:104, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:104, column:45,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:45,the value of plot_cost is         : 2.9365061849087484 

 At row:104, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:104, column:46,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:46,the value of plot_cost is         : 2.881376263947156 

 At row:104, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:104, column:47,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:47,the value of plot_cost is         : 2.82705440338808 

 At row:104, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:104, column:48,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:48,the value of plot_cost is         : 2.7735406032315186 

 At row:104, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:104, column:49,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:49,the value of plot_cost is         : 2.7208348634774713 

 At row:104, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:104, column:50,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:50,the value of plot_cost is         : 2.668937184125941 

 At row:104, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:104, column:51,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:51,the value of plot_cost is         : 2.6178475651769237 

 At row:104, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:104, column:52,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:52,the value of plot_cost is         : 2.5675660066304222 

 At row:104, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:104, column:53,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:53,the value of plot_cost is         : 2.5180925084864367 

 At row:104, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:104, column:54,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:54,the value of plot_cost is         : 2.4694270707449646 

 At row:104, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:104, column:55,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:55,the value of plot_cost is         : 2.4215696934060094 

 At row:104, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:104, column:56,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:56,the value of plot_cost is         : 2.3745203764695675 

 At row:104, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:104, column:57,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:57,the value of plot_cost is         : 2.328279119935642 

 At row:104, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:104, column:58,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:58,the value of plot_cost is         : 2.2828459238042313 

 At row:104, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:104, column:59,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:59,the value of plot_cost is         : 2.2382207880753353 

 At row:104, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:104, column:60,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:60,the value of plot_cost is         : 2.194403712748955 

 At row:104, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:104, column:61,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:61,the value of plot_cost is         : 2.1513946978250895 

 At row:104, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:104, column:62,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:62,the value of plot_cost is         : 2.1091937433037384 

 At row:104, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:104, column:63,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:63,the value of plot_cost is         : 2.067800849184904 

 At row:104, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:104, column:64,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:64,the value of plot_cost is         : 2.027216015468583 

 At row:104, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:104, column:65,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:65,the value of plot_cost is         : 1.9874392421547786 

 At row:104, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:104, column:66,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:66,the value of plot_cost is         : 1.948470529243488 

 At row:104, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:104, column:67,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:67,the value of plot_cost is         : 1.910309876734713 

 At row:104, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:104, column:68,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:68,the value of plot_cost is         : 1.8729572846284537 

 At row:104, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:104, column:69,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:69,the value of plot_cost is         : 1.8364127529247085 

 At row:104, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:104, column:70,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:70,the value of plot_cost is         : 1.8006762816234787 

 At row:104, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:104, column:71,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:71,the value of plot_cost is         : 1.7657478707247645 

 At row:104, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:104, column:72,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:72,the value of plot_cost is         : 1.7316275202285645 

 At row:104, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:104, column:73,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:73,the value of plot_cost is         : 1.6983152301348805 

 At row:104, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:104, column:74,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:74,the value of plot_cost is         : 1.66581100044371 

 At row:104, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:104, column:75,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:75,the value of plot_cost is         : 1.6341148311550564 

 At row:104, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:104, column:76,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:76,the value of plot_cost is         : 1.6032267222689174 

 At row:104, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:104, column:77,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:77,the value of plot_cost is         : 1.5731466737852928 

 At row:104, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:104, column:78,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:78,the value of plot_cost is         : 1.5438746857041834 

 At row:104, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:104, column:79,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:79,the value of plot_cost is         : 1.51541075802559 

 At row:104, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:104, column:80,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:80,the value of plot_cost is         : 1.4877548907495113 

 At row:104, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:104, column:81,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:81,the value of plot_cost is         : 1.4609070838759477 

 At row:104, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:104, column:82,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:82,the value of plot_cost is         : 1.4348673374048986 

 At row:104, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:104, column:83,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:83,the value of plot_cost is         : 1.4096356513363646 

 At row:104, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:104, column:84,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:84,the value of plot_cost is         : 1.3852120256703466 

 At row:104, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:104, column:85,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:85,the value of plot_cost is         : 1.3615964604068431 

 At row:104, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:104, column:86,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:86,the value of plot_cost is         : 1.3387889555458552 

 At row:104, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:104, column:87,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:87,the value of plot_cost is         : 1.3167895110873815 

 At row:104, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:104, column:88,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:88,the value of plot_cost is         : 1.295598127031423 

 At row:104, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:104, column:89,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:89,the value of plot_cost is         : 1.27521480337798 

 At row:104, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:104, column:90,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:90,the value of plot_cost is         : 1.2556395401270528 

 At row:104, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:104, column:91,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:91,the value of plot_cost is         : 1.2368723372786399 

 At row:104, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:104, column:92,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:92,the value of plot_cost is         : 1.2189131948327416 

 At row:104, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:104, column:93,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:93,the value of plot_cost is         : 1.2017621127893585 

 At row:104, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:104, column:94,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:94,the value of plot_cost is         : 1.1854190911484912 

 At row:104, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:104, column:95,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:95,the value of plot_cost is         : 1.169884129910139 

 At row:104, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:104, column:96,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:96,the value of plot_cost is         : 1.155157229074302 

 At row:104, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:104, column:97,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:97,the value of plot_cost is         : 1.141238388640979 

 At row:104, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:104, column:98,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:98,the value of plot_cost is         : 1.1281276086101713 

 At row:104, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:104, column:99,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:99,the value of plot_cost is         : 1.1158248889818794 

 At row:104, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:104, column:100,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:100,the value of plot_cost is         : 1.1043302297561024 

 At row:104, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:104, column:101,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:101,the value of plot_cost is         : 1.0936436309328408 

 At row:104, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:104, column:102,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:102,the value of plot_cost is         : 1.0837650925120934 

 At row:104, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:104, column:103,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:103,the value of plot_cost is         : 1.0746946144938614 

 At row:104, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:104, column:104,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:104,the value of plot_cost is         : 1.0664321968781447 

 At row:104, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:104, column:105,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:105,the value of plot_cost is         : 1.0589778396649434 

 At row:104, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:104, column:106,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:106,the value of plot_cost is         : 1.052331542854257 

 At row:104, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:104, column:107,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:107,the value of plot_cost is         : 1.046493306446085 

 At row:104, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:104, column:108,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:108,the value of plot_cost is         : 1.0414631304404283 

 At row:104, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:104, column:109,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:109,the value of plot_cost is         : 1.0372410148372875 

 At row:104, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:104, column:110,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:110,the value of plot_cost is         : 1.0338269596366616 

 At row:104, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:104, column:111,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:111,the value of plot_cost is         : 1.0312209648385504 

 At row:104, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:104, column:112,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:112,the value of plot_cost is         : 1.0294230304429541 

 At row:104, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:104, column:113,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:113,the value of plot_cost is         : 1.0284331564498725 

 At row:104, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:104, column:114,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:114,the value of plot_cost is         : 1.0282513428593072 

 At row:104, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:104, column:115,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:115,the value of plot_cost is         : 1.028877589671257 

 At row:104, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:104, column:116,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:116,the value of plot_cost is         : 1.030311896885721 

 At row:104, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:104, column:117,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:117,the value of plot_cost is         : 1.0325542645027002 

 At row:104, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:104, column:118,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:118,the value of plot_cost is         : 1.0356046925221942 

 At row:104, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:104, column:119,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:119,the value of plot_cost is         : 1.0394631809442043 

 At row:104, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:104, column:120,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:120,the value of plot_cost is         : 1.0441297297687293 

 At row:104, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:104, column:121,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:121,the value of plot_cost is         : 1.049604338995769 

 At row:104, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:104, column:122,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:122,the value of plot_cost is         : 1.0558870086253236 

 At row:104, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:104, column:123,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:123,the value of plot_cost is         : 1.0629777386573929 

 At row:104, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:104, column:124,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:124,the value of plot_cost is         : 1.0708765290919786 

 At row:104, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:104, column:125,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:125,the value of plot_cost is         : 1.079583379929079 

 At row:104, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:104, column:126,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:126,the value of plot_cost is         : 1.0890982911686942 

 At row:104, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:104, column:127,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:127,the value of plot_cost is         : 1.0994212628108242 

 At row:104, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:104, column:128,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:128,the value of plot_cost is         : 1.110552294855469 

 At row:104, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:104, column:129,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:129,the value of plot_cost is         : 1.1224913873026299 

 At row:104, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:104, column:130,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:130,the value of plot_cost is         : 1.135238540152306 

 At row:104, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:104, column:131,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:131,the value of plot_cost is         : 1.1487937534044963 

 At row:104, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:104, column:132,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:132,the value of plot_cost is         : 1.1631570270592018 

 At row:104, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:104, column:133,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:133,the value of plot_cost is         : 1.1783283611164217 

 At row:104, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:104, column:134,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:134,the value of plot_cost is         : 1.1943077555761588 

 At row:104, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:104, column:135,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:135,the value of plot_cost is         : 1.2110952104384103 

 At row:104, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:104, column:136,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:136,the value of plot_cost is         : 1.2286907257031758 

 At row:104, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:104, column:137,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:137,the value of plot_cost is         : 1.2470943013704565 

 At row:104, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:104, column:138,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:138,the value of plot_cost is         : 1.2663059374402525 

 At row:104, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:104, column:139,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:139,the value of plot_cost is         : 1.2863256339125642 

 At row:104, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:104, column:140,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:140,the value of plot_cost is         : 1.3071533907873913 

 At row:104, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:104, column:141,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:141,the value of plot_cost is         : 1.3287892080647323 

 At row:104, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:104, column:142,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:142,the value of plot_cost is         : 1.3512330857445882 

 At row:104, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:104, column:143,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:143,the value of plot_cost is         : 1.37448502382696 

 At row:104, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:104, column:144,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:144,the value of plot_cost is         : 1.3985450223118474 

 At row:104, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:104, column:145,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:145,the value of plot_cost is         : 1.4234130811992498 

 At row:104, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:104, column:146,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:146,the value of plot_cost is         : 1.4490892004891662 

 At row:104, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:104, column:147,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:147,the value of plot_cost is         : 1.4755733801815978 

 At row:104, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:104, column:148,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:148,the value of plot_cost is         : 1.5028656202765442 

 At row:104, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:104, column:149,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:149,the value of plot_cost is         : 1.5309659207740072 

 At row:104, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:104, column:150,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:150,the value of plot_cost is         : 1.5598742816739852 

 At row:104, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:104, column:151,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:151,the value of plot_cost is         : 1.589590702976477 

 At row:104, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:104, column:152,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:152,the value of plot_cost is         : 1.6201151846814839 

 At row:104, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:104, column:153,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:153,the value of plot_cost is         : 1.651447726789006 

 At row:104, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:104, column:154,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:154,the value of plot_cost is         : 1.6835883292990452 

 At row:104, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:104, column:155,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:155,the value of plot_cost is         : 1.7165369922115985 

 At row:104, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:104, column:156,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:156,the value of plot_cost is         : 1.7502937155266658 

 At row:104, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:104, column:157,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:157,the value of plot_cost is         : 1.784858499244248 

 At row:104, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:104, column:158,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:158,the value of plot_cost is         : 1.8202313433643453 

 At row:104, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:104, column:159,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:159,the value of plot_cost is         : 1.8564122478869596 

 At row:104, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:104, column:160,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:160,the value of plot_cost is         : 1.8934012128120883 

 At row:104, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:104, column:161,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:161,the value of plot_cost is         : 1.9311982381397308 

 At row:104, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:104, column:162,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:162,the value of plot_cost is         : 1.9698033238698887 

 At row:104, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:104, column:163,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:163,the value of plot_cost is         : 2.0092164700025616 

 At row:104, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:104, column:164,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:164,the value of plot_cost is         : 2.0494376765377518 

 At row:104, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:104, column:165,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:165,the value of plot_cost is         : 2.0904669434754557 

 At row:104, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:104, column:166,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:166,the value of plot_cost is         : 2.132304270815674 

 At row:104, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:104, column:167,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:167,the value of plot_cost is         : 2.174949658558407 

 At row:104, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:104, column:168,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:168,the value of plot_cost is         : 2.218403106703655 

 At row:104, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:104, column:169,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:169,the value of plot_cost is         : 2.2626646152514205 

 At row:104, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:104, column:170,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:170,the value of plot_cost is         : 2.3077341842017 

 At row:104, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:104, column:171,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:171,the value of plot_cost is         : 2.353611813554494 

 At row:104, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:104, column:172,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:172,the value of plot_cost is         : 2.400297503309802 

 At row:104, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:104, column:173,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:173,the value of plot_cost is         : 2.4477912534676256 

 At row:104, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:104, column:174,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:174,the value of plot_cost is         : 2.496093064027967 

 At row:104, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:104, column:175,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:175,the value of plot_cost is         : 2.545202934990822 

 At row:104, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:104, column:176,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:176,the value of plot_cost is         : 2.5951208663561904 

 At row:104, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:104, column:177,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:177,the value of plot_cost is         : 2.6458468581240746 

 At row:104, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:104, column:178,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:178,the value of plot_cost is         : 2.6973809102944735 

 At row:104, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:104, column:179,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:179,the value of plot_cost is         : 2.7497230228673897 

 At row:104, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:104, column:180,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:180,the value of plot_cost is         : 2.802873195842821 

 At row:104, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:104, column:181,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:181,the value of plot_cost is         : 2.8568314292207653 

 At row:104, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:104, column:182,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:182,the value of plot_cost is         : 2.9115977230012238 

 At row:104, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:104, column:183,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:183,the value of plot_cost is         : 2.967172077184199 

 At row:104, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:104, column:184,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:184,the value of plot_cost is         : 3.0235544917696915 

 At row:104, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:104, column:185,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:185,the value of plot_cost is         : 3.0807449667576967 

 At row:104, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:104, column:186,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:186,the value of plot_cost is         : 3.1387435021482166 

 At row:104, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:104, column:187,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:187,the value of plot_cost is         : 3.1975500979412512 

 At row:104, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:104, column:188,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:188,the value of plot_cost is         : 3.257164754136801 

 At row:104, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:104, column:189,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:189,the value of plot_cost is         : 3.317587470734868 

 At row:104, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:104, column:190,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:190,the value of plot_cost is         : 3.37881824773545 

 At row:104, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:104, column:191,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:191,the value of plot_cost is         : 3.440857085138545 

 At row:104, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:104, column:192,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:192,the value of plot_cost is         : 3.5037039829441543 

 At row:104, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:104, column:193,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:193,the value of plot_cost is         : 3.56735894115228 

 At row:104, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:104, column:194,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:194,the value of plot_cost is         : 3.6318219597629238 

 At row:104, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:104, column:195,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:195,the value of plot_cost is         : 3.6970930387760803 

 At row:104, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:104, column:196,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:196,the value of plot_cost is         : 3.763172178191751 

 At row:104, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:104, column:197,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:197,the value of plot_cost is         : 3.8300593780099366 

 At row:104, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:104, column:198,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:198,the value of plot_cost is         : 3.8977546382306376 

 At row:104, column:199,the value of plot_t0 is           : 3.0
 At row:104, column:199,the value of plot_t1 is           : 1.0904522613065328
 At row:104, column:199,the value of plot_cost is         : 3.9662579588538547 

 At row:105, column:0,the value of plot_t0 is           : -1.0
 At row:105, column:0,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:0,the value of plot_cost is         : 5.931023350781189 

 At row:105, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:105, column:1,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:1,the value of plot_cost is         : 5.842208854754753 

 At row:105, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:105, column:2,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:2,the value of plot_cost is         : 5.754202419130832 

 At row:105, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:105, column:3,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:3,the value of plot_cost is         : 5.6670040439094285 

 At row:105, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:105, column:4,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:4,the value of plot_cost is         : 5.580613729090537 

 At row:105, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:105, column:5,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:5,the value of plot_cost is         : 5.495031474674163 

 At row:105, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:105, column:6,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:6,the value of plot_cost is         : 5.4102572806603035 

 At row:105, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:105, column:7,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:7,the value of plot_cost is         : 5.326291147048957 

 At row:105, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:105, column:8,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:8,the value of plot_cost is         : 5.24313307384013 

 At row:105, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:105, column:9,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:9,the value of plot_cost is         : 5.160783061033814 

 At row:105, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:105, column:10,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:10,the value of plot_cost is         : 5.079241108630016 

 At row:105, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:105, column:11,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:11,the value of plot_cost is         : 4.99850721662873 

 At row:105, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:105, column:12,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:12,the value of plot_cost is         : 4.918581385029962 

 At row:105, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:105, column:13,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:13,the value of plot_cost is         : 4.839463613833709 

 At row:105, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:105, column:14,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:14,the value of plot_cost is         : 4.761153903039968 

 At row:105, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:105, column:15,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:15,the value of plot_cost is         : 4.683652252648745 

 At row:105, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:105, column:16,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:16,the value of plot_cost is         : 4.606958662660035 

 At row:105, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:105, column:17,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:17,the value of plot_cost is         : 4.531073133073842 

 At row:105, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:105, column:18,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:18,the value of plot_cost is         : 4.455995663890164 

 At row:105, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:105, column:19,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:19,the value of plot_cost is         : 4.381726255108998 

 At row:105, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:105, column:20,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:20,the value of plot_cost is         : 4.308264906730352 

 At row:105, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:105, column:21,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:21,the value of plot_cost is         : 4.235611618754217 

 At row:105, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:105, column:22,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:22,the value of plot_cost is         : 4.163766391180599 

 At row:105, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:105, column:23,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:23,the value of plot_cost is         : 4.092729224009497 

 At row:105, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:105, column:24,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:24,the value of plot_cost is         : 4.022500117240909 

 At row:105, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:105, column:25,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:25,the value of plot_cost is         : 3.9530790708748356 

 At row:105, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:105, column:26,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:26,the value of plot_cost is         : 3.8844660849112764 

 At row:105, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:105, column:27,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:27,the value of plot_cost is         : 3.816661159350234 

 At row:105, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:105, column:28,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:28,the value of plot_cost is         : 3.7496642941917075 

 At row:105, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:105, column:29,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:29,the value of plot_cost is         : 3.683475489435694 

 At row:105, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:105, column:30,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:30,the value of plot_cost is         : 3.618094745082197 

 At row:105, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:105, column:31,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:31,the value of plot_cost is         : 3.5535220611312135 

 At row:105, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:105, column:32,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:32,the value of plot_cost is         : 3.489757437582747 

 At row:105, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:105, column:33,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:33,the value of plot_cost is         : 3.426800874436795 

 At row:105, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:105, column:34,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:34,the value of plot_cost is         : 3.3646523716933574 

 At row:105, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:105, column:35,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:35,the value of plot_cost is         : 3.303311929352435 

 At row:105, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:105, column:36,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:36,the value of plot_cost is         : 3.2427795474140275 

 At row:105, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:105, column:37,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:37,the value of plot_cost is         : 3.1830552258781357 

 At row:105, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:105, column:38,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:38,the value of plot_cost is         : 3.12413896474476 

 At row:105, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:105, column:39,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:39,the value of plot_cost is         : 3.0660307640138966 

 At row:105, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:105, column:40,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:40,the value of plot_cost is         : 3.008730623685551 

 At row:105, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:105, column:41,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:41,the value of plot_cost is         : 2.9522385437597185 

 At row:105, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:105, column:42,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:42,the value of plot_cost is         : 2.896554524236402 

 At row:105, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:105, column:43,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:43,the value of plot_cost is         : 2.841678565115602 

 At row:105, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:105, column:44,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:44,the value of plot_cost is         : 2.787610666397314 

 At row:105, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:105, column:45,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:45,the value of plot_cost is         : 2.734350828081544 

 At row:105, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:105, column:46,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:46,the value of plot_cost is         : 2.6818990501682873 

 At row:105, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:105, column:47,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:47,the value of plot_cost is         : 2.630255332657546 

 At row:105, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:105, column:48,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:48,the value of plot_cost is         : 2.579419675549321 

 At row:105, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:105, column:49,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:49,the value of plot_cost is         : 2.529392078843609 

 At row:105, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:105, column:50,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:50,the value of plot_cost is         : 2.4801725425404135 

 At row:105, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:105, column:51,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:51,the value of plot_cost is         : 2.431761066639732 

 At row:105, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:105, column:52,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:52,the value of plot_cost is         : 2.384157651141567 

 At row:105, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:105, column:53,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:53,the value of plot_cost is         : 2.3373622960459173 

 At row:105, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:105, column:54,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:54,the value of plot_cost is         : 2.2913750013527805 

 At row:105, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:105, column:55,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:55,the value of plot_cost is         : 2.246195767062161 

 At row:105, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:105, column:56,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:56,the value of plot_cost is         : 2.201824593174055 

 At row:105, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:105, column:57,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:57,the value of plot_cost is         : 2.158261479688465 

 At row:105, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:105, column:58,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:58,the value of plot_cost is         : 2.1155064266053905 

 At row:105, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:105, column:59,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:59,the value of plot_cost is         : 2.0735594339248298 

 At row:105, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:105, column:60,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:60,the value of plot_cost is         : 2.032420501646785 

 At row:105, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:105, column:61,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:61,the value of plot_cost is         : 1.992089629771255 

 At row:105, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:105, column:62,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:62,the value of plot_cost is         : 1.9525668182982407 

 At row:105, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:105, column:63,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:63,the value of plot_cost is         : 1.9138520672277413 

 At row:105, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:105, column:64,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:64,the value of plot_cost is         : 1.875945376559756 

 At row:105, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:105, column:65,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:65,the value of plot_cost is         : 1.8388467462942866 

 At row:105, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:105, column:66,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:66,the value of plot_cost is         : 1.8025561764313316 

 At row:105, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:105, column:67,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:67,the value of plot_cost is         : 1.767073666970893 

 At row:105, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:105, column:68,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:68,the value of plot_cost is         : 1.7323992179129692 

 At row:105, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:105, column:69,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:69,the value of plot_cost is         : 1.6985328292575597 

 At row:105, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:105, column:70,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:70,the value of plot_cost is         : 1.6654745010046657 

 At row:105, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:105, column:71,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:71,the value of plot_cost is         : 1.633224233154286 

 At row:105, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:105, column:72,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:72,the value of plot_cost is         : 1.6017820257064226 

 At row:105, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:105, column:73,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:73,the value of plot_cost is         : 1.5711478786610744 

 At row:105, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:105, column:74,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:74,the value of plot_cost is         : 1.54132179201824 

 At row:105, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:105, column:75,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:75,the value of plot_cost is         : 1.5123037657779217 

 At row:105, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:105, column:76,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:76,the value of plot_cost is         : 1.4840937999401176 

 At row:105, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:105, column:77,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:77,the value of plot_cost is         : 1.4566918945048295 

 At row:105, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:105, column:78,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:78,the value of plot_cost is         : 1.4300980494720568 

 At row:105, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:105, column:79,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:79,the value of plot_cost is         : 1.4043122648417978 

 At row:105, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:105, column:80,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:80,the value of plot_cost is         : 1.3793345406140551 

 At row:105, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:105, column:81,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:81,the value of plot_cost is         : 1.355164876788826 

 At row:105, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:105, column:82,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:82,the value of plot_cost is         : 1.3318032733661136 

 At row:105, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:105, column:83,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:83,the value of plot_cost is         : 1.3092497303459163 

 At row:105, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:105, column:84,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:84,the value of plot_cost is         : 1.2875042477282328 

 At row:105, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:105, column:85,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:85,the value of plot_cost is         : 1.266566825513065 

 At row:105, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:105, column:86,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:86,the value of plot_cost is         : 1.246437463700412 

 At row:105, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:105, column:87,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:87,the value of plot_cost is         : 1.2271161622902749 

 At row:105, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:105, column:88,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:88,the value of plot_cost is         : 1.208602921282653 

 At row:105, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:105, column:89,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:89,the value of plot_cost is         : 1.190897740677545 

 At row:105, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:105, column:90,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:90,the value of plot_cost is         : 1.1740006204749527 

 At row:105, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:105, column:91,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:91,the value of plot_cost is         : 1.1579115606748749 

 At row:105, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:105, column:92,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:92,the value of plot_cost is         : 1.1426305612773133 

 At row:105, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:105, column:93,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:93,the value of plot_cost is         : 1.1281576222822667 

 At row:105, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:105, column:94,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:94,the value of plot_cost is         : 1.1144927436897343 

 At row:105, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:105, column:95,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:95,the value of plot_cost is         : 1.1016359254997174 

 At row:105, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:105, column:96,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:96,the value of plot_cost is         : 1.0895871677122153 

 At row:105, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:105, column:97,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:97,the value of plot_cost is         : 1.078346470327229 

 At row:105, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:105, column:98,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:98,the value of plot_cost is         : 1.0679138333447582 

 At row:105, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:105, column:99,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:99,the value of plot_cost is         : 1.058289256764801 

 At row:105, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:105, column:100,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:100,the value of plot_cost is         : 1.0494727405873596 

 At row:105, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:105, column:101,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:101,the value of plot_cost is         : 1.0414642848124327 

 At row:105, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:105, column:102,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:102,the value of plot_cost is         : 1.034263889440022 

 At row:105, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:105, column:103,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:103,the value of plot_cost is         : 1.0278715544701262 

 At row:105, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:105, column:104,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:104,the value of plot_cost is         : 1.0222872799027447 

 At row:105, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:105, column:105,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:105,the value of plot_cost is         : 1.0175110657378788 

 At row:105, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:105, column:106,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:106,the value of plot_cost is         : 1.0135429119755273 

 At row:105, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:105, column:107,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:107,the value of plot_cost is         : 1.0103828186156918 

 At row:105, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:105, column:108,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:108,the value of plot_cost is         : 1.0080307856583717 

 At row:105, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:105, column:109,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:109,the value of plot_cost is         : 1.0064868131035656 

 At row:105, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:105, column:110,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:110,the value of plot_cost is         : 1.0057509009512744 

 At row:105, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:105, column:111,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:111,the value of plot_cost is         : 1.0058230492014992 

 At row:105, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:105, column:112,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:112,the value of plot_cost is         : 1.0067032578542392 

 At row:105, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:105, column:113,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:113,the value of plot_cost is         : 1.0083915269094943 

 At row:105, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:105, column:114,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:114,the value of plot_cost is         : 1.0108878563672639 

 At row:105, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:105, column:115,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:115,the value of plot_cost is         : 1.014192246227548 

 At row:105, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:105, column:116,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:116,the value of plot_cost is         : 1.0183046964903482 

 At row:105, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:105, column:117,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:117,the value of plot_cost is         : 1.0232252071556636 

 At row:105, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:105, column:118,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:118,the value of plot_cost is         : 1.0289537782234943 

 At row:105, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:105, column:119,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:119,the value of plot_cost is         : 1.0354904096938389 

 At row:105, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:105, column:120,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:120,the value of plot_cost is         : 1.0428351015666992 

 At row:105, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:105, column:121,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:121,the value of plot_cost is         : 1.0509878538420745 

 At row:105, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:105, column:122,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:122,the value of plot_cost is         : 1.0599486665199653 

 At row:105, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:105, column:123,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:123,the value of plot_cost is         : 1.0697175396003713 

 At row:105, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:105, column:124,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:124,the value of plot_cost is         : 1.0802944730832917 

 At row:105, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:105, column:125,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:125,the value of plot_cost is         : 1.0916794669687273 

 At row:105, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:105, column:126,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:126,the value of plot_cost is         : 1.1038725212566778 

 At row:105, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:105, column:127,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:127,the value of plot_cost is         : 1.116873635947144 

 At row:105, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:105, column:128,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:128,the value of plot_cost is         : 1.1306828110401255 

 At row:105, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:105, column:129,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:129,the value of plot_cost is         : 1.1453000465356211 

 At row:105, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:105, column:130,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:130,the value of plot_cost is         : 1.1607253424336326 

 At row:105, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:105, column:131,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:131,the value of plot_cost is         : 1.1769586987341585 

 At row:105, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:105, column:132,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:132,the value of plot_cost is         : 1.1940001154372002 

 At row:105, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:105, column:133,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:133,the value of plot_cost is         : 1.211849592542757 

 At row:105, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:105, column:134,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:134,the value of plot_cost is         : 1.2305071300508288 

 At row:105, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:105, column:135,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:135,the value of plot_cost is         : 1.249972727961415 

 At row:105, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:105, column:136,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:136,the value of plot_cost is         : 1.2702463862745166 

 At row:105, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:105, column:137,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:137,the value of plot_cost is         : 1.2913281049901337 

 At row:105, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:105, column:138,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:138,the value of plot_cost is         : 1.3132178841082658 

 At row:105, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:105, column:139,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:139,the value of plot_cost is         : 1.335915723628912 

 At row:105, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:105, column:140,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:140,the value of plot_cost is         : 1.3594216235520749 

 At row:105, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:105, column:141,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:141,the value of plot_cost is         : 1.3837355838777516 

 At row:105, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:105, column:142,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:142,the value of plot_cost is         : 1.408857604605944 

 At row:105, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:105, column:143,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:143,the value of plot_cost is         : 1.4347876857366517 

 At row:105, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:105, column:144,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:144,the value of plot_cost is         : 1.4615258272698746 

 At row:105, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:105, column:145,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:145,the value of plot_cost is         : 1.4890720292056112 

 At row:105, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:105, column:146,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:146,the value of plot_cost is         : 1.5174262915438637 

 At row:105, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:105, column:147,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:147,the value of plot_cost is         : 1.5465886142846315 

 At row:105, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:105, column:148,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:148,the value of plot_cost is         : 1.5765589974279144 

 At row:105, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:105, column:149,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:149,the value of plot_cost is         : 1.607337440973712 

 At row:105, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:105, column:150,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:150,the value of plot_cost is         : 1.6389239449220256 

 At row:105, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:105, column:151,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:151,the value of plot_cost is         : 1.6713185092728535 

 At row:105, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:105, column:152,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:152,the value of plot_cost is         : 1.7045211340261963 

 At row:105, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:105, column:153,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:153,the value of plot_cost is         : 1.738531819182055 

 At row:105, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:105, column:154,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:154,the value of plot_cost is         : 1.7733505647404288 

 At row:105, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:105, column:155,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:155,the value of plot_cost is         : 1.8089773707013166 

 At row:105, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:105, column:156,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:156,the value of plot_cost is         : 1.8454122370647204 

 At row:105, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:105, column:157,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:157,the value of plot_cost is         : 1.8826551638306384 

 At row:105, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:105, column:158,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:158,the value of plot_cost is         : 1.9207061509990724 

 At row:105, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:105, column:159,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:159,the value of plot_cost is         : 1.9595651985700206 

 At row:105, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:105, column:160,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:160,the value of plot_cost is         : 1.999232306543485 

 At row:105, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:105, column:161,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:161,the value of plot_cost is         : 2.039707474919464 

 At row:105, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:105, column:162,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:162,the value of plot_cost is         : 2.0809907036979576 

 At row:105, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:105, column:163,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:163,the value of plot_cost is         : 2.123081992878967 

 At row:105, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:105, column:164,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:164,the value of plot_cost is         : 2.1659813424624916 

 At row:105, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:105, column:165,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:165,the value of plot_cost is         : 2.2096887524485305 

 At row:105, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:105, column:166,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:166,the value of plot_cost is         : 2.2542042228370853 

 At row:105, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:105, column:167,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:167,the value of plot_cost is         : 2.2995277536281535 

 At row:105, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:105, column:168,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:168,the value of plot_cost is         : 2.3456593448217387 

 At row:105, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:105, column:169,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:169,the value of plot_cost is         : 2.3925989964178385 

 At row:105, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:105, column:170,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:170,the value of plot_cost is         : 2.440346708416454 

 At row:105, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:105, column:171,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:171,the value of plot_cost is         : 2.4889024808175835 

 At row:105, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:105, column:172,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:172,the value of plot_cost is         : 2.5382663136212273 

 At row:105, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:105, column:173,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:173,the value of plot_cost is         : 2.5884382068273877 

 At row:105, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:105, column:174,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:174,the value of plot_cost is         : 2.639418160436063 

 At row:105, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:105, column:175,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:175,the value of plot_cost is         : 2.6912061744472533 

 At row:105, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:105, column:176,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:176,the value of plot_cost is         : 2.7438022488609595 

 At row:105, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:105, column:177,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:177,the value of plot_cost is         : 2.797206383677179 

 At row:105, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:105, column:178,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:178,the value of plot_cost is         : 2.8514185788959137 

 At row:105, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:105, column:179,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:179,the value of plot_cost is         : 2.9064388345171643 

 At row:105, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:105, column:180,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:180,the value of plot_cost is         : 2.9622671505409306 

 At row:105, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:105, column:181,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:181,the value of plot_cost is         : 3.0189035269672124 

 At row:105, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:105, column:182,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:182,the value of plot_cost is         : 3.076347963796006 

 At row:105, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:105, column:183,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:183,the value of plot_cost is         : 3.134600461027317 

 At row:105, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:105, column:184,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:184,the value of plot_cost is         : 3.1936610186611443 

 At row:105, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:105, column:185,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:185,the value of plot_cost is         : 3.253529636697486 

 At row:105, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:105, column:186,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:186,the value of plot_cost is         : 3.314206315136341 

 At row:105, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:105, column:187,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:187,the value of plot_cost is         : 3.3756910539777114 

 At row:105, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:105, column:188,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:188,the value of plot_cost is         : 3.437983853221598 

 At row:105, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:105, column:189,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:189,the value of plot_cost is         : 3.5010847128680003 

 At row:105, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:105, column:190,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:190,the value of plot_cost is         : 3.5649936329169174 

 At row:105, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:105, column:191,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:191,the value of plot_cost is         : 3.629710613368348 

 At row:105, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:105, column:192,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:192,the value of plot_cost is         : 3.6952356542222944 

 At row:105, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:105, column:193,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:193,the value of plot_cost is         : 3.761568755478756 

 At row:105, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:105, column:194,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:194,the value of plot_cost is         : 3.828709917137734 

 At row:105, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:105, column:195,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:195,the value of plot_cost is         : 3.896659139199226 

 At row:105, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:105, column:196,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:196,the value of plot_cost is         : 3.9654164216632326 

 At row:105, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:105, column:197,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:197,the value of plot_cost is         : 4.034981764529755 

 At row:105, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:105, column:198,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:198,the value of plot_cost is         : 4.10535516779879 

 At row:105, column:199,the value of plot_t0 is           : 3.0
 At row:105, column:199,the value of plot_t1 is           : 1.1105527638190953
 At row:105, column:199,the value of plot_cost is         : 4.176536631470344 

 At row:106, column:0,the value of plot_t0 is           : -1.0
 At row:106, column:0,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:0,the value of plot_cost is         : 5.620934211618034 

 At row:106, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:106, column:1,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:1,the value of plot_cost is         : 5.534797858639935 

 At row:106, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:106, column:2,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:2,the value of plot_cost is         : 5.449469566064351 

 At row:106, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:106, column:3,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:3,the value of plot_cost is         : 5.364949333891282 

 At row:106, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:106, column:4,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:4,the value of plot_cost is         : 5.281237162120727 

 At row:106, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:106, column:5,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:5,the value of plot_cost is         : 5.198333050752688 

 At row:106, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:106, column:6,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:6,the value of plot_cost is         : 5.116236999787165 

 At row:106, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:106, column:7,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:7,the value of plot_cost is         : 5.034949009224156 

 At row:106, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:106, column:8,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:8,the value of plot_cost is         : 4.954469079063661 

 At row:106, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:106, column:9,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:9,the value of plot_cost is         : 4.874797209305683 

 At row:106, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:106, column:10,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:10,the value of plot_cost is         : 4.795933399950219 

 At row:106, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:106, column:11,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:11,the value of plot_cost is         : 4.71787765099727 

 At row:106, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:106, column:12,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:12,the value of plot_cost is         : 4.6406299624468375 

 At row:106, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:106, column:13,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:13,the value of plot_cost is         : 4.564190334298918 

 At row:106, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:106, column:14,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:14,the value of plot_cost is         : 4.488558766553515 

 At row:106, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:106, column:15,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:15,the value of plot_cost is         : 4.413735259210627 

 At row:106, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:106, column:16,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:16,the value of plot_cost is         : 4.339719812270254 

 At row:106, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:106, column:17,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:17,the value of plot_cost is         : 4.2665124257323965 

 At row:106, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:106, column:18,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:18,the value of plot_cost is         : 4.194113099597054 

 At row:106, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:106, column:19,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:19,the value of plot_cost is         : 4.122521833864225 

 At row:106, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:106, column:20,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:20,the value of plot_cost is         : 4.051738628533912 

 At row:106, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:106, column:21,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:21,the value of plot_cost is         : 3.9817634836061164 

 At row:106, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:106, column:22,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:22,the value of plot_cost is         : 3.9125963990808317 

 At row:106, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:106, column:23,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:23,the value of plot_cost is         : 3.844237374958065 

 At row:106, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:106, column:24,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:24,the value of plot_cost is         : 3.776686411237812 

 At row:106, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:106, column:25,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:25,the value of plot_cost is         : 3.7099435079200753 

 At row:106, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:106, column:26,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:26,the value of plot_cost is         : 3.644008665004854 

 At row:106, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:106, column:27,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:27,the value of plot_cost is         : 3.578881882492146 

 At row:106, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:106, column:28,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:28,the value of plot_cost is         : 3.5145631603819543 

 At row:106, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:106, column:29,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:29,the value of plot_cost is         : 3.4510524986742768 

 At row:106, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:106, column:30,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:30,the value of plot_cost is         : 3.3883498973691153 

 At row:106, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:106, column:31,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:31,the value of plot_cost is         : 3.3264553564664694 

 At row:106, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:106, column:32,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:32,the value of plot_cost is         : 3.265368875966336 

 At row:106, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:106, column:33,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:33,the value of plot_cost is         : 3.2050904558687208 

 At row:106, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:106, column:34,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:34,the value of plot_cost is         : 3.145620096173618 

 At row:106, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:106, column:35,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:35,the value of plot_cost is         : 3.0869577968810322 

 At row:106, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:106, column:36,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:36,the value of plot_cost is         : 3.0291035579909615 

 At row:106, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:106, column:37,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:37,the value of plot_cost is         : 2.972057379503404 

 At row:106, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:106, column:38,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:38,the value of plot_cost is         : 2.9158192614183642 

 At row:106, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:106, column:39,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:39,the value of plot_cost is         : 2.8603892037358367 

 At row:106, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:106, column:40,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:40,the value of plot_cost is         : 2.805767206455827 

 At row:106, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:106, column:41,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:41,the value of plot_cost is         : 2.751953269578331 

 At row:106, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:106, column:42,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:42,the value of plot_cost is         : 2.6989473931033494 

 At row:106, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:106, column:43,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:43,the value of plot_cost is         : 2.6467495770308846 

 At row:106, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:106, column:44,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:44,the value of plot_cost is         : 2.595359821360933 

 At row:106, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:106, column:45,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:45,the value of plot_cost is         : 2.5447781260934983 

 At row:106, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:106, column:46,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:46,the value of plot_cost is         : 2.4950044912285785 

 At row:106, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:106, column:47,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:47,the value of plot_cost is         : 2.4460389167661716 

 At row:106, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:106, column:48,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:48,the value of plot_cost is         : 2.3978814027062825 

 At row:106, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:106, column:49,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:49,the value of plot_cost is         : 2.3505319490489067 

 At row:106, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:106, column:50,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:50,the value of plot_cost is         : 2.3039905557940465 

 At row:106, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:106, column:51,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:51,the value of plot_cost is         : 2.258257222941702 

 At row:106, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:106, column:52,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:52,the value of plot_cost is         : 2.2133319504918716 

 At row:106, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:106, column:53,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:53,the value of plot_cost is         : 2.1692147384445573 

 At row:106, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:106, column:54,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:54,the value of plot_cost is         : 2.1259055867997567 

 At row:106, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:106, column:55,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:55,the value of plot_cost is         : 2.083404495557472 

 At row:106, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:106, column:56,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:56,the value of plot_cost is         : 2.0417114647177037 

 At row:106, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:106, column:57,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:57,the value of plot_cost is         : 2.000826494280448 

 At row:106, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:106, column:58,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:58,the value of plot_cost is         : 1.9607495842457094 

 At row:106, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:106, column:59,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:59,the value of plot_cost is         : 1.9214807346134843 

 At row:106, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:106, column:60,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:60,the value of plot_cost is         : 1.8830199453837757 

 At row:106, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:106, column:61,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:61,the value of plot_cost is         : 1.8453672165565822 

 At row:106, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:106, column:62,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:62,the value of plot_cost is         : 1.8085225481319025 

 At row:106, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:106, column:63,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:63,the value of plot_cost is         : 1.7724859401097386 

 At row:106, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:106, column:64,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:64,the value of plot_cost is         : 1.7372573924900891 

 At row:106, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:106, column:65,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:65,the value of plot_cost is         : 1.7028369052729557 

 At row:106, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:106, column:66,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:66,the value of plot_cost is         : 1.6692244784583377 

 At row:106, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:106, column:67,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:67,the value of plot_cost is         : 1.6364201120462334 

 At row:106, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:106, column:68,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:68,the value of plot_cost is         : 1.6044238060366451 

 At row:106, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:106, column:69,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:69,the value of plot_cost is         : 1.5732355604295716 

 At row:106, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:106, column:70,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:70,the value of plot_cost is         : 1.5428553752250131 

 At row:106, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:106, column:71,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:71,the value of plot_cost is         : 1.51328325042297 

 At row:106, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:106, column:72,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:72,the value of plot_cost is         : 1.4845191860234417 

 At row:106, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:106, column:73,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:73,the value of plot_cost is         : 1.456563182026429 

 At row:106, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:106, column:74,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:74,the value of plot_cost is         : 1.4294152384319303 

 At row:106, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:106, column:75,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:75,the value of plot_cost is         : 1.4030753552399478 

 At row:106, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:106, column:76,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:76,the value of plot_cost is         : 1.3775435324504803 

 At row:106, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:106, column:77,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:77,the value of plot_cost is         : 1.352819770063527 

 At row:106, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:106, column:78,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:78,the value of plot_cost is         : 1.3289040680790891 

 At row:106, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:106, column:79,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:79,the value of plot_cost is         : 1.3057964264971667 

 At row:106, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:106, column:80,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:80,the value of plot_cost is         : 1.2834968453177595 

 At row:106, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:106, column:81,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:81,the value of plot_cost is         : 1.2620053245408678 

 At row:106, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:106, column:82,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:82,the value of plot_cost is         : 1.2413218641664898 

 At row:106, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:106, column:83,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:83,the value of plot_cost is         : 1.2214464641946272 

 At row:106, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:106, column:84,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:84,the value of plot_cost is         : 1.2023791246252804 

 At row:106, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:106, column:85,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:85,the value of plot_cost is         : 1.1841198454584487 

 At row:106, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:106, column:86,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:86,the value of plot_cost is         : 1.166668626694132 

 At row:106, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:106, column:87,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:87,the value of plot_cost is         : 1.1500254683323299 

 At row:106, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:106, column:88,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:88,the value of plot_cost is         : 1.134190370373043 

 At row:106, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:106, column:89,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:89,the value of plot_cost is         : 1.1191633328162716 

 At row:106, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:106, column:90,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:90,the value of plot_cost is         : 1.104944355662015 

 At row:106, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:106, column:91,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:91,the value of plot_cost is         : 1.0915334389102738 

 At row:106, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:106, column:92,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:92,the value of plot_cost is         : 1.0789305825610471 

 At row:106, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:106, column:93,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:93,the value of plot_cost is         : 1.0671357866143354 

 At row:106, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:106, column:94,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:94,the value of plot_cost is         : 1.0561490510701395 

 At row:106, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:106, column:95,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:95,the value of plot_cost is         : 1.0459703759284584 

 At row:106, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:106, column:96,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:96,the value of plot_cost is         : 1.0365997611892925 

 At row:106, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:106, column:97,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:97,the value of plot_cost is         : 1.0280372068526413 

 At row:106, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:106, column:98,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:98,the value of plot_cost is         : 1.0202827129185053 

 At row:106, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:106, column:99,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:99,the value of plot_cost is         : 1.0133362793868843 

 At row:106, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:106, column:100,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:100,the value of plot_cost is         : 1.007197906257779 

 At row:106, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:106, column:101,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:101,the value of plot_cost is         : 1.0018675935311885 

 At row:106, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:106, column:102,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:102,the value of plot_cost is         : 0.9973453412071127 

 At row:106, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:106, column:103,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:103,the value of plot_cost is         : 0.9936311492855522 

 At row:106, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:106, column:104,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:104,the value of plot_cost is         : 0.9907250177665071 

 At row:106, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:106, column:105,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:105,the value of plot_cost is         : 0.9886269466499767 

 At row:106, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:106, column:106,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:106,the value of plot_cost is         : 0.9873369359359617 

 At row:106, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:106, column:107,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:107,the value of plot_cost is         : 0.9868549856244616 

 At row:106, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:106, column:108,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:108,the value of plot_cost is         : 0.9871810957154766 

 At row:106, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:106, column:109,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:109,the value of plot_cost is         : 0.9883152662090064 

 At row:106, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:106, column:110,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:110,the value of plot_cost is         : 0.9902574971050517 

 At row:106, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:106, column:111,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:111,the value of plot_cost is         : 0.9930077884036121 

 At row:106, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:106, column:112,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:112,the value of plot_cost is         : 0.9965661401046871 

 At row:106, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:106, column:113,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:113,the value of plot_cost is         : 1.000932552208278 

 At row:106, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:106, column:114,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:114,the value of plot_cost is         : 1.0061070247143835 

 At row:106, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:106, column:115,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:115,the value of plot_cost is         : 1.012089557623004 

 At row:106, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:106, column:116,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:116,the value of plot_cost is         : 1.0188801509341396 

 At row:106, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:106, column:117,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:117,the value of plot_cost is         : 1.0264788046477906 

 At row:106, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:106, column:118,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:118,the value of plot_cost is         : 1.0348855187639565 

 At row:106, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:106, column:119,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:119,the value of plot_cost is         : 1.0441002932826373 

 At row:106, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:106, column:120,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:120,the value of plot_cost is         : 1.0541231282038332 

 At row:106, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:106, column:121,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:121,the value of plot_cost is         : 1.0649540235275443 

 At row:106, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:106, column:122,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:122,the value of plot_cost is         : 1.0765929792537705 

 At row:106, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:106, column:123,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:123,the value of plot_cost is         : 1.0890399953825123 

 At row:106, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:106, column:124,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:124,the value of plot_cost is         : 1.1022950719137687 

 At row:106, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:106, column:125,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:125,the value of plot_cost is         : 1.11635820884754 

 At row:106, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:106, column:126,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:126,the value of plot_cost is         : 1.1312294061838262 

 At row:106, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:106, column:127,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:127,the value of plot_cost is         : 1.1469086639226285 

 At row:106, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:106, column:128,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:128,the value of plot_cost is         : 1.1633959820639452 

 At row:106, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:106, column:129,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:129,the value of plot_cost is         : 1.180691360607777 

 At row:106, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:106, column:130,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:130,the value of plot_cost is         : 1.1987947995541237 

 At row:106, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:106, column:131,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:131,the value of plot_cost is         : 1.2177062989029857 

 At row:106, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:106, column:132,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:132,the value of plot_cost is         : 1.2374258586543625 

 At row:106, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:106, column:133,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:133,the value of plot_cost is         : 1.2579534788082556 

 At row:106, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:106, column:134,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:134,the value of plot_cost is         : 1.2792891593646627 

 At row:106, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:106, column:135,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:135,the value of plot_cost is         : 1.3014329003235847 

 At row:106, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:106, column:136,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:136,the value of plot_cost is         : 1.3243847016850219 

 At row:106, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:106, column:137,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:137,the value of plot_cost is         : 1.3481445634489753 

 At row:106, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:106, column:138,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:138,the value of plot_cost is         : 1.372712485615443 

 At row:106, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:106, column:139,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:139,the value of plot_cost is         : 1.3980884681844257 

 At row:106, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:106, column:140,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:140,the value of plot_cost is         : 1.4242725111559231 

 At row:106, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:106, column:141,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:141,the value of plot_cost is         : 1.4512646145299353 

 At row:106, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:106, column:142,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:142,the value of plot_cost is         : 1.4790647783064632 

 At row:106, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:106, column:143,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:143,the value of plot_cost is         : 1.5076730024855078 

 At row:106, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:106, column:144,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:144,the value of plot_cost is         : 1.5370892870670656 

 At row:106, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:106, column:145,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:145,the value of plot_cost is         : 1.567313632051138 

 At row:106, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:106, column:146,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:146,the value of plot_cost is         : 1.598346037437726 

 At row:106, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:106, column:147,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:147,the value of plot_cost is         : 1.6301865032268306 

 At row:106, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:106, column:148,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:148,the value of plot_cost is         : 1.6628350294184495 

 At row:106, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:106, column:149,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:149,the value of plot_cost is         : 1.6962916160125825 

 At row:106, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:106, column:150,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:150,the value of plot_cost is         : 1.7305562630092308 

 At row:106, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:106, column:151,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:151,the value of plot_cost is         : 1.765628970408395 

 At row:106, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:106, column:152,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:152,the value of plot_cost is         : 1.8015097382100729 

 At row:106, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:106, column:153,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:153,the value of plot_cost is         : 1.8381985664142682 

 At row:106, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:106, column:154,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:154,the value of plot_cost is         : 1.875695455020977 

 At row:106, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:106, column:155,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:155,the value of plot_cost is         : 1.914000404030201 

 At row:106, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:106, column:156,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:156,the value of plot_cost is         : 1.9531134134419412 

 At row:106, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:106, column:157,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:157,the value of plot_cost is         : 1.9930344832561948 

 At row:106, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:106, column:158,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:158,the value of plot_cost is         : 2.033763613472965 

 At row:106, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:106, column:159,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:159,the value of plot_cost is         : 2.0753008040922487 

 At row:106, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:106, column:160,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:160,the value of plot_cost is         : 2.1176460551140477 

 At row:106, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:106, column:161,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:161,the value of plot_cost is         : 2.1607993665383627 

 At row:106, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:106, column:162,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:162,the value of plot_cost is         : 2.2047607383651915 

 At row:106, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:106, column:163,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:163,the value of plot_cost is         : 2.249530170594538 

 At row:106, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:106, column:164,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:164,the value of plot_cost is         : 2.295107663226397 

 At row:106, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:106, column:165,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:165,the value of plot_cost is         : 2.3414932162607722 

 At row:106, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:106, column:166,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:166,the value of plot_cost is         : 2.3886868296976633 

 At row:106, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:106, column:167,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:167,the value of plot_cost is         : 2.436688503537068 

 At row:106, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:106, column:168,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:168,the value of plot_cost is         : 2.4854982377789887 

 At row:106, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:106, column:169,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:169,the value of plot_cost is         : 2.535116032423423 

 At row:106, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:106, column:170,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:170,the value of plot_cost is         : 2.5855418874703733 

 At row:106, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:106, column:171,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:171,the value of plot_cost is         : 2.636775802919839 

 At row:106, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:106, column:172,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:172,the value of plot_cost is         : 2.6888177787718184 

 At row:106, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:106, column:173,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:173,the value of plot_cost is         : 2.7416678150263167 

 At row:106, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:106, column:174,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:174,the value of plot_cost is         : 2.7953259116833262 

 At row:106, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:106, column:175,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:175,the value of plot_cost is         : 2.8497920687428517 

 At row:106, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:106, column:176,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:176,the value of plot_cost is         : 2.9050662862048946 

 At row:106, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:106, column:177,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:177,the value of plot_cost is         : 2.961148564069449 

 At row:106, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:106, column:178,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:178,the value of plot_cost is         : 3.018038902336521 

 At row:106, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:106, column:179,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:179,the value of plot_cost is         : 3.0757373010061073 

 At row:106, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:106, column:180,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:180,the value of plot_cost is         : 3.134243760078207 

 At row:106, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:106, column:181,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:181,the value of plot_cost is         : 3.193558279552825 

 At row:106, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:106, column:182,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:182,the value of plot_cost is         : 3.2536808594299544 

 At row:106, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:106, column:183,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:183,the value of plot_cost is         : 3.3146114997096037 

 At row:106, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:106, column:184,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:184,the value of plot_cost is         : 3.3763502003917645 

 At row:106, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:106, column:185,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:185,the value of plot_cost is         : 3.4388969614764404 

 At row:106, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:106, column:186,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:186,the value of plot_cost is         : 3.502251782963634 

 At row:106, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:106, column:187,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:187,the value of plot_cost is         : 3.5664146648533395 

 At row:106, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:106, column:188,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:188,the value of plot_cost is         : 3.6313856071455626 

 At row:106, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:106, column:189,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:189,the value of plot_cost is         : 3.6971646098402986 

 At row:106, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:106, column:190,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:190,the value of plot_cost is         : 3.7637516729375506 

 At row:106, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:106, column:191,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:191,the value of plot_cost is         : 3.8311467964373187 

 At row:106, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:106, column:192,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:192,the value of plot_cost is         : 3.8993499803395997 

 At row:106, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:106, column:193,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:193,the value of plot_cost is         : 3.968361224644399 

 At row:106, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:106, column:194,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:194,the value of plot_cost is         : 4.038180529351711 

 At row:106, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:106, column:195,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:195,the value of plot_cost is         : 4.108807894461538 

 At row:106, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:106, column:196,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:196,the value of plot_cost is         : 4.180243319973882 

 At row:106, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:106, column:197,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:197,the value of plot_cost is         : 4.252486805888741 

 At row:106, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:106, column:198,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:198,the value of plot_cost is         : 4.325538352206113 

 At row:106, column:199,the value of plot_t0 is           : 3.0
 At row:106, column:199,the value of plot_t1 is           : 1.1306532663316582
 At row:106, column:199,the value of plot_cost is         : 4.3993979589259995 

 At row:107, column:0,the value of plot_t0 is           : -1.0
 At row:107, column:0,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:0,the value of plot_cost is         : 5.323427727294043 

 At row:107, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:107, column:1,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:1,the value of plot_cost is         : 5.2399695173642815 

 At row:107, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:107, column:2,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:2,the value of plot_cost is         : 5.157319367837032 

 At row:107, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:107, column:3,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:3,the value of plot_cost is         : 5.075477278712299 

 At row:107, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:107, column:4,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:4,the value of plot_cost is         : 4.994443249990079 

 At row:107, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:107, column:5,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:5,the value of plot_cost is         : 4.914217281670376 

 At row:107, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:107, column:6,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:6,the value of plot_cost is         : 4.834799373753189 

 At row:107, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:107, column:7,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:7,the value of plot_cost is         : 4.756189526238515 

 At row:107, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:107, column:8,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:8,the value of plot_cost is         : 4.678387739126358 

 At row:107, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:107, column:9,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:9,the value of plot_cost is         : 4.601394012416714 

 At row:107, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:107, column:10,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:10,the value of plot_cost is         : 4.5252083461095856 

 At row:107, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:107, column:11,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:11,the value of plot_cost is         : 4.449830740204973 

 At row:107, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:107, column:12,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:12,the value of plot_cost is         : 4.375261194702875 

 At row:107, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:107, column:13,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:13,the value of plot_cost is         : 4.301499709603293 

 At row:107, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:107, column:14,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:14,the value of plot_cost is         : 4.2285462849062245 

 At row:107, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:107, column:15,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:15,the value of plot_cost is         : 4.156400920611673 

 At row:107, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:107, column:16,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:16,the value of plot_cost is         : 4.085063616719636 

 At row:107, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:107, column:17,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:17,the value of plot_cost is         : 4.014534373230113 

 At row:107, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:107, column:18,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:18,the value of plot_cost is         : 3.9448131901431065 

 At row:107, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:107, column:19,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:19,the value of plot_cost is         : 3.8759000674586135 

 At row:107, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:107, column:20,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:20,the value of plot_cost is         : 3.807795005176637 

 At row:107, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:107, column:21,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:21,the value of plot_cost is         : 3.7404980032971755 

 At row:107, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:107, column:22,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:22,the value of plot_cost is         : 3.674009061820228 

 At row:107, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:107, column:23,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:23,the value of plot_cost is         : 3.608328180745797 

 At row:107, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:107, column:24,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:24,the value of plot_cost is         : 3.5434553600738794 

 At row:107, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:107, column:25,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:25,the value of plot_cost is         : 3.479390599804479 

 At row:107, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:107, column:26,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:26,the value of plot_cost is         : 3.4161338999375923 

 At row:107, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:107, column:27,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:27,the value of plot_cost is         : 3.3536852604732195 

 At row:107, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:107, column:28,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:28,the value of plot_cost is         : 3.2920446814113644 

 At row:107, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:107, column:29,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:29,the value of plot_cost is         : 3.231212162752022 

 At row:107, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:107, column:30,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:30,the value of plot_cost is         : 3.1711877044951966 

 At row:107, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:107, column:31,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:31,the value of plot_cost is         : 3.1119713066408865 

 At row:107, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:107, column:32,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:32,the value of plot_cost is         : 3.0535629691890898 

 At row:107, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:107, column:33,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:33,the value of plot_cost is         : 2.9959626921398095 

 At row:107, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:107, column:34,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:34,the value of plot_cost is         : 2.939170475493042 

 At row:107, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:107, column:35,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:35,the value of plot_cost is         : 2.883186319248792 

 At row:107, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:107, column:36,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:36,the value of plot_cost is         : 2.828010223407057 

 At row:107, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:107, column:37,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:37,the value of plot_cost is         : 2.773642187967837 

 At row:107, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:107, column:38,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:38,the value of plot_cost is         : 2.7200822129311315 

 At row:107, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:107, column:39,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:39,the value of plot_cost is         : 2.6673302982969402 

 At row:107, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:107, column:40,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:40,the value of plot_cost is         : 2.6153864440652654 

 At row:107, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:107, column:41,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:41,the value of plot_cost is         : 2.5642506502361058 

 At row:107, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:107, column:42,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:42,the value of plot_cost is         : 2.5139229168094603 

 At row:107, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:107, column:43,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:43,the value of plot_cost is         : 2.4644032437853305 

 At row:107, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:107, column:44,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:44,the value of plot_cost is         : 2.415691631163715 

 At row:107, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:107, column:45,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:45,the value of plot_cost is         : 2.3677880789446157 

 At row:107, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:107, column:46,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:46,the value of plot_cost is         : 2.3206925871280313 

 At row:107, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:107, column:47,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:47,the value of plot_cost is         : 2.274405155713961 

 At row:107, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:107, column:48,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:48,the value of plot_cost is         : 2.2289257847024073 

 At row:107, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:107, column:49,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:49,the value of plot_cost is         : 2.184254474093367 

 At row:107, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:107, column:50,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:50,the value of plot_cost is         : 2.140391223886843 

 At row:107, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:107, column:51,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:51,the value of plot_cost is         : 2.097336034082834 

 At row:107, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:107, column:52,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:52,the value of plot_cost is         : 2.055088904681339 

 At row:107, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:107, column:53,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:53,the value of plot_cost is         : 2.0136498356823607 

 At row:107, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:107, column:54,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:54,the value of plot_cost is         : 1.9730188270858957 

 At row:107, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:107, column:55,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:55,the value of plot_cost is         : 1.9331958788919472 

 At row:107, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:107, column:56,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:56,the value of plot_cost is         : 1.894180991100514 

 At row:107, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:107, column:57,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:57,the value of plot_cost is         : 1.8559741637115945 

 At row:107, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:107, column:58,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:58,the value of plot_cost is         : 1.8185753967251914 

 At row:107, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:107, column:59,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:59,the value of plot_cost is         : 1.7819846901413021 

 At row:107, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:107, column:60,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:60,the value of plot_cost is         : 1.7462020439599293 

 At row:107, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:107, column:61,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:61,the value of plot_cost is         : 1.7112274581810714 

 At row:107, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:107, column:62,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:62,the value of plot_cost is         : 1.6770609328047275 

 At row:107, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:107, column:63,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:63,the value of plot_cost is         : 1.6437024678308993 

 At row:107, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:107, column:64,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:64,the value of plot_cost is         : 1.6111520632595857 

 At row:107, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:107, column:65,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:65,the value of plot_cost is         : 1.5794097190907879 

 At row:107, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:107, column:66,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:66,the value of plot_cost is         : 1.5484754353245056 

 At row:107, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:107, column:67,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:67,the value of plot_cost is         : 1.5183492119607371 

 At row:107, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:107, column:68,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:68,the value of plot_cost is         : 1.489031048999485 

 At row:107, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:107, column:69,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:69,the value of plot_cost is         : 1.4605209464407463 

 At row:107, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:107, column:70,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:70,the value of plot_cost is         : 1.432818904284524 

 At row:107, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:107, column:71,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:71,the value of plot_cost is         : 1.405924922530817 

 At row:107, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:107, column:72,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:72,the value of plot_cost is         : 1.3798390011796242 

 At row:107, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:107, column:73,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:73,the value of plot_cost is         : 1.3545611402309472 

 At row:107, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:107, column:74,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:74,the value of plot_cost is         : 1.330091339684784 

 At row:107, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:107, column:75,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:75,the value of plot_cost is         : 1.3064295995411375 

 At row:107, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:107, column:76,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:76,the value of plot_cost is         : 1.2835759198000058 

 At row:107, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:107, column:77,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:77,the value of plot_cost is         : 1.2615303004613885 

 At row:107, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:107, column:78,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:78,the value of plot_cost is         : 1.2402927415252858 

 At row:107, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:107, column:79,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:79,the value of plot_cost is         : 1.2198632429916991 

 At row:107, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:107, column:80,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:80,the value of plot_cost is         : 1.200241804860628 

 At row:107, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:107, column:81,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:81,the value of plot_cost is         : 1.1814284271320716 

 At row:107, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:107, column:82,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:82,the value of plot_cost is         : 1.16342310980603 

 At row:107, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:107, column:83,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:83,the value of plot_cost is         : 1.1462258528825027 

 At row:107, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:107, column:84,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:84,the value of plot_cost is         : 1.1298366563614917 

 At row:107, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:107, column:85,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:85,the value of plot_cost is         : 1.114255520242996 

 At row:107, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:107, column:86,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:86,the value of plot_cost is         : 1.0994824445270146 

 At row:107, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:107, column:87,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:87,the value of plot_cost is         : 1.0855174292135485 

 At row:107, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:107, column:88,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:88,the value of plot_cost is         : 1.0723604743025967 

 At row:107, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:107, column:89,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:89,the value of plot_cost is         : 1.060011579794161 

 At row:107, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:107, column:90,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:90,the value of plot_cost is         : 1.0484707456882405 

 At row:107, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:107, column:91,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:91,the value of plot_cost is         : 1.037737971984835 

 At row:107, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:107, column:92,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:92,the value of plot_cost is         : 1.0278132586839441 

 At row:107, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:107, column:93,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:93,the value of plot_cost is         : 1.018696605785568 

 At row:107, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:107, column:94,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:94,the value of plot_cost is         : 1.0103880132897076 

 At row:107, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:107, column:95,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:95,the value of plot_cost is         : 1.0028874811963628 

 At row:107, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:107, column:96,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:96,the value of plot_cost is         : 0.9961950095055325 

 At row:107, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:107, column:97,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:97,the value of plot_cost is         : 0.9903105982172172 

 At row:107, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:107, column:98,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:98,the value of plot_cost is         : 0.9852342473314165 

 At row:107, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:107, column:99,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:99,the value of plot_cost is         : 0.9809659568481315 

 At row:107, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:107, column:100,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:100,the value of plot_cost is         : 0.9775057267673617 

 At row:107, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:107, column:101,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:101,the value of plot_cost is         : 0.9748535570891071 

 At row:107, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:107, column:102,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:102,the value of plot_cost is         : 0.9730094478133673 

 At row:107, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:107, column:103,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:103,the value of plot_cost is         : 0.9719733989401422 

 At row:107, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:107, column:104,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:104,the value of plot_cost is         : 0.9717454104694326 

 At row:107, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:107, column:105,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:105,the value of plot_cost is         : 0.9723254824012381 

 At row:107, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:107, column:106,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:106,the value of plot_cost is         : 0.9737136147355591 

 At row:107, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:107, column:107,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:107,the value of plot_cost is         : 0.975909807472395 

 At row:107, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:107, column:108,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:108,the value of plot_cost is         : 0.9789140606117451 

 At row:107, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:107, column:109,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:109,the value of plot_cost is         : 0.982726374153611 

 At row:107, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:107, column:110,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:110,the value of plot_cost is         : 0.9873467480979923 

 At row:107, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:107, column:111,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:111,the value of plot_cost is         : 0.992775182444888 

 At row:107, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:107, column:112,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:112,the value of plot_cost is         : 0.9990116771942993 

 At row:107, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:107, column:113,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:113,the value of plot_cost is         : 1.0060562323462252 

 At row:107, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:107, column:114,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:114,the value of plot_cost is         : 1.0139088479006662 

 At row:107, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:107, column:115,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:115,the value of plot_cost is         : 1.0225695238576231 

 At row:107, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:107, column:116,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:116,the value of plot_cost is         : 1.0320382602170943 

 At row:107, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:107, column:117,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:117,the value of plot_cost is         : 1.0423150569790813 

 At row:107, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:107, column:118,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:118,the value of plot_cost is         : 1.0533999141435826 

 At row:107, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:107, column:119,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:119,the value of plot_cost is         : 1.0652928317105987 

 At row:107, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:107, column:120,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:120,the value of plot_cost is         : 1.0779938096801311 

 At row:107, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:107, column:121,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:121,the value of plot_cost is         : 1.0915028480521778 

 At row:107, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:107, column:122,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:122,the value of plot_cost is         : 1.1058199468267393 

 At row:107, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:107, column:123,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:123,the value of plot_cost is         : 1.120945106003817 

 At row:107, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:107, column:124,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:124,the value of plot_cost is         : 1.1368783255834087 

 At row:107, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:107, column:125,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:125,the value of plot_cost is         : 1.1536196055655166 

 At row:107, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:107, column:126,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:126,the value of plot_cost is         : 1.1711689459501384 

 At row:107, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:107, column:127,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:127,the value of plot_cost is         : 1.1895263467372768 

 At row:107, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:107, column:128,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:128,the value of plot_cost is         : 1.2086918079269287 

 At row:107, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:107, column:129,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:129,the value of plot_cost is         : 1.228665329519096 

 At row:107, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:107, column:130,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:130,the value of plot_cost is         : 1.2494469115137792 

 At row:107, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:107, column:131,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:131,the value of plot_cost is         : 1.2710365539109765 

 At row:107, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:107, column:132,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:132,the value of plot_cost is         : 1.293434256710689 

 At row:107, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:107, column:133,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:133,the value of plot_cost is         : 1.3166400199129173 

 At row:107, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:107, column:134,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:134,the value of plot_cost is         : 1.3406538435176598 

 At row:107, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:107, column:135,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:135,the value of plot_cost is         : 1.3654757275249187 

 At row:107, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:107, column:136,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:136,the value of plot_cost is         : 1.3911056719346917 

 At row:107, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:107, column:137,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:137,the value of plot_cost is         : 1.417543676746981 

 At row:107, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:107, column:138,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:138,the value of plot_cost is         : 1.4447897419617834 

 At row:107, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:107, column:139,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:139,the value of plot_cost is         : 1.4728438675791014 

 At row:107, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:107, column:140,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:140,the value of plot_cost is         : 1.5017060535989357 

 At row:107, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:107, column:141,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:141,the value of plot_cost is         : 1.5313763000212837 

 At row:107, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:107, column:142,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:142,the value of plot_cost is         : 1.5618546068461476 

 At row:107, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:107, column:143,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:143,the value of plot_cost is         : 1.5931409740735265 

 At row:107, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:107, column:144,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:144,the value of plot_cost is         : 1.62523540170342 

 At row:107, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:107, column:145,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:145,the value of plot_cost is         : 1.6581378897358294 

 At row:107, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:107, column:146,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:146,the value of plot_cost is         : 1.6918484381707535 

 At row:107, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:107, column:147,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:147,the value of plot_cost is         : 1.7263670470081933 

 At row:107, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:107, column:148,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:148,the value of plot_cost is         : 1.7616937162481472 

 At row:107, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:107, column:149,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:149,the value of plot_cost is         : 1.7978284458906162 

 At row:107, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:107, column:150,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:150,the value of plot_cost is         : 1.834771235935601 

 At row:107, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:107, column:151,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:151,the value of plot_cost is         : 1.8725220863831007 

 At row:107, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:107, column:152,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:152,the value of plot_cost is         : 1.9110809972331144 

 At row:107, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:107, column:153,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:153,the value of plot_cost is         : 1.9504479684856446 

 At row:107, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:107, column:154,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:154,the value of plot_cost is         : 1.9906230001406888 

 At row:107, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:107, column:155,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:155,the value of plot_cost is         : 2.0316060921982495 

 At row:107, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:107, column:156,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:156,the value of plot_cost is         : 2.0733972446583255 

 At row:107, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:107, column:157,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:157,the value of plot_cost is         : 2.115996457520915 

 At row:107, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:107, column:158,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:158,the value of plot_cost is         : 2.1594037307860194 

 At row:107, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:107, column:159,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:159,the value of plot_cost is         : 2.2036190644536386 

 At row:107, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:107, column:160,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:160,the value of plot_cost is         : 2.248642458523775 

 At row:107, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:107, column:161,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:161,the value of plot_cost is         : 2.2944739129964256 

 At row:107, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:107, column:162,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:162,the value of plot_cost is         : 2.3411134278715906 

 At row:107, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:107, column:163,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:163,the value of plot_cost is         : 2.3885610031492712 

 At row:107, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:107, column:164,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:164,the value of plot_cost is         : 2.4368166388294665 

 At row:107, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:107, column:165,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:165,the value of plot_cost is         : 2.485880334912178 

 At row:107, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:107, column:166,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:166,the value of plot_cost is         : 2.535752091397405 

 At row:107, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:107, column:167,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:167,the value of plot_cost is         : 2.5864319082851455 

 At row:107, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:107, column:168,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:168,the value of plot_cost is         : 2.6379197855754004 

 At row:107, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:107, column:169,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:169,the value of plot_cost is         : 2.6902157232681714 

 At row:107, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:107, column:170,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:170,the value of plot_cost is         : 2.7433197213634575 

 At row:107, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:107, column:171,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:171,the value of plot_cost is         : 2.79723177986126 

 At row:107, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:107, column:172,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:172,the value of plot_cost is         : 2.851951898761575 

 At row:107, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:107, column:173,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:173,the value of plot_cost is         : 2.9074800780644074 

 At row:107, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:107, column:174,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:174,the value of plot_cost is         : 2.9638163177697527 

 At row:107, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:107, column:175,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:175,the value of plot_cost is         : 3.020960617877615 

 At row:107, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:107, column:176,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:176,the value of plot_cost is         : 3.0789129783879927 

 At row:107, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:107, column:177,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:177,the value of plot_cost is         : 3.1376733993008843 

 At row:107, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:107, column:178,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:178,the value of plot_cost is         : 3.197241880616291 

 At row:107, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:107, column:179,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:179,the value of plot_cost is         : 3.257618422334212 

 At row:107, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:107, column:180,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:180,the value of plot_cost is         : 3.3188030244546494 

 At row:107, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:107, column:181,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:181,the value of plot_cost is         : 3.380795686977603 

 At row:107, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:107, column:182,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:182,the value of plot_cost is         : 3.443596409903069 

 At row:107, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:107, column:183,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:183,the value of plot_cost is         : 3.5072051932310515 

 At row:107, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:107, column:184,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:184,the value of plot_cost is         : 3.5716220369615477 

 At row:107, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:107, column:185,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:185,the value of plot_cost is         : 3.636846941094561 

 At row:107, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:107, column:186,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:186,the value of plot_cost is         : 3.7028799056300903 

 At row:107, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:107, column:187,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:187,the value of plot_cost is         : 3.7697209305681323 

 At row:107, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:107, column:188,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:188,the value of plot_cost is         : 3.83737001590869 

 At row:107, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:107, column:189,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:189,the value of plot_cost is         : 3.9058271616517612 

 At row:107, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:107, column:190,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:190,the value of plot_cost is         : 3.97509236779735 

 At row:107, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:107, column:191,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:191,the value of plot_cost is         : 4.045165634345454 

 At row:107, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:107, column:192,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:192,the value of plot_cost is         : 4.11604696129607 

 At row:107, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:107, column:193,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:193,the value of plot_cost is         : 4.187736348649205 

 At row:107, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:107, column:194,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:194,the value of plot_cost is         : 4.260233796404851 

 At row:107, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:107, column:195,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:195,the value of plot_cost is         : 4.333539304563016 

 At row:107, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:107, column:196,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:196,the value of plot_cost is         : 4.407652873123697 

 At row:107, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:107, column:197,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:197,the value of plot_cost is         : 4.482574502086891 

 At row:107, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:107, column:198,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:198,the value of plot_cost is         : 4.558304191452597 

 At row:107, column:199,the value of plot_t0 is           : 3.0
 At row:107, column:199,the value of plot_t1 is           : 1.150753768844221
 At row:107, column:199,the value of plot_cost is         : 4.634841941220819 

 At row:108, column:0,the value of plot_t0 is           : -1.0
 At row:108, column:0,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:0,the value of plot_cost is         : 5.038503897809216 

 At row:108, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:108, column:1,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:1,the value of plot_cost is         : 4.957723830927789 

 At row:108, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:108, column:2,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:2,the value of plot_cost is         : 4.877751824448875 

 At row:108, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:108, column:3,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:3,the value of plot_cost is         : 4.798587878372479 

 At row:108, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:108, column:4,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:4,the value of plot_cost is         : 4.7202319926985945 

 At row:108, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:108, column:5,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:5,the value of plot_cost is         : 4.642684167427228 

 At row:108, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:108, column:6,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:6,the value of plot_cost is         : 4.565944402558375 

 At row:108, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:108, column:7,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:7,the value of plot_cost is         : 4.490012698092038 

 At row:108, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:108, column:8,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:8,the value of plot_cost is         : 4.414889054028215 

 At row:108, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:108, column:9,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:9,the value of plot_cost is         : 4.340573470366907 

 At row:108, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:108, column:10,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:10,the value of plot_cost is         : 4.267065947108116 

 At row:108, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:108, column:11,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:11,the value of plot_cost is         : 4.194366484251838 

 At row:108, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:108, column:12,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:12,the value of plot_cost is         : 4.122475081798076 

 At row:108, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:108, column:13,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:13,the value of plot_cost is         : 4.051391739746831 

 At row:108, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:108, column:14,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:14,the value of plot_cost is         : 3.9811164580980978 

 At row:108, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:108, column:15,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:15,the value of plot_cost is         : 3.911649236851882 

 At row:108, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:108, column:16,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:16,the value of plot_cost is         : 3.8429900760081797 

 At row:108, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:108, column:17,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:17,the value of plot_cost is         : 3.7751389755669935 

 At row:108, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:108, column:18,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:18,the value of plot_cost is         : 3.7080959355283225 

 At row:108, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:108, column:19,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:19,the value of plot_cost is         : 3.6418609558921653 

 At row:108, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:108, column:20,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:20,the value of plot_cost is         : 3.5764340366585246 

 At row:108, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:108, column:21,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:21,the value of plot_cost is         : 3.511815177827398 

 At row:108, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:108, column:22,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:22,the value of plot_cost is         : 3.448004379398787 

 At row:108, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:108, column:23,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:23,the value of plot_cost is         : 3.3850016413726913 

 At row:108, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:108, column:24,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:24,the value of plot_cost is         : 3.3228069637491098 

 At row:108, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:108, column:25,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:25,the value of plot_cost is         : 3.2614203465280447 

 At row:108, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:108, column:26,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:26,the value of plot_cost is         : 3.200841789709494 

 At row:108, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:108, column:27,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:27,the value of plot_cost is         : 3.141071293293458 

 At row:108, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:108, column:28,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:28,the value of plot_cost is         : 3.082108857279938 

 At row:108, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:108, column:29,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:29,the value of plot_cost is         : 3.023954481668932 

 At row:108, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:108, column:30,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:30,the value of plot_cost is         : 2.9666081664604413 

 At row:108, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:108, column:31,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:31,the value of plot_cost is         : 2.9100699116544657 

 At row:108, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:108, column:32,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:32,the value of plot_cost is         : 2.854339717251006 

 At row:108, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:108, column:33,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:33,the value of plot_cost is         : 2.7994175832500616 

 At row:108, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:108, column:34,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:34,the value of plot_cost is         : 2.7453035096516305 

 At row:108, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:108, column:35,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:35,the value of plot_cost is         : 2.691997496455716 

 At row:108, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:108, column:36,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:36,the value of plot_cost is         : 2.639499543662316 

 At row:108, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:108, column:37,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:37,the value of plot_cost is         : 2.5878096512714315 

 At row:108, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:108, column:38,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:38,the value of plot_cost is         : 2.5369278192830618 

 At row:108, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:108, column:39,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:39,the value of plot_cost is         : 2.486854047697207 

 At row:108, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:108, column:40,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:40,the value of plot_cost is         : 2.4375883365138673 

 At row:108, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:108, column:41,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:41,the value of plot_cost is         : 2.389130685733043 

 At row:108, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:108, column:42,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:42,the value of plot_cost is         : 2.341481095354734 

 At row:108, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:108, column:43,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:43,the value of plot_cost is         : 2.29463956537894 

 At row:108, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:108, column:44,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:44,the value of plot_cost is         : 2.24860609580566 

 At row:108, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:108, column:45,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:45,the value of plot_cost is         : 2.2033806866348966 

 At row:108, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:108, column:46,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:46,the value of plot_cost is         : 2.1589633378666475 

 At row:108, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:108, column:47,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:47,the value of plot_cost is         : 2.1153540495009135 

 At row:108, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:108, column:48,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:48,the value of plot_cost is         : 2.072552821537695 

 At row:108, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:108, column:49,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:49,the value of plot_cost is         : 2.0305596539769906 

 At row:108, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:108, column:50,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:50,the value of plot_cost is         : 1.9893745468188024 

 At row:108, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:108, column:51,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:51,the value of plot_cost is         : 1.948997500063129 

 At row:108, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:108, column:52,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:52,the value of plot_cost is         : 1.90942851370997 

 At row:108, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:108, column:53,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:53,the value of plot_cost is         : 1.870667587759327 

 At row:108, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:108, column:54,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:54,the value of plot_cost is         : 1.8327147222111986 

 At row:108, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:108, column:55,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:55,the value of plot_cost is         : 1.7955699170655857 

 At row:108, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:108, column:56,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:56,the value of plot_cost is         : 1.7592331723224877 

 At row:108, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:108, column:57,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:57,the value of plot_cost is         : 1.7237044879819041 

 At row:108, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:108, column:58,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:58,the value of plot_cost is         : 1.6889838640438368 

 At row:108, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:108, column:59,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:59,the value of plot_cost is         : 1.6550713005082835 

 At row:108, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:108, column:60,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:60,the value of plot_cost is         : 1.6219667973752459 

 At row:108, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:108, column:61,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:61,the value of plot_cost is         : 1.5896703546447233 

 At row:108, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:108, column:62,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:62,the value of plot_cost is         : 1.5581819723167156 

 At row:108, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:108, column:63,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:63,the value of plot_cost is         : 1.5275016503912235 

 At row:108, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:108, column:64,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:64,the value of plot_cost is         : 1.4976293888682455 

 At row:108, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:108, column:65,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:65,the value of plot_cost is         : 1.4685651877477837 

 At row:108, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:108, column:66,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:66,the value of plot_cost is         : 1.4403090470298363 

 At row:108, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:108, column:67,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:67,the value of plot_cost is         : 1.412860966714404 

 At row:108, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:108, column:68,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:68,the value of plot_cost is         : 1.3862209468014872 

 At row:108, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:108, column:69,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:69,the value of plot_cost is         : 1.3603889872910853 

 At row:108, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:108, column:70,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:70,the value of plot_cost is         : 1.3353650881831987 

 At row:108, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:108, column:71,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:71,the value of plot_cost is         : 1.3111492494778272 

 At row:108, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:108, column:72,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:72,the value of plot_cost is         : 1.28774147117497 

 At row:108, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:108, column:73,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:73,the value of plot_cost is         : 1.2651417532746287 

 At row:108, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:108, column:74,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:74,the value of plot_cost is         : 1.2433500957768018 

 At row:108, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:108, column:75,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:75,the value of plot_cost is         : 1.2223664986814904 

 At row:108, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:108, column:76,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:76,the value of plot_cost is         : 1.2021909619886946 

 At row:108, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:108, column:77,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:77,the value of plot_cost is         : 1.1828234856984128 

 At row:108, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:108, column:78,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:78,the value of plot_cost is         : 1.164264069810646 

 At row:108, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:108, column:79,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:79,the value of plot_cost is         : 1.1465127143253955 

 At row:108, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:108, column:80,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:80,the value of plot_cost is         : 1.1295694192426593 

 At row:108, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:108, column:81,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:81,the value of plot_cost is         : 1.113434184562439 

 At row:108, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:108, column:82,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:82,the value of plot_cost is         : 1.0981070102847328 

 At row:108, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:108, column:83,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:83,the value of plot_cost is         : 1.0835878964095416 

 At row:108, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:108, column:84,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:84,the value of plot_cost is         : 1.0698768429368661 

 At row:108, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:108, column:85,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:85,the value of plot_cost is         : 1.0569738498667058 

 At row:108, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:108, column:86,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:86,the value of plot_cost is         : 1.044878917199061 

 At row:108, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:108, column:87,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:87,the value of plot_cost is         : 1.03359204493393 

 At row:108, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:108, column:88,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:88,the value of plot_cost is         : 1.0231132330713144 

 At row:108, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:108, column:89,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:89,the value of plot_cost is         : 1.0134424816112144 

 At row:108, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:108, column:90,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:90,the value of plot_cost is         : 1.0045797905536296 

 At row:108, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:108, column:91,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:91,the value of plot_cost is         : 0.9965251598985599 

 At row:108, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:108, column:92,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:92,the value of plot_cost is         : 0.9892785896460047 

 At row:108, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:108, column:93,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:93,the value of plot_cost is         : 0.9828400797959643 

 At row:108, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:108, column:94,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:94,the value of plot_cost is         : 0.9772096303484399 

 At row:108, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:108, column:95,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:95,the value of plot_cost is         : 0.9723872413034303 

 At row:108, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:108, column:96,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:96,the value of plot_cost is         : 0.9683729126609361 

 At row:108, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:108, column:97,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:97,the value of plot_cost is         : 0.9651666444209561 

 At row:108, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:108, column:98,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:98,the value of plot_cost is         : 0.9627684365834912 

 At row:108, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:108, column:99,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:99,the value of plot_cost is         : 0.9611782891485423 

 At row:108, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:108, column:100,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:100,the value of plot_cost is         : 0.9603962021161084 

 At row:108, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:108, column:101,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:101,the value of plot_cost is         : 0.9604221754861897 

 At row:108, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:108, column:102,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:102,the value of plot_cost is         : 0.9612562092587851 

 At row:108, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:108, column:103,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:103,the value of plot_cost is         : 0.9628983034338956 

 At row:108, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:108, column:104,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:104,the value of plot_cost is         : 0.9653484580115221 

 At row:108, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:108, column:105,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:105,the value of plot_cost is         : 0.9686066729916633 

 At row:108, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:108, column:106,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:106,the value of plot_cost is         : 0.9726729483743201 

 At row:108, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:108, column:107,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:107,the value of plot_cost is         : 0.9775472841594912 

 At row:108, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:108, column:108,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:108,the value of plot_cost is         : 0.9832296803471771 

 At row:108, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:108, column:109,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:109,the value of plot_cost is         : 0.9897201369373795 

 At row:108, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:108, column:110,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:110,the value of plot_cost is         : 0.9970186539300963 

 At row:108, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:108, column:111,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:111,the value of plot_cost is         : 1.005125231325328 

 At row:108, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:108, column:112,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:112,the value of plot_cost is         : 1.0140398691230743 

 At row:108, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:108, column:113,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:113,the value of plot_cost is         : 1.023762567323336 

 At row:108, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:108, column:114,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:114,the value of plot_cost is         : 1.0342933259261133 

 At row:108, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:108, column:115,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:115,the value of plot_cost is         : 1.045632144931406 

 At row:108, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:108, column:116,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:116,the value of plot_cost is         : 1.057779024339213 

 At row:108, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:108, column:117,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:117,the value of plot_cost is         : 1.0707339641495353 

 At row:108, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:108, column:118,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:118,the value of plot_cost is         : 1.0844969643623716 

 At row:108, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:108, column:119,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:119,the value of plot_cost is         : 1.099068024977725 

 At row:108, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:108, column:120,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:120,the value of plot_cost is         : 1.114447145995593 

 At row:108, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:108, column:121,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:121,the value of plot_cost is         : 1.1306343274159751 

 At row:108, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:108, column:122,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:122,the value of plot_cost is         : 1.147629569238872 

 At row:108, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:108, column:123,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:123,the value of plot_cost is         : 1.1654328714642848 

 At row:108, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:108, column:124,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:124,the value of plot_cost is         : 1.184044234092213 

 At row:108, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:108, column:125,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:125,the value of plot_cost is         : 1.203463657122657 

 At row:108, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:108, column:126,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:126,the value of plot_cost is         : 1.2236911405556146 

 At row:108, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:108, column:127,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:127,the value of plot_cost is         : 1.2447266843910876 

 At row:108, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:108, column:128,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:128,the value of plot_cost is         : 1.2665702886290748 

 At row:108, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:108, column:129,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:129,the value of plot_cost is         : 1.2892219532695794 

 At row:108, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:108, column:130,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:130,the value of plot_cost is         : 1.3126816783125983 

 At row:108, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:108, column:131,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:131,the value of plot_cost is         : 1.3369494637581314 

 At row:108, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:108, column:132,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:132,the value of plot_cost is         : 1.362025309606179 

 At row:108, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:108, column:133,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:133,the value of plot_cost is         : 1.3879092158567425 

 At row:108, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:108, column:134,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:134,the value of plot_cost is         : 1.414601182509822 

 At row:108, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:108, column:135,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:135,the value of plot_cost is         : 1.4421012095654167 

 At row:108, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:108, column:136,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:136,the value of plot_cost is         : 1.470409297023525 

 At row:108, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:108, column:137,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:137,the value of plot_cost is         : 1.4995254448841486 

 At row:108, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:108, column:138,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:138,the value of plot_cost is         : 1.5294496531472872 

 At row:108, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:108, column:139,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:139,the value of plot_cost is         : 1.5601819218129425 

 At row:108, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:108, column:140,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:140,the value of plot_cost is         : 1.5917222508811122 

 At row:108, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:108, column:141,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:141,the value of plot_cost is         : 1.6240706403517957 

 At row:108, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:108, column:142,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:142,the value of plot_cost is         : 1.6572270902249946 

 At row:108, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:108, column:143,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:143,the value of plot_cost is         : 1.691191600500709 

 At row:108, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:108, column:144,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:144,the value of plot_cost is         : 1.725964171178939 

 At row:108, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:108, column:145,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:145,the value of plot_cost is         : 1.7615448022596851 

 At row:108, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:108, column:146,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:146,the value of plot_cost is         : 1.797933493742944 

 At row:108, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:108, column:147,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:147,the value of plot_cost is         : 1.8351302456287186 

 At row:108, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:108, column:148,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:148,the value of plot_cost is         : 1.873135057917008 

 At row:108, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:108, column:149,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:149,the value of plot_cost is         : 1.9119479306078146 

 At row:108, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:108, column:150,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:150,the value of plot_cost is         : 1.951568863701135 

 At row:108, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:108, column:151,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:151,the value of plot_cost is         : 1.9919978571969696 

 At row:108, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:108, column:152,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:152,the value of plot_cost is         : 2.033234911095319 

 At row:108, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:108, column:153,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:153,the value of plot_cost is         : 2.075280025396184 

 At row:108, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:108, column:154,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:154,the value of plot_cost is         : 2.1181332000995656 

 At row:108, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:108, column:155,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:155,the value of plot_cost is         : 2.1617944352054623 

 At row:108, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:108, column:156,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:156,the value of plot_cost is         : 2.2062637307138724 

 At row:108, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:108, column:157,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:157,the value of plot_cost is         : 2.2515410866247976 

 At row:108, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:108, column:158,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:158,the value of plot_cost is         : 2.2976265029382374 

 At row:108, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:108, column:159,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:159,the value of plot_cost is         : 2.344519979654195 

 At row:108, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:108, column:160,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:160,the value of plot_cost is         : 2.3922215167726666 

 At row:108, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:108, column:161,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:161,the value of plot_cost is         : 2.4407311142936523 

 At row:108, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:108, column:162,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:162,the value of plot_cost is         : 2.4900487722171523 

 At row:108, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:108, column:163,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:163,the value of plot_cost is         : 2.540174490543168 

 At row:108, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:108, column:164,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:164,the value of plot_cost is         : 2.5911082692717007 

 At row:108, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:108, column:165,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:165,the value of plot_cost is         : 2.6428501084027483 

 At row:108, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:108, column:166,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:166,the value of plot_cost is         : 2.695400007936309 

 At row:108, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:108, column:167,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:167,the value of plot_cost is         : 2.748757967872385 

 At row:108, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:108, column:168,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:168,the value of plot_cost is         : 2.802923988210976 

 At row:108, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:108, column:169,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:169,the value of plot_cost is         : 2.8578980689520854 

 At row:108, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:108, column:170,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:170,the value of plot_cost is         : 2.913680210095707 

 At row:108, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:108, column:171,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:171,the value of plot_cost is         : 2.9702704116418435 

 At row:108, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:108, column:172,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:172,the value of plot_cost is         : 3.0276686735904947 

 At row:108, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:108, column:173,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:173,the value of plot_cost is         : 3.085874995941661 

 At row:108, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:108, column:174,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:174,the value of plot_cost is         : 3.1448893786953445 

 At row:108, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:108, column:175,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:175,the value of plot_cost is         : 3.204711821851543 

 At row:108, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:108, column:176,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:176,the value of plot_cost is         : 3.2653423254102547 

 At row:108, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:108, column:177,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:177,the value of plot_cost is         : 3.326780889371481 

 At row:108, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:108, column:178,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:178,the value of plot_cost is         : 3.389027513735223 

 At row:108, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:108, column:179,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:179,the value of plot_cost is         : 3.4520821985014836 

 At row:108, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:108, column:180,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:180,the value of plot_cost is         : 3.5159449436702563 

 At row:108, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:108, column:181,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:181,the value of plot_cost is         : 3.580615749241543 

 At row:108, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:108, column:182,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:182,the value of plot_cost is         : 3.6460946152153455 

 At row:108, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:108, column:183,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:183,the value of plot_cost is         : 3.712381541591663 

 At row:108, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:108, column:184,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:184,the value of plot_cost is         : 3.7794765283704965 

 At row:108, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:108, column:185,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:185,the value of plot_cost is         : 3.847379575551846 

 At row:108, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:108, column:186,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:186,the value of plot_cost is         : 3.916090683135709 

 At row:108, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:108, column:187,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:187,the value of plot_cost is         : 3.9856098511220863 

 At row:108, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:108, column:188,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:188,the value of plot_cost is         : 4.055937079510979 

 At row:108, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:108, column:189,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:189,the value of plot_cost is         : 4.1270723683023895 

 At row:108, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:108, column:190,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:190,the value of plot_cost is         : 4.199015717496313 

 At row:108, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:108, column:191,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:191,the value of plot_cost is         : 4.271767127092752 

 At row:108, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:108, column:192,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:192,the value of plot_cost is         : 4.345326597091705 

 At row:108, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:108, column:193,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:193,the value of plot_cost is         : 4.419694127493173 

 At row:108, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:108, column:194,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:194,the value of plot_cost is         : 4.494869718297158 

 At row:108, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:108, column:195,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:195,the value of plot_cost is         : 4.570853369503659 

 At row:108, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:108, column:196,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:196,the value of plot_cost is         : 4.647645081112672 

 At row:108, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:108, column:197,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:197,the value of plot_cost is         : 4.7252448531242015 

 At row:108, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:108, column:198,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:198,the value of plot_cost is         : 4.8036526855382435 

 At row:108, column:199,the value of plot_t0 is           : 3.0
 At row:108, column:199,the value of plot_t1 is           : 1.170854271356784
 At row:108, column:199,the value of plot_cost is         : 4.882868578354806 

 At row:109, column:0,the value of plot_t0 is           : -1.0
 At row:109, column:0,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:0,the value of plot_cost is         : 4.766162723163554 

 At row:109, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:109, column:1,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:1,the value of plot_cost is         : 4.688060799330462 

 At row:109, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:109, column:2,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:2,the value of plot_cost is         : 4.610766935899885 

 At row:109, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:109, column:3,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:3,the value of plot_cost is         : 4.534281132871823 

 At row:109, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:109, column:4,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:4,the value of plot_cost is         : 4.458603390246275 

 At row:109, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:109, column:5,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:5,the value of plot_cost is         : 4.383733708023244 

 At row:109, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:109, column:6,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:6,the value of plot_cost is         : 4.3096720862027285 

 At row:109, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:109, column:7,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:7,the value of plot_cost is         : 4.2364185247847255 

 At row:109, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:109, column:8,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:8,the value of plot_cost is         : 4.1639730237692385 

 At row:109, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:109, column:9,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:9,the value of plot_cost is         : 4.092335583156267 

 At row:109, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:109, column:10,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:10,the value of plot_cost is         : 4.021506202945812 

 At row:109, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:109, column:11,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:11,the value of plot_cost is         : 3.9514848831378693 

 At row:109, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:109, column:12,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:12,the value of plot_cost is         : 3.8822716237324433 

 At row:109, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:109, column:13,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:13,the value of plot_cost is         : 3.813866424729533 

 At row:109, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:109, column:14,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:14,the value of plot_cost is         : 3.7462692861291353 

 At row:109, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:109, column:15,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:15,the value of plot_cost is         : 3.679480207931255 

 At row:109, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:109, column:16,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:16,the value of plot_cost is         : 3.6134991901358884 

 At row:109, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:109, column:17,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:17,the value of plot_cost is         : 3.5483262327430385 

 At row:109, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:109, column:18,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:18,the value of plot_cost is         : 3.4839613357527037 

 At row:109, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:109, column:19,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:19,the value of plot_cost is         : 3.420404499164882 

 At row:109, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:109, column:20,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:20,the value of plot_cost is         : 3.357655722979577 

 At row:109, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:109, column:21,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:21,the value of plot_cost is         : 3.2957150071967853 

 At row:109, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:109, column:22,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:22,the value of plot_cost is         : 3.2345823518165107 

 At row:109, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:109, column:23,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:23,the value of plot_cost is         : 3.1742577568387516 

 At row:109, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:109, column:24,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:24,the value of plot_cost is         : 3.114741222263505 

 At row:109, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:109, column:25,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:25,the value of plot_cost is         : 3.056032748090775 

 At row:109, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:109, column:26,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:26,the value of plot_cost is         : 2.9981323343205597 

 At row:109, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:109, column:27,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:27,the value of plot_cost is         : 2.9410399809528602 

 At row:109, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:109, column:28,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:28,the value of plot_cost is         : 2.8847556879876763 

 At row:109, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:109, column:29,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:29,the value of plot_cost is         : 2.8292794554250054 

 At row:109, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:109, column:30,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:30,the value of plot_cost is         : 2.7746112832648517 

 At row:109, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:109, column:31,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:31,the value of plot_cost is         : 2.720751171507211 

 At row:109, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:109, column:32,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:32,the value of plot_cost is         : 2.667699120152087 

 At row:109, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:109, column:33,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:33,the value of plot_cost is         : 2.6154551291994785 

 At row:109, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:109, column:34,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:34,the value of plot_cost is         : 2.564019198649383 

 At row:109, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:109, column:35,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:35,the value of plot_cost is         : 2.5133913285018044 

 At row:109, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:109, column:36,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:36,the value of plot_cost is         : 2.46357151875674 

 At row:109, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:109, column:37,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:37,the value of plot_cost is         : 2.4145597694141907 

 At row:109, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:109, column:38,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:38,the value of plot_cost is         : 2.3663560804741572 

 At row:109, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:109, column:39,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:39,the value of plot_cost is         : 2.318960451936638 

 At row:109, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:109, column:40,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:40,the value of plot_cost is         : 2.272372883801635 

 At row:109, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:109, column:41,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:41,the value of plot_cost is         : 2.2265933760691454 

 At row:109, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:109, column:42,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:42,the value of plot_cost is         : 2.181621928739172 

 At row:109, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:109, column:43,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:43,the value of plot_cost is         : 2.1374585418117142 

 At row:109, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:109, column:44,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:44,the value of plot_cost is         : 2.0941032152867702 

 At row:109, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:109, column:45,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:45,the value of plot_cost is         : 2.051555949164342 

 At row:109, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:109, column:46,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:46,the value of plot_cost is         : 2.0098167434444285 

 At row:109, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:109, column:47,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:47,the value of plot_cost is         : 1.9688855981270303 

 At row:109, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:109, column:48,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:48,the value of plot_cost is         : 1.928762513212148 

 At row:109, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:109, column:49,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:49,the value of plot_cost is         : 1.889447488699779 

 At row:109, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:109, column:50,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:50,the value of plot_cost is         : 1.8509405245899269 

 At row:109, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:109, column:51,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:51,the value of plot_cost is         : 1.8132416208825883 

 At row:109, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:109, column:52,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:52,the value of plot_cost is         : 1.7763507775777658 

 At row:109, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:109, column:53,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:53,the value of plot_cost is         : 1.7402679946754587 

 At row:109, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:109, column:54,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:54,the value of plot_cost is         : 1.7049932721756653 

 At row:109, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:109, column:55,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:55,the value of plot_cost is         : 1.6705266100783884 

 At row:109, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:109, column:56,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:56,the value of plot_cost is         : 1.6368680083836256 

 At row:109, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:109, column:57,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:57,the value of plot_cost is         : 1.6040174670913785 

 At row:109, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:109, column:58,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:58,the value of plot_cost is         : 1.5719749862016468 

 At row:109, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:109, column:59,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:59,the value of plot_cost is         : 1.540740565714429 

 At row:109, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:109, column:60,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:60,the value of plot_cost is         : 1.5103142056297276 

 At row:109, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:109, column:61,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:61,the value of plot_cost is         : 1.4806959059475402 

 At row:109, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:109, column:62,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:62,the value of plot_cost is         : 1.4518856666678683 

 At row:109, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:109, column:63,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:63,the value of plot_cost is         : 1.4238834877907125 

 At row:109, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:109, column:64,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:64,the value of plot_cost is         : 1.3966893693160702 

 At row:109, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:109, column:65,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:65,the value of plot_cost is         : 1.370303311243944 

 At row:109, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:109, column:66,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:66,the value of plot_cost is         : 1.3447253135743318 

 At row:109, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:109, column:67,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:67,the value of plot_cost is         : 1.3199553763072354 

 At row:109, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:109, column:68,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:68,the value of plot_cost is         : 1.2959934994426547 

 At row:109, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:109, column:69,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:69,the value of plot_cost is         : 1.272839682980588 

 At row:109, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:109, column:70,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:70,the value of plot_cost is         : 1.2504939269210371 

 At row:109, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:109, column:71,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:71,the value of plot_cost is         : 1.2289562312640008 

 At row:109, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:109, column:72,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:72,the value of plot_cost is         : 1.2082265960094798 

 At row:109, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:109, column:73,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:73,the value of plot_cost is         : 1.1883050211574746 

 At row:109, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:109, column:74,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:74,the value of plot_cost is         : 1.169191506707983 

 At row:109, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:109, column:75,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:75,the value of plot_cost is         : 1.1508860526610079 

 At row:109, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:109, column:76,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:76,the value of plot_cost is         : 1.1333886590165465 

 At row:109, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:109, column:77,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:77,the value of plot_cost is         : 1.1166993257746012 

 At row:109, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:109, column:78,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:78,the value of plot_cost is         : 1.1008180529351714 

 At row:109, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:109, column:79,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:79,the value of plot_cost is         : 1.0857448404982555 

 At row:109, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:109, column:80,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:80,the value of plot_cost is         : 1.0714796884638556 

 At row:109, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:109, column:81,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:81,the value of plot_cost is         : 1.05802259683197 

 At row:109, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:109, column:82,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:82,the value of plot_cost is         : 1.0453735656026 

 At row:109, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:109, column:83,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:83,the value of plot_cost is         : 1.0335325947757454 

 At row:109, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:109, column:84,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:84,the value of plot_cost is         : 1.0224996843514051 

 At row:109, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:109, column:85,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:85,the value of plot_cost is         : 1.0122748343295809 

 At row:109, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:109, column:86,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:86,the value of plot_cost is         : 1.0028580447102704 

 At row:109, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:109, column:87,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:87,the value of plot_cost is         : 0.994249315493476 

 At row:109, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:109, column:88,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:88,the value of plot_cost is         : 0.9864486466791968 

 At row:109, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:109, column:89,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:89,the value of plot_cost is         : 0.9794560382674319 

 At row:109, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:109, column:90,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:90,the value of plot_cost is         : 0.973271490258183 

 At row:109, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:109, column:91,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:91,the value of plot_cost is         : 0.9678950026514481 

 At row:109, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:109, column:92,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:92,the value of plot_cost is         : 0.9633265754472291 

 At row:109, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:109, column:93,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:93,the value of plot_cost is         : 0.9595662086455252 

 At row:109, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:109, column:94,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:94,the value of plot_cost is         : 0.9566139022463359 

 At row:109, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:109, column:95,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:95,the value of plot_cost is         : 0.9544696562496624 

 At row:109, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:109, column:96,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:96,the value of plot_cost is         : 0.9531334706555029 

 At row:109, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:109, column:97,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:97,the value of plot_cost is         : 0.9526053454638591 

 At row:109, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:109, column:98,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:98,the value of plot_cost is         : 0.9528852806747311 

 At row:109, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:109, column:99,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:99,the value of plot_cost is         : 0.953973276288117 

 At row:109, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:109, column:100,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:100,the value of plot_cost is         : 0.955869332304019 

 At row:109, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:109, column:101,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:101,the value of plot_cost is         : 0.958573448722435 

 At row:109, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:109, column:102,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:102,the value of plot_cost is         : 0.962085625543367 

 At row:109, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:109, column:103,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:103,the value of plot_cost is         : 0.9664058627668141 

 At row:109, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:109, column:104,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:104,the value of plot_cost is         : 0.9715341603927758 

 At row:109, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:109, column:105,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:105,the value of plot_cost is         : 0.9774705184212529 

 At row:109, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:109, column:106,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:106,the value of plot_cost is         : 0.9842149368522444 

 At row:109, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:109, column:107,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:107,the value of plot_cost is         : 0.9917674156857514 

 At row:109, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:109, column:108,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:108,the value of plot_cost is         : 1.0001279549217743 

 At row:109, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:109, column:109,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:109,the value of plot_cost is         : 1.0092965545603114 

 At row:109, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:109, column:110,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:110,the value of plot_cost is         : 1.0192732146013634 

 At row:109, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:109, column:111,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:111,the value of plot_cost is         : 1.0300579350449308 

 At row:109, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:109, column:112,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:112,the value of plot_cost is         : 1.0416507158910135 

 At row:109, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:109, column:113,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:113,the value of plot_cost is         : 1.0540515571396114 

 At row:109, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:109, column:114,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:114,the value of plot_cost is         : 1.067260458790724 

 At row:109, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:109, column:115,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:115,the value of plot_cost is         : 1.0812774208443516 

 At row:109, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:109, column:116,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:116,the value of plot_cost is         : 1.0961024433004944 

 At row:109, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:109, column:117,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:117,the value of plot_cost is         : 1.1117355261591524 

 At row:109, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:109, column:118,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:118,the value of plot_cost is         : 1.1281766694203261 

 At row:109, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:109, column:119,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:119,the value of plot_cost is         : 1.1454258730840146 

 At row:109, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:109, column:120,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:120,the value of plot_cost is         : 1.163483137150217 

 At row:109, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:109, column:121,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:121,the value of plot_cost is         : 1.182348461618935 

 At row:109, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:109, column:122,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:122,the value of plot_cost is         : 1.202021846490169 

 At row:109, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:109, column:123,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:123,the value of plot_cost is         : 1.2225032917639178 

 At row:109, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:109, column:124,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:124,the value of plot_cost is         : 1.2437927974401812 

 At row:109, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:109, column:125,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:125,the value of plot_cost is         : 1.26589036351896 

 At row:109, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:109, column:126,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:126,the value of plot_cost is         : 1.2887959900002532 

 At row:109, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:109, column:127,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:127,the value of plot_cost is         : 1.312509676884062 

 At row:109, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:109, column:128,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:128,the value of plot_cost is         : 1.3370314241703867 

 At row:109, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:109, column:129,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:129,the value of plot_cost is         : 1.362361231859226 

 At row:109, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:109, column:130,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:130,the value of plot_cost is         : 1.3884990999505797 

 At row:109, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:109, column:131,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:131,the value of plot_cost is         : 1.4154450284444486 

 At row:109, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:109, column:132,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:132,the value of plot_cost is         : 1.4431990173408333 

 At row:109, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:109, column:133,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:133,the value of plot_cost is         : 1.471761066639733 

 At row:109, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:109, column:134,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:134,the value of plot_cost is         : 1.5011311763411472 

 At row:109, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:109, column:135,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:135,the value of plot_cost is         : 1.5313093464450769 

 At row:109, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:109, column:136,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:136,the value of plot_cost is         : 1.562295576951521 

 At row:109, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:109, column:137,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:137,the value of plot_cost is         : 1.5940898678604807 

 At row:109, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:109, column:138,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:138,the value of plot_cost is         : 1.6266922191719564 

 At row:109, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:109, column:139,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:139,the value of plot_cost is         : 1.6601026308859463 

 At row:109, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:109, column:140,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:140,the value of plot_cost is         : 1.6943211030024508 

 At row:109, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:109, column:141,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:141,the value of plot_cost is         : 1.7293476355214707 

 At row:109, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:109, column:142,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:142,the value of plot_cost is         : 1.765182228443006 

 At row:109, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:109, column:143,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:143,the value of plot_cost is         : 1.8018248817670564 

 At row:109, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:109, column:144,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:144,the value of plot_cost is         : 1.839275595493622 

 At row:109, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:109, column:145,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:145,the value of plot_cost is         : 1.8775343696227023 

 At row:109, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:109, column:146,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:146,the value of plot_cost is         : 1.9166012041542972 

 At row:109, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:109, column:147,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:147,the value of plot_cost is         : 1.9564760990884074 

 At row:109, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:109, column:148,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:148,the value of plot_cost is         : 1.9971590544250342 

 At row:109, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:109, column:149,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:149,the value of plot_cost is         : 2.0386500701641754 

 At row:109, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:109, column:150,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:150,the value of plot_cost is         : 2.080949146305831 

 At row:109, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:109, column:151,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:151,the value of plot_cost is         : 2.1240562828500025 

 At row:109, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:109, column:152,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:152,the value of plot_cost is         : 2.167971479796688 

 At row:109, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:109, column:153,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:153,the value of plot_cost is         : 2.2126947371458896 

 At row:109, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:109, column:154,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:154,the value of plot_cost is         : 2.258226054897605 

 At row:109, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:109, column:155,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:155,the value of plot_cost is         : 2.304565433051837 

 At row:109, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:109, column:156,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:156,the value of plot_cost is         : 2.351712871608583 

 At row:109, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:109, column:157,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:157,the value of plot_cost is         : 2.3996683705678437 

 At row:109, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:109, column:158,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:158,the value of plot_cost is         : 2.448431929929621 

 At row:109, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:109, column:159,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:159,the value of plot_cost is         : 2.4980035496939132 

 At row:109, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:109, column:160,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:160,the value of plot_cost is         : 2.5483832298607196 

 At row:109, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:109, column:161,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:161,the value of plot_cost is         : 2.599570970430042 

 At row:109, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:109, column:162,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:162,the value of plot_cost is         : 2.6515667714018787 

 At row:109, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:109, column:163,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:163,the value of plot_cost is         : 2.70437063277623 

 At row:109, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:109, column:164,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:164,the value of plot_cost is         : 2.7579825545530983 

 At row:109, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:109, column:165,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:165,the value of plot_cost is         : 2.8124025367324808 

 At row:109, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:109, column:166,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:166,the value of plot_cost is         : 2.867630579314377 

 At row:109, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:109, column:167,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:167,the value of plot_cost is         : 2.923666682298788 

 At row:109, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:109, column:168,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:168,the value of plot_cost is         : 2.980510845685717 

 At row:109, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:109, column:169,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:169,the value of plot_cost is         : 3.03816306947516 

 At row:109, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:109, column:170,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:170,the value of plot_cost is         : 3.0966233536671175 

 At row:109, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:109, column:171,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:171,the value of plot_cost is         : 3.155891698261591 

 At row:109, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:109, column:172,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:172,the value of plot_cost is         : 3.215968103258578 

 At row:109, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:109, column:173,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:173,the value of plot_cost is         : 3.276852568658081 

 At row:109, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:109, column:174,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:174,the value of plot_cost is         : 3.338545094460099 

 At row:109, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:109, column:175,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:175,the value of plot_cost is         : 3.401045680664632 

 At row:109, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:109, column:176,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:176,the value of plot_cost is         : 3.46435432727168 

 At row:109, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:109, column:177,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:177,the value of plot_cost is         : 3.5284710342812415 

 At row:109, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:109, column:178,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:178,the value of plot_cost is         : 3.593395801693321 

 At row:109, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:109, column:179,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:179,the value of plot_cost is         : 3.6591286295079155 

 At row:109, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:109, column:180,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:180,the value of plot_cost is         : 3.7256695177250245 

 At row:109, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:109, column:181,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:181,the value of plot_cost is         : 3.793018466344649 

 At row:109, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:109, column:182,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:182,the value of plot_cost is         : 3.861175475366786 

 At row:109, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:109, column:183,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:183,the value of plot_cost is         : 3.9301405447914397 

 At row:109, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:109, column:184,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:184,the value of plot_cost is         : 3.999913674618609 

 At row:109, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:109, column:185,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:185,the value of plot_cost is         : 4.0704948648482935 

 At row:109, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:109, column:186,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:186,the value of plot_cost is         : 4.141884115480491 

 At row:109, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:109, column:187,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:187,the value of plot_cost is         : 4.214081426515205 

 At row:109, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:109, column:188,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:188,the value of plot_cost is         : 4.287086797952435 

 At row:109, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:109, column:189,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:189,the value of plot_cost is         : 4.360900229792179 

 At row:109, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:109, column:190,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:190,the value of plot_cost is         : 4.43552172203444 

 At row:109, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:109, column:191,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:191,the value of plot_cost is         : 4.510951274679214 

 At row:109, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:109, column:192,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:192,the value of plot_cost is         : 4.5871888877265015 

 At row:109, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:109, column:193,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:193,the value of plot_cost is         : 4.664234561176308 

 At row:109, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:109, column:194,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:194,the value of plot_cost is         : 4.742088295028627 

 At row:109, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:109, column:195,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:195,the value of plot_cost is         : 4.820750089283464 

 At row:109, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:109, column:196,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:196,the value of plot_cost is         : 4.9002199439408125 

 At row:109, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:109, column:197,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:197,the value of plot_cost is         : 4.980497859000678 

 At row:109, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:109, column:198,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:198,the value of plot_cost is         : 5.0615838344630575 

 At row:109, column:199,the value of plot_t0 is           : 3.0
 At row:109, column:199,the value of plot_t1 is           : 1.190954773869347
 At row:109, column:199,the value of plot_cost is         : 5.143477870327952 

 At row:110, column:0,the value of plot_t0 is           : -1.0
 At row:110, column:0,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:0,the value of plot_cost is         : 4.506404203357055 

 At row:110, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:110, column:1,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:1,the value of plot_cost is         : 4.430980422572299 

 At row:110, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:110, column:2,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:2,the value of plot_cost is         : 4.3563647021900564 

 At row:110, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:110, column:3,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:3,the value of plot_cost is         : 4.282557042210331 

 At row:110, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:110, column:4,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:4,the value of plot_cost is         : 4.209557442633119 

 At row:110, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:110, column:5,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:5,the value of plot_cost is         : 4.137365903458424 

 At row:110, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:110, column:6,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:6,the value of plot_cost is         : 4.065982424686243 

 At row:110, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:110, column:7,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:7,the value of plot_cost is         : 3.995407006316576 

 At row:110, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:110, column:8,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:8,the value of plot_cost is         : 3.9256396483494256 

 At row:110, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:110, column:9,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:9,the value of plot_cost is         : 3.856680350784789 

 At row:110, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:110, column:10,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:10,the value of plot_cost is         : 3.7885291136226695 

 At row:110, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:110, column:11,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:11,the value of plot_cost is         : 3.721185936863063 

 At row:110, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:110, column:12,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:12,the value of plot_cost is         : 3.6546508205059727 

 At row:110, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:110, column:13,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:13,the value of plot_cost is         : 3.5889237645513976 

 At row:110, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:110, column:14,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:14,the value of plot_cost is         : 3.524004768999337 

 At row:110, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:110, column:15,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:15,the value of plot_cost is         : 3.459893833849792 

 At row:110, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:110, column:16,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:16,the value of plot_cost is         : 3.396590959102761 

 At row:110, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:110, column:17,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:17,the value of plot_cost is         : 3.3340961447582464 

 At row:110, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:110, column:18,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:18,the value of plot_cost is         : 3.272409390816247 

 At row:110, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:110, column:19,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:19,the value of plot_cost is         : 3.2115306972767614 

 At row:110, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:110, column:20,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:20,the value of plot_cost is         : 3.1514600641397914 

 At row:110, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:110, column:21,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:21,the value of plot_cost is         : 3.0921974914053365 

 At row:110, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:110, column:22,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:22,the value of plot_cost is         : 3.033742979073397 

 At row:110, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:110, column:23,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:23,the value of plot_cost is         : 2.9760965271439734 

 At row:110, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:110, column:24,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:24,the value of plot_cost is         : 2.9192581356170635 

 At row:110, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:110, column:25,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:25,the value of plot_cost is         : 2.863227804492669 

 At row:110, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:110, column:26,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:26,the value of plot_cost is         : 2.8080055337707894 

 At row:110, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:110, column:27,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:27,the value of plot_cost is         : 2.753591323451425 

 At row:110, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:110, column:28,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:28,the value of plot_cost is         : 2.699985173534577 

 At row:110, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:110, column:29,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:29,the value of plot_cost is         : 2.647187084020242 

 At row:110, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:110, column:30,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:30,the value of plot_cost is         : 2.595197054908424 

 At row:110, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:110, column:31,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:31,the value of plot_cost is         : 2.5440150861991193 

 At row:110, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:110, column:32,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:32,the value of plot_cost is         : 2.49364117789233 

 At row:110, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:110, column:33,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:33,the value of plot_cost is         : 2.4440753299880575 

 At row:110, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:110, column:34,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:34,the value of plot_cost is         : 2.395317542486298 

 At row:110, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:110, column:35,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:35,the value of plot_cost is         : 2.3473678153870554 

 At row:110, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:110, column:36,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:36,the value of plot_cost is         : 2.3002261486903266 

 At row:110, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:110, column:37,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:37,the value of plot_cost is         : 2.2538925423961134 

 At row:110, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:110, column:38,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:38,the value of plot_cost is         : 2.2083669965044153 

 At row:110, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:110, column:39,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:39,the value of plot_cost is         : 2.1636495110152314 

 At row:110, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:110, column:40,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:40,the value of plot_cost is         : 2.1197400859285644 

 At row:110, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:110, column:41,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:41,the value of plot_cost is         : 2.076638721244411 

 At row:110, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:110, column:42,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:42,the value of plot_cost is         : 2.0343454169627733 

 At row:110, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:110, column:43,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:43,the value of plot_cost is         : 1.992860173083651 

 At row:110, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:110, column:44,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:44,the value of plot_cost is         : 1.9521829896070426 

 At row:110, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:110, column:45,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:45,the value of plot_cost is         : 1.9123138665329504 

 At row:110, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:110, column:46,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:46,the value of plot_cost is         : 1.8732528038613725 

 At row:110, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:110, column:47,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:47,the value of plot_cost is         : 1.8349998015923101 

 At row:110, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:110, column:48,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:48,the value of plot_cost is         : 1.7975548597257633 

 At row:110, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:110, column:49,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:49,the value of plot_cost is         : 1.7609179782617304 

 At row:110, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:110, column:50,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:50,the value of plot_cost is         : 1.7250891572002136 

 At row:110, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:110, column:51,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:51,the value of plot_cost is         : 1.6900683965412115 

 At row:110, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:110, column:52,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:52,the value of plot_cost is         : 1.6558556962847242 

 At row:110, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:110, column:53,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:53,the value of plot_cost is         : 1.6224510564307528 

 At row:110, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:110, column:54,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:54,the value of plot_cost is         : 1.5898544769792955 

 At row:110, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:110, column:55,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:55,the value of plot_cost is         : 1.5580659579303537 

 At row:110, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:110, column:56,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:56,the value of plot_cost is         : 1.527085499283927 

 At row:110, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:110, column:57,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:57,the value of plot_cost is         : 1.4969131010400158 

 At row:110, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:110, column:58,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:58,the value of plot_cost is         : 1.46754876319862 

 At row:110, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:110, column:59,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:59,the value of plot_cost is         : 1.438992485759738 

 At row:110, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:110, column:60,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:60,the value of plot_cost is         : 1.4112442687233715 

 At row:110, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:110, column:61,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:61,the value of plot_cost is         : 1.38430411208952 

 At row:110, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:110, column:62,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:62,the value of plot_cost is         : 1.3581720158581843 

 At row:110, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:110, column:63,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:63,the value of plot_cost is         : 1.3328479800293638 

 At row:110, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:110, column:64,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:64,the value of plot_cost is         : 1.3083320046030575 

 At row:110, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:110, column:65,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:65,the value of plot_cost is         : 1.2846240895792667 

 At row:110, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:110, column:66,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:66,the value of plot_cost is         : 1.2617242349579907 

 At row:110, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:110, column:67,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:67,the value of plot_cost is         : 1.23963244073923 

 At row:110, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:110, column:68,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:68,the value of plot_cost is         : 1.218348706922985 

 At row:110, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:110, column:69,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:69,the value of plot_cost is         : 1.1978730335092542 

 At row:110, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:110, column:70,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:70,the value of plot_cost is         : 1.1782054204980388 

 At row:110, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:110, column:71,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:71,the value of plot_cost is         : 1.159345867889338 

 At row:110, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:110, column:72,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:72,the value of plot_cost is         : 1.141294375683153 

 At row:110, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:110, column:73,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:73,the value of plot_cost is         : 1.1240509438794832 

 At row:110, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:110, column:74,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:74,the value of plot_cost is         : 1.1076155724783276 

 At row:110, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:110, column:75,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:75,the value of plot_cost is         : 1.091988261479688 

 At row:110, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:110, column:76,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:76,the value of plot_cost is         : 1.0771690108835628 

 At row:110, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:110, column:77,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:77,the value of plot_cost is         : 1.0631578206899532 

 At row:110, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:110, column:78,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:78,the value of plot_cost is         : 1.0499546908988588 

 At row:110, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:110, column:79,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:79,the value of plot_cost is         : 1.037559621510279 

 At row:110, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:110, column:80,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:80,the value of plot_cost is         : 1.0259726125242146 

 At row:110, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:110, column:81,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:81,the value of plot_cost is         : 1.0151936639406647 

 At row:110, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:110, column:82,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:82,the value of plot_cost is         : 1.0052227757596306 

 At row:110, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:110, column:83,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:83,the value of plot_cost is         : 0.9960599479811117 

 At row:110, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:110, column:84,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:84,the value of plot_cost is         : 0.9877051806051073 

 At row:110, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:110, column:85,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:85,the value of plot_cost is         : 0.9801584736316182 

 At row:110, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:110, column:86,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:86,the value of plot_cost is         : 0.9734198270606438 

 At row:110, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:110, column:87,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:87,the value of plot_cost is         : 0.9674892408921852 

 At row:110, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:110, column:88,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:88,the value of plot_cost is         : 0.9623667151262417 

 At row:110, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:110, column:89,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:89,the value of plot_cost is         : 0.9580522497628127 

 At row:110, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:110, column:90,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:90,the value of plot_cost is         : 0.9545458448018991 

 At row:110, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:110, column:91,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:91,the value of plot_cost is         : 0.9518475002435002 

 At row:110, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:110, column:92,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:92,the value of plot_cost is         : 0.9499572160876171 

 At row:110, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:110, column:93,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:93,the value of plot_cost is         : 0.9488749923342489 

 At row:110, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:110, column:94,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:94,the value of plot_cost is         : 0.9486008289833953 

 At row:110, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:110, column:95,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:95,the value of plot_cost is         : 0.9491347260350572 

 At row:110, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:110, column:96,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:96,the value of plot_cost is         : 0.9504766834892336 

 At row:110, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:110, column:97,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:97,the value of plot_cost is         : 0.952626701345926 

 At row:110, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:110, column:98,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:98,the value of plot_cost is         : 0.9555847796051334 

 At row:110, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:110, column:99,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:99,the value of plot_cost is         : 0.9593509182668551 

 At row:110, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:110, column:100,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:100,the value of plot_cost is         : 0.9639251173310922 

 At row:110, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:110, column:101,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:101,the value of plot_cost is         : 0.9693073767978444 

 At row:110, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:110, column:102,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:102,the value of plot_cost is         : 0.9754976966671123 

 At row:110, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:110, column:103,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:103,the value of plot_cost is         : 0.9824960769388948 

 At row:110, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:110, column:104,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:104,the value of plot_cost is         : 0.9903025176131925 

 At row:110, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:110, column:105,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:105,the value of plot_cost is         : 0.9989170186900047 

 At row:110, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:110, column:106,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:106,the value of plot_cost is         : 1.0083395801693322 

 At row:110, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:110, column:107,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:107,the value of plot_cost is         : 1.0185702020511755 

 At row:110, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:110, column:108,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:108,the value of plot_cost is         : 1.0296088843355335 

 At row:110, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:110, column:109,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:109,the value of plot_cost is         : 1.0414556270224067 

 At row:110, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:110, column:110,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:110,the value of plot_cost is         : 1.0541104301117945 

 At row:110, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:110, column:111,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:111,the value of plot_cost is         : 1.0675732936036975 

 At row:110, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:110, column:112,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:112,the value of plot_cost is         : 1.081844217498116 

 At row:110, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:110, column:113,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:113,the value of plot_cost is         : 1.0969232017950497 

 At row:110, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:110, column:114,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:114,the value of plot_cost is         : 1.112810246494498 

 At row:110, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:110, column:115,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:115,the value of plot_cost is         : 1.1295053515964613 

 At row:110, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:110, column:116,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:116,the value of plot_cost is         : 1.1470085171009397 

 At row:110, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:110, column:117,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:117,the value of plot_cost is         : 1.1653197430079338 

 At row:110, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:110, column:118,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:118,the value of plot_cost is         : 1.1844390293174427 

 At row:110, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:110, column:119,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:119,the value of plot_cost is         : 1.2043663760294667 

 At row:110, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:110, column:120,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:120,the value of plot_cost is         : 1.2251017831440056 

 At row:110, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:110, column:121,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:121,the value of plot_cost is         : 1.2466452506610592 

 At row:110, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:110, column:122,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:122,the value of plot_cost is         : 1.2689967785806286 

 At row:110, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:110, column:123,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:123,the value of plot_cost is         : 1.2921563669027134 

 At row:110, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:110, column:124,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:124,the value of plot_cost is         : 1.3161240156273124 

 At row:110, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:110, column:125,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:125,the value of plot_cost is         : 1.3408997247544268 

 At row:110, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:110, column:126,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:126,the value of plot_cost is         : 1.366483494284056 

 At row:110, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:110, column:127,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:127,the value of plot_cost is         : 1.3928753242162009 

 At row:110, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:110, column:128,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:128,the value of plot_cost is         : 1.4200752145508606 

 At row:110, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:110, column:129,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:129,the value of plot_cost is         : 1.4480831652880355 

 At row:110, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:110, column:130,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:130,the value of plot_cost is         : 1.4768991764277255 

 At row:110, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:110, column:131,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:131,the value of plot_cost is         : 1.5065232479699298 

 At row:110, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:110, column:132,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:132,the value of plot_cost is         : 1.53695537991465 

 At row:110, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:110, column:133,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:133,the value of plot_cost is         : 1.5681955722618857 

 At row:110, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:110, column:134,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:134,the value of plot_cost is         : 1.6002438250116358 

 At row:110, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:110, column:135,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:135,the value of plot_cost is         : 1.633100138163901 

 At row:110, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:110, column:136,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:136,the value of plot_cost is         : 1.666764511718681 

 At row:110, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:110, column:137,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:137,the value of plot_cost is         : 1.701236945675977 

 At row:110, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:110, column:138,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:138,the value of plot_cost is         : 1.7365174400357875 

 At row:110, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:110, column:139,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:139,the value of plot_cost is         : 1.7726059947981132 

 At row:110, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:110, column:140,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:140,the value of plot_cost is         : 1.8095026099629539 

 At row:110, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:110, column:141,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:141,the value of plot_cost is         : 1.847207285530309 

 At row:110, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:110, column:142,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:142,the value of plot_cost is         : 1.8857200215001804 

 At row:110, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:110, column:143,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:143,the value of plot_cost is         : 1.925040817872567 

 At row:110, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:110, column:144,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:144,the value of plot_cost is         : 1.9651696746474683 

 At row:110, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:110, column:145,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:145,the value of plot_cost is         : 2.0061065918248837 

 At row:110, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:110, column:146,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:146,the value of plot_cost is         : 2.0478515694048145 

 At row:110, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:110, column:147,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:147,the value of plot_cost is         : 2.0904046073872613 

 At row:110, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:110, column:148,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:148,the value of plot_cost is         : 2.133765705772223 

 At row:110, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:110, column:149,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:149,the value of plot_cost is         : 2.1779348645596994 

 At row:110, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:110, column:150,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:150,the value of plot_cost is         : 2.2229120837496916 

 At row:110, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:110, column:151,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:151,the value of plot_cost is         : 2.2686973633421985 

 At row:110, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:110, column:152,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:152,the value of plot_cost is         : 2.315290703337219 

 At row:110, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:110, column:153,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:153,the value of plot_cost is         : 2.362692103734757 

 At row:110, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:110, column:154,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:154,the value of plot_cost is         : 2.410901564534809 

 At row:110, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:110, column:155,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:155,the value of plot_cost is         : 2.4599190857373756 

 At row:110, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:110, column:156,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:156,the value of plot_cost is         : 2.509744667342458 

 At row:110, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:110, column:157,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:157,the value of plot_cost is         : 2.5603783093500545 

 At row:110, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:110, column:158,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:158,the value of plot_cost is         : 2.6118200117601673 

 At row:110, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:110, column:159,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:159,the value of plot_cost is         : 2.664069774572795 

 At row:110, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:110, column:160,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:160,the value of plot_cost is         : 2.7171275977879374 

 At row:110, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:110, column:161,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:161,the value of plot_cost is         : 2.7709934814055956 

 At row:110, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:110, column:162,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:162,the value of plot_cost is         : 2.825667425425767 

 At row:110, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:110, column:163,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:163,the value of plot_cost is         : 2.881149429848455 

 At row:110, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:110, column:164,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:164,the value of plot_cost is         : 2.937439494673659 

 At row:110, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:110, column:165,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:165,the value of plot_cost is         : 2.9945376199013767 

 At row:110, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:110, column:166,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:166,the value of plot_cost is         : 3.05244380553161 

 At row:110, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:110, column:167,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:167,the value of plot_cost is         : 3.1111580515643564 

 At row:110, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:110, column:168,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:168,the value of plot_cost is         : 3.17068035799962 

 At row:110, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:110, column:169,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:169,the value of plot_cost is         : 3.2310107248373985 

 At row:110, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:110, column:170,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:170,the value of plot_cost is         : 3.2921491520776924 

 At row:110, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:110, column:171,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:171,the value of plot_cost is         : 3.354095639720502 

 At row:110, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:110, column:172,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:172,the value of plot_cost is         : 3.4168501877658235 

 At row:110, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:110, column:173,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:173,the value of plot_cost is         : 3.4804127962136637 

 At row:110, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:110, column:174,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:174,the value of plot_cost is         : 3.5447834650640173 

 At row:110, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:110, column:175,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:175,the value of plot_cost is         : 3.6099621943168865 

 At row:110, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:110, column:176,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:176,the value of plot_cost is         : 3.67594898397227 

 At row:110, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:110, column:177,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:177,the value of plot_cost is         : 3.7427438340301684 

 At row:110, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:110, column:178,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:178,the value of plot_cost is         : 3.810346744490582 

 At row:110, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:110, column:179,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:179,the value of plot_cost is         : 3.878757715353511 

 At row:110, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:110, column:180,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:180,the value of plot_cost is         : 3.9479767466189566 

 At row:110, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:110, column:181,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:181,the value of plot_cost is         : 4.0180038382869165 

 At row:110, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:110, column:182,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:182,the value of plot_cost is         : 4.088838990357389 

 At row:110, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:110, column:183,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:183,the value of plot_cost is         : 4.160482202830379 

 At row:110, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:110, column:184,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:184,the value of plot_cost is         : 4.232933475705884 

 At row:110, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:110, column:185,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:185,the value of plot_cost is         : 4.306192808983904 

 At row:110, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:110, column:186,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:186,the value of plot_cost is         : 4.38026020266444 

 At row:110, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:110, column:187,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:187,the value of plot_cost is         : 4.455135656747488 

 At row:110, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:110, column:188,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:188,the value of plot_cost is         : 4.530819171233053 

 At row:110, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:110, column:189,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:189,the value of plot_cost is         : 4.607310746121132 

 At row:110, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:110, column:190,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:190,the value of plot_cost is         : 4.684610381411729 

 At row:110, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:110, column:191,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:191,the value of plot_cost is         : 4.762718077104839 

 At row:110, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:110, column:192,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:192,the value of plot_cost is         : 4.841633833200463 

 At row:110, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:110, column:193,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:193,the value of plot_cost is         : 4.921357649698604 

 At row:110, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:110, column:194,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:194,the value of plot_cost is         : 5.0018895265992604 

 At row:110, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:110, column:195,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:195,the value of plot_cost is         : 5.0832294639024305 

 At row:110, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:110, column:196,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:196,the value of plot_cost is         : 5.165377461608117 

 At row:110, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:110, column:197,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:197,the value of plot_cost is         : 5.248333519716319 

 At row:110, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:110, column:198,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:198,the value of plot_cost is         : 5.332097638227032 

 At row:110, column:199,the value of plot_t0 is           : 3.0
 At row:110, column:199,the value of plot_t1 is           : 1.2110552763819098
 At row:110, column:199,the value of plot_cost is         : 5.416669817140263 

 At row:111, column:0,the value of plot_t0 is           : -1.0
 At row:111, column:0,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:0,the value of plot_cost is         : 4.259228338389724 

 At row:111, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:111, column:1,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:1,the value of plot_cost is         : 4.186482700653304 

 At row:111, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:111, column:2,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:2,the value of plot_cost is         : 4.114545123319397 

 At row:111, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:111, column:3,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:3,the value of plot_cost is         : 4.043415606388007 

 At row:111, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:111, column:4,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:4,the value of plot_cost is         : 3.9730941498591306 

 At row:111, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:111, column:5,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:5,the value of plot_cost is         : 3.9035807537327707 

 At row:111, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:111, column:6,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:6,the value of plot_cost is         : 3.834875418008926 

 At row:111, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:111, column:7,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:7,the value of plot_cost is         : 3.766978142687595 

 At row:111, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:111, column:8,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:8,the value of plot_cost is         : 3.69988892776878 

 At row:111, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:111, column:9,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:9,the value of plot_cost is         : 3.6336077732524794 

 At row:111, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:111, column:10,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:10,the value of plot_cost is         : 3.5681346791386948 

 At row:111, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:111, column:11,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:11,the value of plot_cost is         : 3.5034696454274252 

 At row:111, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:111, column:12,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:12,the value of plot_cost is         : 3.4396126721186704 

 At row:111, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:111, column:13,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:13,the value of plot_cost is         : 3.3765637592124307 

 At row:111, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:111, column:14,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:14,the value of plot_cost is         : 3.314322906708705 

 At row:111, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:111, column:15,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:15,the value of plot_cost is         : 3.2528901146074958 

 At row:111, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:111, column:16,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:16,the value of plot_cost is         : 3.1922653829088024 

 At row:111, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:111, column:17,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:17,the value of plot_cost is         : 3.1324487116126223 

 At row:111, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:111, column:18,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:18,the value of plot_cost is         : 3.0734401007189582 

 At row:111, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:111, column:19,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:19,the value of plot_cost is         : 3.0152395502278084 

 At row:111, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:111, column:20,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:20,the value of plot_cost is         : 2.9578470601391746 

 At row:111, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:111, column:21,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:21,the value of plot_cost is         : 2.901262630453056 

 At row:111, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:111, column:22,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:22,the value of plot_cost is         : 2.8454862611694516 

 At row:111, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:111, column:23,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:23,the value of plot_cost is         : 2.790517952288363 

 At row:111, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:111, column:24,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:24,the value of plot_cost is         : 2.7363577038097886 

 At row:111, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:111, column:25,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:25,the value of plot_cost is         : 2.683005515733731 

 At row:111, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:111, column:26,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:26,the value of plot_cost is         : 2.6304613880601875 

 At row:111, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:111, column:27,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:27,the value of plot_cost is         : 2.578725320789158 

 At row:111, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:111, column:28,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:28,the value of plot_cost is         : 2.5277973139206447 

 At row:111, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:111, column:29,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:29,the value of plot_cost is         : 2.477677367454646 

 At row:111, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:111, column:30,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:30,the value of plot_cost is         : 2.428365481391163 

 At row:111, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:111, column:31,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:31,the value of plot_cost is         : 2.3798616557301955 

 At row:111, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:111, column:32,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:32,the value of plot_cost is         : 2.332165890471742 

 At row:111, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:111, column:33,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:33,the value of plot_cost is         : 2.2852781856158044 

 At row:111, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:111, column:34,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:34,the value of plot_cost is         : 2.2391985411623807 

 At row:111, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:111, column:35,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:35,the value of plot_cost is         : 2.1939269571114735 

 At row:111, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:111, column:36,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:36,the value of plot_cost is         : 2.149463433463081 

 At row:111, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:111, column:37,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:37,the value of plot_cost is         : 2.1058079702172026 

 At row:111, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:111, column:38,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:38,the value of plot_cost is         : 2.0629605673738407 

 At row:111, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:111, column:39,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:39,the value of plot_cost is         : 2.020921224932992 

 At row:111, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:111, column:40,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:40,the value of plot_cost is         : 1.9796899428946606 

 At row:111, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:111, column:41,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:41,the value of plot_cost is         : 1.9392667212588437 

 At row:111, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:111, column:42,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:42,the value of plot_cost is         : 1.8996515600255413 

 At row:111, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:111, column:43,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:43,the value of plot_cost is         : 1.8608444591947542 

 At row:111, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:111, column:44,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:44,the value of plot_cost is         : 1.8228454187664813 

 At row:111, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:111, column:45,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:45,the value of plot_cost is         : 1.7856544387407252 

 At row:111, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:111, column:46,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:46,the value of plot_cost is         : 1.7492715191174835 

 At row:111, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:111, column:47,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:47,the value of plot_cost is         : 1.7136966598967565 

 At row:111, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:111, column:48,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:48,the value of plot_cost is         : 1.678929861078545 

 At row:111, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:111, column:49,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:49,the value of plot_cost is         : 1.6449711226628478 

 At row:111, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:111, column:50,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:50,the value of plot_cost is         : 1.6118204446496667 

 At row:111, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:111, column:51,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:51,the value of plot_cost is         : 1.5794778270390006 

 At row:111, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:111, column:52,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:52,the value of plot_cost is         : 1.5479432698308488 

 At row:111, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:111, column:53,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:53,the value of plot_cost is         : 1.517216773025213 

 At row:111, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:111, column:54,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:54,the value of plot_cost is         : 1.4872983366220913 

 At row:111, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:111, column:55,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:55,the value of plot_cost is         : 1.4581879606214854 

 At row:111, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:111, column:56,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:56,the value of plot_cost is         : 1.4298856450233948 

 At row:111, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:111, column:57,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:57,the value of plot_cost is         : 1.4023913898278184 

 At row:111, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:111, column:58,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:58,the value of plot_cost is         : 1.3757051950347583 

 At row:111, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:111, column:59,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:59,the value of plot_cost is         : 1.3498270606442118 

 At row:111, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:111, column:60,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:60,the value of plot_cost is         : 1.3247569866561817 

 At row:111, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:111, column:61,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:61,the value of plot_cost is         : 1.3004949730706665 

 At row:111, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:111, column:62,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:62,the value of plot_cost is         : 1.2770410198876656 

 At row:111, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:111, column:63,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:63,the value of plot_cost is         : 1.2543951271071805 

 At row:111, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:111, column:64,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:64,the value of plot_cost is         : 1.2325572947292098 

 At row:111, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:111, column:65,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:65,the value of plot_cost is         : 1.2115275227537552 

 At row:111, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:111, column:66,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:66,the value of plot_cost is         : 1.1913058111808152 

 At row:111, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:111, column:67,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:67,the value of plot_cost is         : 1.1718921600103895 

 At row:111, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:111, column:68,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:68,the value of plot_cost is         : 1.15328656924248 

 At row:111, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:111, column:69,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:69,the value of plot_cost is         : 1.1354890388770849 

 At row:111, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:111, column:70,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:70,the value of plot_cost is         : 1.1184995689142054 

 At row:111, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:111, column:71,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:71,the value of plot_cost is         : 1.102318159353841 

 At row:111, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:111, column:72,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:72,the value of plot_cost is         : 1.0869448101959913 

 At row:111, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:111, column:73,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:73,the value of plot_cost is         : 1.072379521440657 

 At row:111, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:111, column:74,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:74,the value of plot_cost is         : 1.058622293087837 

 At row:111, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:111, column:75,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:75,the value of plot_cost is         : 1.045673125137533 

 At row:111, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:111, column:76,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:76,the value of plot_cost is         : 1.033532017589744 

 At row:111, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:111, column:77,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:77,the value of plot_cost is         : 1.0221989704444696 

 At row:111, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:111, column:78,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:78,the value of plot_cost is         : 1.0116739837017104 

 At row:111, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:111, column:79,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:79,the value of plot_cost is         : 1.0019570573614665 

 At row:111, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:111, column:80,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:80,the value of plot_cost is         : 0.9930481914237379 

 At row:111, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:111, column:81,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:81,the value of plot_cost is         : 0.9849473858885243 

 At row:111, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:111, column:82,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:82,the value of plot_cost is         : 0.9776546407558258 

 At row:111, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:111, column:83,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:83,the value of plot_cost is         : 0.9711699560256416 

 At row:111, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:111, column:84,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:84,the value of plot_cost is         : 0.965493331697973 

 At row:111, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:111, column:85,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:85,the value of plot_cost is         : 0.96062476777282 

 At row:111, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:111, column:86,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:86,the value of plot_cost is         : 0.9565642642501817 

 At row:111, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:111, column:87,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:87,the value of plot_cost is         : 0.9533118211300584 

 At row:111, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:111, column:88,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:88,the value of plot_cost is         : 0.9508674384124498 

 At row:111, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:111, column:89,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:89,the value of plot_cost is         : 0.9492311160973569 

 At row:111, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:111, column:90,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:90,the value of plot_cost is         : 0.9484028541847792 

 At row:111, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:111, column:91,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:91,the value of plot_cost is         : 0.9483826526747163 

 At row:111, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:111, column:92,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:92,the value of plot_cost is         : 0.9491705115671688 

 At row:111, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:111, column:93,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:93,the value of plot_cost is         : 0.9507664308621356 

 At row:111, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:111, column:94,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:94,the value of plot_cost is         : 0.9531704105596179 

 At row:111, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:111, column:95,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:95,the value of plot_cost is         : 0.9563824506596159 

 At row:111, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:111, column:96,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:96,the value of plot_cost is         : 0.9604025511621281 

 At row:111, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:111, column:97,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:97,the value of plot_cost is         : 0.9652307120671558 

 At row:111, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:111, column:98,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:98,the value of plot_cost is         : 0.9708669333746984 

 At row:111, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:111, column:99,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:99,the value of plot_cost is         : 0.977311215084756 

 At row:111, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:111, column:100,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:100,the value of plot_cost is         : 0.984563557197329 

 At row:111, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:111, column:101,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:101,the value of plot_cost is         : 0.9926239597124172 

 At row:111, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:111, column:102,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:102,the value of plot_cost is         : 1.0014924226300206 

 At row:111, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:111, column:103,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:103,the value of plot_cost is         : 1.0111689459501383 

 At row:111, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:111, column:104,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:104,the value of plot_cost is         : 1.0216535296727713 

 At row:111, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:111, column:105,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:105,the value of plot_cost is         : 1.0329461737979193 

 At row:111, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:111, column:106,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:106,the value of plot_cost is         : 1.0450468783255835 

 At row:111, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:111, column:107,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:107,the value of plot_cost is         : 1.0579556432557624 

 At row:111, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:111, column:108,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:108,the value of plot_cost is         : 1.0716724685884558 

 At row:111, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:111, column:109,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:109,the value of plot_cost is         : 1.086197354323664 

 At row:111, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:111, column:110,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:110,the value of plot_cost is         : 1.1015303004613883 

 At row:111, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:111, column:111,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:111,the value of plot_cost is         : 1.1176713070016266 

 At row:111, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:111, column:112,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:112,the value of plot_cost is         : 1.1346203739443812 

 At row:111, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:111, column:113,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:113,the value of plot_cost is         : 1.1523775012896502 

 At row:111, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:111, column:114,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:114,the value of plot_cost is         : 1.170942689037434 

 At row:111, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:111, column:115,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:115,the value of plot_cost is         : 1.1903159371877339 

 At row:111, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:111, column:116,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:116,the value of plot_cost is         : 1.2104972457405474 

 At row:111, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:111, column:117,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:117,the value of plot_cost is         : 1.2314866146958774 

 At row:111, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:111, column:118,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:118,the value of plot_cost is         : 1.2532840440537216 

 At row:111, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:111, column:119,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:119,the value of plot_cost is         : 1.2758895338140808 

 At row:111, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:111, column:120,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:120,the value of plot_cost is         : 1.2993030839769562 

 At row:111, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:111, column:121,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:121,the value of plot_cost is         : 1.3235246945423453 

 At row:111, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:111, column:122,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:122,the value of plot_cost is         : 1.3485543655102505 

 At row:111, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:111, column:123,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:123,the value of plot_cost is         : 1.3743920968806707 

 At row:111, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:111, column:124,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:124,the value of plot_cost is         : 1.401037888653605 

 At row:111, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:111, column:125,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:125,the value of plot_cost is         : 1.4284917408290558 

 At row:111, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:111, column:126,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:126,the value of plot_cost is         : 1.4567536534070202 

 At row:111, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:111, column:127,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:127,the value of plot_cost is         : 1.485823626387501 

 At row:111, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:111, column:128,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:128,the value of plot_cost is         : 1.5157016597704969 

 At row:111, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:111, column:129,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:129,the value of plot_cost is         : 1.5463877535560064 

 At row:111, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:111, column:130,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:130,the value of plot_cost is         : 1.5778819077440327 

 At row:111, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:111, column:131,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:131,the value of plot_cost is         : 1.6101841223345725 

 At row:111, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:111, column:132,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:132,the value of plot_cost is         : 1.643294397327629 

 At row:111, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:111, column:133,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:133,the value of plot_cost is         : 1.6772127327231996 

 At row:111, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:111, column:134,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:134,the value of plot_cost is         : 1.7119391285212848 

 At row:111, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:111, column:135,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:135,the value of plot_cost is         : 1.7474735847218865 

 At row:111, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:111, column:136,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:136,the value of plot_cost is         : 1.783816101325002 

 At row:111, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:111, column:137,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:137,the value of plot_cost is         : 1.8209666783306335 

 At row:111, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:111, column:138,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:138,the value of plot_cost is         : 1.8589253157387802 

 At row:111, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:111, column:139,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:139,the value of plot_cost is         : 1.8976920135494406 

 At row:111, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:111, column:140,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:140,the value of plot_cost is         : 1.9372667717626177 

 At row:111, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:111, column:141,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:141,the value of plot_cost is         : 1.9776495903783087 

 At row:111, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:111, column:142,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:142,the value of plot_cost is         : 2.0188404693965163 

 At row:111, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:111, column:143,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:143,the value of plot_cost is         : 2.060839408817238 

 At row:111, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:111, column:144,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:144,the value of plot_cost is         : 2.1036464086404734 

 At row:111, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:111, column:145,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:145,the value of plot_cost is         : 2.147261468866226 

 At row:111, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:111, column:146,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:146,the value of plot_cost is         : 2.1916845894944923 

 At row:111, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:111, column:147,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:147,the value of plot_cost is         : 2.2369157705252745 

 At row:111, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:111, column:148,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:148,the value of plot_cost is         : 2.282955011958572 

 At row:111, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:111, column:149,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:149,the value of plot_cost is         : 2.3298023137943837 

 At row:111, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:111, column:150,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:150,the value of plot_cost is         : 2.377457676032712 

 At row:111, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:111, column:151,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:151,the value of plot_cost is         : 2.4259210986735558 

 At row:111, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:111, column:152,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:152,the value of plot_cost is         : 2.475192581716912 

 At row:111, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:111, column:153,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:153,the value of plot_cost is         : 2.5252721251627843 

 At row:111, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:111, column:154,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:154,the value of plot_cost is         : 2.576159729011171 

 At row:111, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:111, column:155,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:155,the value of plot_cost is         : 2.627855393262075 

 At row:111, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:111, column:156,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:156,the value of plot_cost is         : 2.6803591179154935 

 At row:111, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:111, column:157,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:157,the value of plot_cost is         : 2.7336709029714252 

 At row:111, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:111, column:158,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:158,the value of plot_cost is         : 2.7877907484298734 

 At row:111, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:111, column:159,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:159,the value of plot_cost is         : 2.842718654290836 

 At row:111, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:111, column:160,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:160,the value of plot_cost is         : 2.8984546205543147 

 At row:111, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:111, column:161,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:161,the value of plot_cost is         : 2.954998647220309 

 At row:111, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:111, column:162,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:162,the value of plot_cost is         : 3.012350734288817 

 At row:111, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:111, column:163,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:163,the value of plot_cost is         : 3.07051088175984 

 At row:111, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:111, column:164,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:164,the value of plot_cost is         : 3.129479089633377 

 At row:111, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:111, column:165,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:165,the value of plot_cost is         : 3.189255357909432 

 At row:111, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:111, column:166,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:166,the value of plot_cost is         : 3.2498396865880013 

 At row:111, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:111, column:167,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:167,the value of plot_cost is         : 3.311232075669084 

 At row:111, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:111, column:168,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:168,the value of plot_cost is         : 3.3734325251526838 

 At row:111, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:111, column:169,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:169,the value of plot_cost is         : 3.436441035038797 

 At row:111, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:111, column:170,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:170,the value of plot_cost is         : 3.500257605327427 

 At row:111, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:111, column:171,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:171,the value of plot_cost is         : 3.5648822360185717 

 At row:111, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:111, column:172,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:172,the value of plot_cost is         : 3.630314927112231 

 At row:111, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:111, column:173,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:173,the value of plot_cost is         : 3.696555678608405 

 At row:111, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:111, column:174,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:174,the value of plot_cost is         : 3.763604490507093 

 At row:111, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:111, column:175,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:175,the value of plot_cost is         : 3.831461362808298 

 At row:111, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:111, column:176,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:176,the value of plot_cost is         : 3.900126295512018 

 At row:111, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:111, column:177,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:177,the value of plot_cost is         : 3.969599288618252 

 At row:111, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:111, column:178,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:178,the value of plot_cost is         : 4.039880342127002 

 At row:111, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:111, column:179,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:179,the value of plot_cost is         : 4.110969456038267 

 At row:111, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:111, column:180,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:180,the value of plot_cost is         : 4.182866630352047 

 At row:111, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:111, column:181,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:181,the value of plot_cost is         : 4.255571865068344 

 At row:111, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:111, column:182,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:182,the value of plot_cost is         : 4.3290851601871525 

 At row:111, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:111, column:183,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:183,the value of plot_cost is         : 4.403406515708477 

 At row:111, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:111, column:184,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:184,the value of plot_cost is         : 4.478535931632316 

 At row:111, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:111, column:185,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:185,the value of plot_cost is         : 4.554473407958672 

 At row:111, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:111, column:186,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:186,the value of plot_cost is         : 4.631218944687544 

 At row:111, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:111, column:187,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:187,the value of plot_cost is         : 4.708772541818927 

 At row:111, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:111, column:188,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:188,the value of plot_cost is         : 4.78713419935283 

 At row:111, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:111, column:189,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:189,the value of plot_cost is         : 4.866303917289245 

 At row:111, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:111, column:190,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:190,the value of plot_cost is         : 4.946281695628176 

 At row:111, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:111, column:191,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:191,the value of plot_cost is         : 5.027067534369624 

 At row:111, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:111, column:192,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:192,the value of plot_cost is         : 5.108661433513583 

 At row:111, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:111, column:193,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:193,the value of plot_cost is         : 5.19106339306006 

 At row:111, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:111, column:194,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:194,the value of plot_cost is         : 5.274273413009049 

 At row:111, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:111, column:195,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:195,the value of plot_cost is         : 5.358291493360556 

 At row:111, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:111, column:196,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:196,the value of plot_cost is         : 5.4431176341145795 

 At row:111, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:111, column:197,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:197,the value of plot_cost is         : 5.528751835271116 

 At row:111, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:111, column:198,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:198,the value of plot_cost is         : 5.615194096830167 

 At row:111, column:199,the value of plot_t0 is           : 3.0
 At row:111, column:199,the value of plot_t1 is           : 1.2311557788944723
 At row:111, column:199,the value of plot_cost is         : 5.702444418791731 

 At row:112, column:0,the value of plot_t0 is           : -1.0
 At row:112, column:0,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:0,the value of plot_cost is         : 4.0246351282615525 

 At row:112, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:112, column:1,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:1,the value of plot_cost is         : 3.9545676335734674 

 At row:112, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:112, column:2,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:2,the value of plot_cost is         : 3.885308199287896 

 At row:112, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:112, column:3,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:3,the value of plot_cost is         : 3.8168568254048423 

 At row:112, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:112, column:4,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:4,the value of plot_cost is         : 3.7492135119243013 

 At row:112, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:112, column:5,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:5,the value of plot_cost is         : 3.682378258846277 

 At row:112, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:112, column:6,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:6,the value of plot_cost is         : 3.6163510661707687 

 At row:112, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:112, column:7,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:7,the value of plot_cost is         : 3.5511319338977727 

 At row:112, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:112, column:8,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:8,the value of plot_cost is         : 3.486720862027294 

 At row:112, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:112, column:9,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:9,the value of plot_cost is         : 3.423117850559329 

 At row:112, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:112, column:10,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:10,the value of plot_cost is         : 3.3603228994938803 

 At row:112, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:112, column:11,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:11,the value of plot_cost is         : 3.2983360088309466 

 At row:112, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:112, column:12,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:12,the value of plot_cost is         : 3.237157178570527 

 At row:112, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:112, column:13,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:13,the value of plot_cost is         : 3.176786408712623 

 At row:112, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:112, column:14,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:14,the value of plot_cost is         : 3.117223699257233 

 At row:112, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:112, column:15,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:15,the value of plot_cost is         : 3.0584690502043603 

 At row:112, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:112, column:16,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:16,the value of plot_cost is         : 3.0005224615540014 

 At row:112, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:112, column:17,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:17,the value of plot_cost is         : 2.9433839333061576 

 At row:112, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:112, column:18,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:18,the value of plot_cost is         : 2.8870534654608293 

 At row:112, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:112, column:19,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:19,the value of plot_cost is         : 2.831531058018015 

 At row:112, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:112, column:20,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:20,the value of plot_cost is         : 2.776816710977717 

 At row:112, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:112, column:21,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:21,the value of plot_cost is         : 2.7229104243399345 

 At row:112, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:112, column:22,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:22,the value of plot_cost is         : 2.6698121981046654 

 At row:112, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:112, column:23,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:23,the value of plot_cost is         : 2.617522032271912 

 At row:112, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:112, column:24,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:24,the value of plot_cost is         : 2.5660399268416736 

 At row:112, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:112, column:25,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:25,the value of plot_cost is         : 2.5153658818139513 

 At row:112, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:112, column:26,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:26,the value of plot_cost is         : 2.465499897188744 

 At row:112, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:112, column:27,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:27,the value of plot_cost is         : 2.4164419729660502 

 At row:112, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:112, column:28,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:28,the value of plot_cost is         : 2.3681921091458733 

 At row:112, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:112, column:29,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:29,the value of plot_cost is         : 2.3207503057282097 

 At row:112, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:112, column:30,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:30,the value of plot_cost is         : 2.274116562713063 

 At row:112, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:112, column:31,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:31,the value of plot_cost is         : 2.2282908801004306 

 At row:112, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:112, column:32,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:32,the value of plot_cost is         : 2.183273257890313 

 At row:112, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:112, column:33,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:33,the value of plot_cost is         : 2.139063696082711 

 At row:112, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:112, column:34,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:34,the value of plot_cost is         : 2.0956621946776233 

 At row:112, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:112, column:35,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:35,the value of plot_cost is         : 2.0530687536750514 

 At row:112, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:112, column:36,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:36,the value of plot_cost is         : 2.0112833730749946 

 At row:112, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:112, column:37,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:37,the value of plot_cost is         : 1.9703060528774525 

 At row:112, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:112, column:38,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:38,the value of plot_cost is         : 1.9301367930824256 

 At row:112, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:112, column:39,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:39,the value of plot_cost is         : 1.8907755936899138 

 At row:112, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:112, column:40,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:40,the value of plot_cost is         : 1.8522224546999173 

 At row:112, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:112, column:41,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:41,the value of plot_cost is         : 1.8144773761124362 

 At row:112, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:112, column:42,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:42,the value of plot_cost is         : 1.7775403579274693 

 At row:112, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:112, column:43,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:43,the value of plot_cost is         : 1.741411400145018 

 At row:112, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:112, column:44,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:44,the value of plot_cost is         : 1.7060905027650815 

 At row:112, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:112, column:45,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:45,the value of plot_cost is         : 1.6715776657876606 

 At row:112, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:112, column:46,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:46,the value of plot_cost is         : 1.6378728892127548 

 At row:112, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:112, column:47,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:47,the value of plot_cost is         : 1.6049761730403633 

 At row:112, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:112, column:48,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:48,the value of plot_cost is         : 1.5728875172704877 

 At row:112, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:112, column:49,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:49,the value of plot_cost is         : 1.5416069219031263 

 At row:112, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:112, column:50,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:50,the value of plot_cost is         : 1.511134386938281 

 At row:112, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:112, column:51,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:51,the value of plot_cost is         : 1.4814699123759507 

 At row:112, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:112, column:52,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:52,the value of plot_cost is         : 1.4526134982161345 

 At row:112, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:112, column:53,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:53,the value of plot_cost is         : 1.4245651444588339 

 At row:112, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:112, column:54,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:54,the value of plot_cost is         : 1.3973248511040481 

 At row:112, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:112, column:55,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:55,the value of plot_cost is         : 1.3708926181517782 

 At row:112, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:112, column:56,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:56,the value of plot_cost is         : 1.3452684456020234 

 At row:112, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:112, column:57,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:57,the value of plot_cost is         : 1.3204523334547826 

 At row:112, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:112, column:58,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:58,the value of plot_cost is         : 1.296444281710058 

 At row:112, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:112, column:59,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:59,the value of plot_cost is         : 1.2732442903678478 

 At row:112, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:112, column:60,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:60,the value of plot_cost is         : 1.250852359428153 

 At row:112, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:112, column:61,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:61,the value of plot_cost is         : 1.2292684888909737 

 At row:112, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:112, column:62,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:62,the value of plot_cost is         : 1.2084926787563084 

 At row:112, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:112, column:63,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:63,the value of plot_cost is         : 1.188524929024159 

 At row:112, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:112, column:64,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:64,the value of plot_cost is         : 1.1693652396945244 

 At row:112, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:112, column:65,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:65,the value of plot_cost is         : 1.1510136107674047 

 At row:112, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:112, column:66,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:66,the value of plot_cost is         : 1.133470042242801 

 At row:112, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:112, column:67,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:67,the value of plot_cost is         : 1.1167345341207113 

 At row:112, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:112, column:68,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:68,the value of plot_cost is         : 1.1008070864011374 

 At row:112, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:112, column:69,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:69,the value of plot_cost is         : 1.085687699084078 

 At row:112, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:112, column:70,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:70,the value of plot_cost is         : 1.071376372169534 

 At row:112, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:112, column:71,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:71,the value of plot_cost is         : 1.0578731056575057 

 At row:112, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:112, column:72,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:72,the value of plot_cost is         : 1.0451778995479912 

 At row:112, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:112, column:73,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:73,the value of plot_cost is         : 1.0332907538409926 

 At row:112, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:112, column:74,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:74,the value of plot_cost is         : 1.0222116685365086 

 At row:112, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:112, column:75,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:75,the value of plot_cost is         : 1.0119406436345402 

 At row:112, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:112, column:76,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:76,the value of plot_cost is         : 1.0024776791350873 

 At row:112, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:112, column:77,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:77,the value of plot_cost is         : 0.9938227750381485 

 At row:112, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:112, column:78,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:78,the value of plot_cost is         : 0.9859759313437246 

 At row:112, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:112, column:79,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:79,the value of plot_cost is         : 0.9789371480518169 

 At row:112, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:112, column:80,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:80,the value of plot_cost is         : 0.9727064251624237 

 At row:112, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:112, column:81,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:81,the value of plot_cost is         : 0.967283762675546 

 At row:112, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:112, column:82,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:82,the value of plot_cost is         : 0.9626691605911826 

 At row:112, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:112, column:83,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:83,the value of plot_cost is         : 0.9588626189093347 

 At row:112, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:112, column:84,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:84,the value of plot_cost is         : 0.9558641376300022 

 At row:112, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:112, column:85,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:85,the value of plot_cost is         : 0.9536737167531844 

 At row:112, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:112, column:86,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:86,the value of plot_cost is         : 0.9522913562788822 

 At row:112, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:112, column:87,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:87,the value of plot_cost is         : 0.9517170562070946 

 At row:112, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:112, column:88,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:88,the value of plot_cost is         : 0.9519508165378215 

 At row:112, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:112, column:89,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:89,the value of plot_cost is         : 0.9529926372710645 

 At row:112, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:112, column:90,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:90,the value of plot_cost is         : 0.9548425184068222 

 At row:112, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:112, column:91,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:91,the value of plot_cost is         : 0.9575004599450955 

 At row:112, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:112, column:92,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:92,the value of plot_cost is         : 0.960966461885883 

 At row:112, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:112, column:93,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:93,the value of plot_cost is         : 0.9652405242291859 

 At row:112, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:112, column:94,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:94,the value of plot_cost is         : 0.9703226469750044 

 At row:112, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:112, column:95,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:95,the value of plot_cost is         : 0.9762128301233373 

 At row:112, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:112, column:96,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:96,the value of plot_cost is         : 0.982911073674186 

 At row:112, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:112, column:97,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:97,the value of plot_cost is         : 0.9904173776275497 

 At row:112, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:112, column:98,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:98,the value of plot_cost is         : 0.9987317419834273 

 At row:112, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:112, column:99,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:99,the value of plot_cost is         : 1.007854166741821 

 At row:112, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:112, column:100,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:100,the value of plot_cost is         : 1.0177846519027296 

 At row:112, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:112, column:101,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:101,the value of plot_cost is         : 1.0285231974661535 

 At row:112, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:112, column:102,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:102,the value of plot_cost is         : 1.0400698034320917 

 At row:112, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:112, column:103,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:103,the value of plot_cost is         : 1.052424469800546 

 At row:112, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:112, column:104,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:104,the value of plot_cost is         : 1.0655871965715153 

 At row:112, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:112, column:105,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:105,the value of plot_cost is         : 1.079557983744999 

 At row:112, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:112, column:106,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:106,the value of plot_cost is         : 1.0943368313209985 

 At row:112, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:112, column:107,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:107,the value of plot_cost is         : 1.1099237392995132 

 At row:112, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:112, column:108,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:108,the value of plot_cost is         : 1.1263187076805417 

 At row:112, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:112, column:109,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:109,the value of plot_cost is         : 1.1435217364640866 

 At row:112, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:112, column:110,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:110,the value of plot_cost is         : 1.1615328256501465 

 At row:112, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:112, column:111,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:111,the value of plot_cost is         : 1.1803519752387206 

 At row:112, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:112, column:112,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:112,the value of plot_cost is         : 1.1999791852298094 

 At row:112, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:112, column:113,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:113,the value of plot_cost is         : 1.2204144556234147 

 At row:112, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:112, column:114,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:114,the value of plot_cost is         : 1.241657786419535 

 At row:112, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:112, column:115,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:115,the value of plot_cost is         : 1.2637091776181704 

 At row:112, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:112, column:116,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:116,the value of plot_cost is         : 1.28656862921932 

 At row:112, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:112, column:117,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:117,the value of plot_cost is         : 1.3102361412229853 

 At row:112, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:112, column:118,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:118,the value of plot_cost is         : 1.3347117136291649 

 At row:112, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:112, column:119,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:119,the value of plot_cost is         : 1.359995346437861 

 At row:112, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:112, column:120,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:120,the value of plot_cost is         : 1.3860870396490712 

 At row:112, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:112, column:121,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:121,the value of plot_cost is         : 1.4129867932627964 

 At row:112, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:112, column:122,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:122,the value of plot_cost is         : 1.440694607279036 

 At row:112, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:112, column:123,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:123,the value of plot_cost is         : 1.4692104816977922 

 At row:112, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:112, column:124,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:124,the value of plot_cost is         : 1.4985344165190635 

 At row:112, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:112, column:125,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:125,the value of plot_cost is         : 1.5286664117428497 

 At row:112, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:112, column:126,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:126,the value of plot_cost is         : 1.55960646736915 

 At row:112, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:112, column:127,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:127,the value of plot_cost is         : 1.5913545833979663 

 At row:112, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:112, column:128,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:128,the value of plot_cost is         : 1.623910759829297 

 At row:112, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:112, column:129,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:129,the value of plot_cost is         : 1.6572749966631437 

 At row:112, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:112, column:130,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:130,the value of plot_cost is         : 1.6914472938995049 

 At row:112, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:112, column:131,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:131,the value of plot_cost is         : 1.7264276515383812 

 At row:112, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:112, column:132,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:132,the value of plot_cost is         : 1.7622160695797717 

 At row:112, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:112, column:133,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:133,the value of plot_cost is         : 1.7988125480236787 

 At row:112, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:112, column:134,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:134,the value of plot_cost is         : 1.836217086870101 

 At row:112, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:112, column:135,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:135,the value of plot_cost is         : 1.8744296861190375 

 At row:112, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:112, column:136,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:136,the value of plot_cost is         : 1.9134503457704888 

 At row:112, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:112, column:137,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:137,the value of plot_cost is         : 1.953279065824456 

 At row:112, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:112, column:138,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:138,the value of plot_cost is         : 1.9939158462809374 

 At row:112, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:112, column:139,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:139,the value of plot_cost is         : 2.0353606871399355 

 At row:112, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:112, column:140,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:140,the value of plot_cost is         : 2.077613588401448 

 At row:112, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:112, column:141,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:141,the value of plot_cost is         : 2.1206745500654742 

 At row:112, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:112, column:142,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:142,the value of plot_cost is         : 2.164543572132016 

 At row:112, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:112, column:143,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:143,the value of plot_cost is         : 2.209220654601074 

 At row:112, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:112, column:144,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:144,the value of plot_cost is         : 2.254705797472647 

 At row:112, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:112, column:145,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:145,the value of plot_cost is         : 2.300999000746735 

 At row:112, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:112, column:146,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:146,the value of plot_cost is         : 2.3481002644233366 

 At row:112, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:112, column:147,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:147,the value of plot_cost is         : 2.396009588502455 

 At row:112, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:112, column:148,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:148,the value of plot_cost is         : 2.4447269729840873 

 At row:112, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:112, column:149,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:149,the value of plot_cost is         : 2.494252417868236 

 At row:112, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:112, column:150,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:150,the value of plot_cost is         : 2.544585923154899 

 At row:112, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:112, column:151,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:151,the value of plot_cost is         : 2.5957274888440764 

 At row:112, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:112, column:152,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:152,the value of plot_cost is         : 2.6476771149357687 

 At row:112, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:112, column:153,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:153,the value of plot_cost is         : 2.7004348014299784 

 At row:112, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:112, column:154,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:154,the value of plot_cost is         : 2.754000548326702 

 At row:112, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:112, column:155,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:155,the value of plot_cost is         : 2.8083743556259404 

 At row:112, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:112, column:156,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:156,the value of plot_cost is         : 2.863556223327694 

 At row:112, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:112, column:157,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:157,the value of plot_cost is         : 2.919546151431963 

 At row:112, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:112, column:158,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:158,the value of plot_cost is         : 2.976344139938746 

 At row:112, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:112, column:159,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:159,the value of plot_cost is         : 3.0339501888480456 

 At row:112, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:112, column:160,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:160,the value of plot_cost is         : 3.0923642981598585 

 At row:112, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:112, column:161,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:161,the value of plot_cost is         : 3.1515864678741874 

 At row:112, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:112, column:162,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:162,the value of plot_cost is         : 3.2116166979910306 

 At row:112, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:112, column:163,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:163,the value of plot_cost is         : 3.2724549885103906 

 At row:112, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:112, column:164,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:164,the value of plot_cost is         : 3.334101339432266 

 At row:112, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:112, column:165,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:165,the value of plot_cost is         : 3.3965557507566553 

 At row:112, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:112, column:166,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:166,the value of plot_cost is         : 3.4598182224835603 

 At row:112, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:112, column:167,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:167,the value of plot_cost is         : 3.5238887546129787 

 At row:112, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:112, column:168,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:168,the value of plot_cost is         : 3.588767347144913 

 At row:112, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:112, column:169,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:169,the value of plot_cost is         : 3.6544540000793635 

 At row:112, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:112, column:170,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:170,the value of plot_cost is         : 3.7209487134163286 

 At row:112, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:112, column:171,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:171,the value of plot_cost is         : 3.788251487155807 

 At row:112, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:112, column:172,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:172,the value of plot_cost is         : 3.8563623212978015 

 At row:112, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:112, column:173,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:173,the value of plot_cost is         : 3.9252812158423125 

 At row:112, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:112, column:174,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:174,the value of plot_cost is         : 3.995008170789338 

 At row:112, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:112, column:175,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:175,the value of plot_cost is         : 4.0655431861388776 

 At row:112, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:112, column:176,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:176,the value of plot_cost is         : 4.136886261890935 

 At row:112, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:112, column:177,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:177,the value of plot_cost is         : 4.209037398045503 

 At row:112, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:112, column:178,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:178,the value of plot_cost is         : 4.281996594602589 

 At row:112, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:112, column:179,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:179,the value of plot_cost is         : 4.35576385156219 

 At row:112, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:112, column:180,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:180,the value of plot_cost is         : 4.430339168924306 

 At row:112, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:112, column:181,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:181,the value of plot_cost is         : 4.505722546688936 

 At row:112, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:112, column:182,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:182,the value of plot_cost is         : 4.58191398485608 

 At row:112, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:112, column:183,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:183,the value of plot_cost is         : 4.658913483425743 

 At row:112, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:112, column:184,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:184,the value of plot_cost is         : 4.73672104239792 

 At row:112, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:112, column:185,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:185,the value of plot_cost is         : 4.815336661772611 

 At row:112, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:112, column:186,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:186,the value of plot_cost is         : 4.894760341549817 

 At row:112, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:112, column:187,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:187,the value of plot_cost is         : 4.974992081729536 

 At row:112, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:112, column:188,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:188,the value of plot_cost is         : 5.056031882311774 

 At row:112, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:112, column:189,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:189,the value of plot_cost is         : 5.1378797432965255 

 At row:112, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:112, column:190,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:190,the value of plot_cost is         : 5.2205356646837915 

 At row:112, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:112, column:191,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:191,the value of plot_cost is         : 5.3039996464735735 

 At row:112, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:112, column:192,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:192,the value of plot_cost is         : 5.388271688665869 

 At row:112, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:112, column:193,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:193,the value of plot_cost is         : 5.473351791260683 

 At row:112, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:112, column:194,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:194,the value of plot_cost is         : 5.55923995425801 

 At row:112, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:112, column:195,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:195,the value of plot_cost is         : 5.645936177657852 

 At row:112, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:112, column:196,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:196,the value of plot_cost is         : 5.733440461460209 

 At row:112, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:112, column:197,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:197,the value of plot_cost is         : 5.821752805665081 

 At row:112, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:112, column:198,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:198,the value of plot_cost is         : 5.910873210272467 

 At row:112, column:199,the value of plot_t0 is           : 3.0
 At row:112, column:199,the value of plot_t1 is           : 1.2512562814070352
 At row:112, column:199,the value of plot_cost is         : 6.000801675282371 

 At row:113, column:0,the value of plot_t0 is           : -1.0
 At row:113, column:0,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:0,the value of plot_cost is         : 3.802624572972543 

 At row:113, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:113, column:1,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:1,the value of plot_cost is         : 3.735235221332794 

 At row:113, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:113, column:2,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:2,the value of plot_cost is         : 3.6686539300955596 

 At row:113, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:113, column:3,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:3,the value of plot_cost is         : 3.6028806992608406 

 At row:113, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:113, column:4,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:4,the value of plot_cost is         : 3.5379155288286355 

 At row:113, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:113, column:5,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:5,the value of plot_cost is         : 3.4737584187989468 

 At row:113, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:113, column:6,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:6,the value of plot_cost is         : 3.410409369171774 

 At row:113, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:113, column:7,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:7,the value of plot_cost is         : 3.3478683799471143 

 At row:113, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:113, column:8,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:8,the value of plot_cost is         : 3.286135451124971 

 At row:113, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:113, column:9,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:9,the value of plot_cost is         : 3.225210582705342 

 At row:113, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:113, column:10,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:10,the value of plot_cost is         : 3.165093774688229 

 At row:113, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:113, column:11,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:11,the value of plot_cost is         : 3.1057850270736296 

 At row:113, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:113, column:12,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:12,the value of plot_cost is         : 3.0472843398615463 

 At row:113, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:113, column:13,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:13,the value of plot_cost is         : 2.989591713051978 

 At row:113, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:113, column:14,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:14,the value of plot_cost is         : 2.9327071466449244 

 At row:113, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:113, column:15,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:15,the value of plot_cost is         : 2.876630640640387 

 At row:113, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:113, column:16,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:16,the value of plot_cost is         : 2.8213621950383634 

 At row:113, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:113, column:17,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:17,the value of plot_cost is         : 2.766901809838856 

 At row:113, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:113, column:18,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:18,the value of plot_cost is         : 2.713249485041864 

 At row:113, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:113, column:19,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:19,the value of plot_cost is         : 2.6604052206473847 

 At row:113, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:113, column:20,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:20,the value of plot_cost is         : 2.6083690166554234 

 At row:113, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:113, column:21,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:21,the value of plot_cost is         : 2.557140873065975 

 At row:113, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:113, column:22,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:22,the value of plot_cost is         : 2.5067207898790422 

 At row:113, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:113, column:23,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:23,the value of plot_cost is         : 2.4571087670946254 

 At row:113, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:113, column:24,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:24,the value of plot_cost is         : 2.4083048047127225 

 At row:113, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:113, column:25,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:25,the value of plot_cost is         : 2.3603089027333364 

 At row:113, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:113, column:26,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:26,the value of plot_cost is         : 2.313121061156463 

 At row:113, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:113, column:27,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:27,the value of plot_cost is         : 2.2667412799821065 

 At row:113, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:113, column:28,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:28,the value of plot_cost is         : 2.221169559210265 

 At row:113, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:113, column:29,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:29,the value of plot_cost is         : 2.176405898840937 

 At row:113, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:113, column:30,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:30,the value of plot_cost is         : 2.132450298874126 

 At row:113, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:113, column:31,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:31,the value of plot_cost is         : 2.089302759309829 

 At row:113, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:113, column:32,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:32,the value of plot_cost is         : 2.0469632801480473 

 At row:113, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:113, column:33,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:33,the value of plot_cost is         : 2.0054318613887814 

 At row:113, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:113, column:34,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:34,the value of plot_cost is         : 1.9647085030320295 

 At row:113, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:113, column:35,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:35,the value of plot_cost is         : 1.9247932050777934 

 At row:113, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:113, column:36,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:36,the value of plot_cost is         : 1.8856859675260718 

 At row:113, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:113, column:37,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:37,the value of plot_cost is         : 1.8473867903768657 

 At row:113, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:113, column:38,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:38,the value of plot_cost is         : 1.8098956736301752 

 At row:113, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:113, column:39,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:39,the value of plot_cost is         : 1.7732126172859985 

 At row:113, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:113, column:40,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:40,the value of plot_cost is         : 1.737337621344338 

 At row:113, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:113, column:41,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:41,the value of plot_cost is         : 1.7022706858051915 

 At row:113, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:113, column:42,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:42,the value of plot_cost is         : 1.668011810668561 

 At row:113, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:113, column:43,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:43,the value of plot_cost is         : 1.6345609959344458 

 At row:113, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:113, column:44,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:44,the value of plot_cost is         : 1.601918241602845 

 At row:113, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:113, column:45,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:45,the value of plot_cost is         : 1.57008354767376 

 At row:113, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:113, column:46,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:46,the value of plot_cost is         : 1.539056914147189 

 At row:113, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:113, column:47,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:47,the value of plot_cost is         : 1.5088383410231343 

 At row:113, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:113, column:48,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:48,the value of plot_cost is         : 1.479427828301594 

 At row:113, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:113, column:49,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:49,the value of plot_cost is         : 1.4508253759825687 

 At row:113, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:113, column:50,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:50,the value of plot_cost is         : 1.4230309840660589 

 At row:113, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:113, column:51,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:51,the value of plot_cost is         : 1.3960446525520636 

 At row:113, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:113, column:52,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:52,the value of plot_cost is         : 1.369866381440584 

 At row:113, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:113, column:53,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:53,the value of plot_cost is         : 1.3444961707316192 

 At row:113, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:113, column:54,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:54,the value of plot_cost is         : 1.3199340204251693 

 At row:113, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:113, column:55,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:55,the value of plot_cost is         : 1.2961799305212347 

 At row:113, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:113, column:56,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:56,the value of plot_cost is         : 1.2732339010198153 

 At row:113, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:113, column:57,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:57,the value of plot_cost is         : 1.2510959319209112 

 At row:113, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:113, column:58,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:58,the value of plot_cost is         : 1.2297660232245216 

 At row:113, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:113, column:59,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:59,the value of plot_cost is         : 1.209244174930647 

 At row:113, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:113, column:60,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:60,the value of plot_cost is         : 1.1895303870392882 

 At row:113, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:113, column:61,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:61,the value of plot_cost is         : 1.1706246595504437 

 At row:113, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:113, column:62,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:62,the value of plot_cost is         : 1.152526992464115 

 At row:113, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:113, column:63,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:63,the value of plot_cost is         : 1.1352373857803013 

 At row:113, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:113, column:64,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:64,the value of plot_cost is         : 1.1187558394990025 

 At row:113, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:113, column:65,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:65,the value of plot_cost is         : 1.1030823536202188 

 At row:113, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:113, column:66,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:66,the value of plot_cost is         : 1.0882169281439502 

 At row:113, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:113, column:67,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:67,the value of plot_cost is         : 1.0741595630701968 

 At row:113, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:113, column:68,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:68,the value of plot_cost is         : 1.0609102583989583 

 At row:113, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:113, column:69,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:69,the value of plot_cost is         : 1.0484690141302349 

 At row:113, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:113, column:70,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:70,the value of plot_cost is         : 1.0368358302640266 

 At row:113, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:113, column:71,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:71,the value of plot_cost is         : 1.0260107068003332 

 At row:113, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:113, column:72,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:72,the value of plot_cost is         : 1.015993643739155 

 At row:113, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:113, column:73,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:73,the value of plot_cost is         : 1.0067846410804924 

 At row:113, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:113, column:74,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:74,the value of plot_cost is         : 0.9983836988243443 

 At row:113, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:113, column:75,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:75,the value of plot_cost is         : 0.9907908169707114 

 At row:113, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:113, column:76,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:76,the value of plot_cost is         : 0.9840059955195938 

 At row:113, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:113, column:77,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:77,the value of plot_cost is         : 0.9780292344709913 

 At row:113, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:113, column:78,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:78,the value of plot_cost is         : 0.9728605338249036 

 At row:113, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:113, column:79,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:79,the value of plot_cost is         : 0.9684998935813312 

 At row:113, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:113, column:80,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:80,the value of plot_cost is         : 0.9649473137402736 

 At row:113, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:113, column:81,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:81,the value of plot_cost is         : 0.9622027943017312 

 At row:113, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:113, column:82,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:82,the value of plot_cost is         : 0.9602663352657039 

 At row:113, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:113, column:83,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:83,the value of plot_cost is         : 0.9591379366321919 

 At row:113, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:113, column:84,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:84,the value of plot_cost is         : 0.9588175984011951 

 At row:113, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:113, column:85,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:85,the value of plot_cost is         : 0.959305320572713 

 At row:113, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:113, column:86,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:86,the value of plot_cost is         : 0.9606011031467461 

 At row:113, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:113, column:87,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:87,the value of plot_cost is         : 0.9627049461232946 

 At row:113, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:113, column:88,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:88,the value of plot_cost is         : 0.9656168495023578 

 At row:113, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:113, column:89,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:89,the value of plot_cost is         : 0.9693368132839366 

 At row:113, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:113, column:90,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:90,the value of plot_cost is         : 0.9738648374680291 

 At row:113, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:113, column:91,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:91,the value of plot_cost is         : 0.9792009220546382 

 At row:113, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:113, column:92,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:92,the value of plot_cost is         : 0.9853450670437615 

 At row:113, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:113, column:93,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:93,the value of plot_cost is         : 0.9922972724354006 

 At row:113, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:113, column:94,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:94,the value of plot_cost is         : 1.000057538229555 

 At row:113, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:113, column:95,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:95,the value of plot_cost is         : 1.0086258644262232 

 At row:113, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:113, column:96,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:96,the value of plot_cost is         : 1.0180022510254074 

 At row:113, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:113, column:97,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:97,the value of plot_cost is         : 1.0281866980271068 

 At row:113, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:113, column:98,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:98,the value of plot_cost is         : 1.0391792054313207 

 At row:113, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:113, column:99,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:99,the value of plot_cost is         : 1.0509797732380504 

 At row:113, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:113, column:100,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:100,the value of plot_cost is         : 1.0635884014472945 

 At row:113, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:113, column:101,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:101,the value of plot_cost is         : 1.0770050900590538 

 At row:113, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:113, column:102,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:102,the value of plot_cost is         : 1.0912298390733282 

 At row:113, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:113, column:103,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:103,the value of plot_cost is         : 1.106262648490118 

 At row:113, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:113, column:104,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:104,the value of plot_cost is         : 1.1221035183094223 

 At row:113, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:113, column:105,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:105,the value of plot_cost is         : 1.1387524485312421 

 At row:113, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:113, column:106,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:106,the value of plot_cost is         : 1.1562094391555773 

 At row:113, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:113, column:107,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:107,the value of plot_cost is         : 1.1744744901824278 

 At row:113, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:113, column:108,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:108,the value of plot_cost is         : 1.1935476016117925 

 At row:113, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:113, column:109,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:109,the value of plot_cost is         : 1.2134287734436728 

 At row:113, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:113, column:110,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:110,the value of plot_cost is         : 1.2341180056780683 

 At row:113, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:113, column:111,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:111,the value of plot_cost is         : 1.255615298314978 

 At row:113, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:113, column:112,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:112,the value of plot_cost is         : 1.2779206513544032 

 At row:113, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:113, column:113,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:113,the value of plot_cost is         : 1.3010340647963443 

 At row:113, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:113, column:114,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:114,the value of plot_cost is         : 1.3249555386407994 

 At row:113, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:113, column:115,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:115,the value of plot_cost is         : 1.3496850728877707 

 At row:113, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:113, column:116,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:116,the value of plot_cost is         : 1.3752226675372559 

 At row:113, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:113, column:117,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:117,the value of plot_cost is         : 1.4015683225892575 

 At row:113, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:113, column:118,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:118,the value of plot_cost is         : 1.4287220380437726 

 At row:113, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:113, column:119,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:119,the value of plot_cost is         : 1.4566838139008045 

 At row:113, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:113, column:120,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:120,the value of plot_cost is         : 1.4854536501603506 

 At row:113, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:113, column:121,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:121,the value of plot_cost is         : 1.5150315468224111 

 At row:113, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:113, column:122,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:122,the value of plot_cost is         : 1.545417503886987 

 At row:113, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:113, column:123,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:123,the value of plot_cost is         : 1.576611521354079 

 At row:113, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:113, column:124,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:124,the value of plot_cost is         : 1.6086135992236854 

 At row:113, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:113, column:125,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:125,the value of plot_cost is         : 1.6414237374958076 

 At row:113, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:113, column:126,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:126,the value of plot_cost is         : 1.6750419361704436 

 At row:113, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:113, column:127,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:127,the value of plot_cost is         : 1.7094681952475959 

 At row:113, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:113, column:128,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:128,the value of plot_cost is         : 1.7447025147272623 

 At row:113, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:113, column:129,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:129,the value of plot_cost is         : 1.7807448946094446 

 At row:113, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:113, column:130,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:130,the value of plot_cost is         : 1.817595334894142 

 At row:113, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:113, column:131,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:131,the value of plot_cost is         : 1.8552538355813533 

 At row:113, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:113, column:132,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:132,the value of plot_cost is         : 1.8937203966710803 

 At row:113, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:113, column:133,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:133,the value of plot_cost is         : 1.9329950181633229 

 At row:113, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:113, column:134,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:134,the value of plot_cost is         : 1.9730777000580801 

 At row:113, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:113, column:135,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:135,the value of plot_cost is         : 2.013968442355353 

 At row:113, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:113, column:136,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:136,the value of plot_cost is         : 2.0556672450551403 

 At row:113, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:113, column:137,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:137,the value of plot_cost is         : 2.0981741081574428 

 At row:113, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:113, column:138,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:138,the value of plot_cost is         : 2.1414890316622603 

 At row:113, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:113, column:139,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:139,the value of plot_cost is         : 2.1856120155695935 

 At row:113, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:113, column:140,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:140,the value of plot_cost is         : 2.230543059879442 

 At row:113, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:113, column:141,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:141,the value of plot_cost is         : 2.276282164591804 

 At row:113, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:113, column:142,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:142,the value of plot_cost is         : 2.322829329706682 

 At row:113, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:113, column:143,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:143,the value of plot_cost is         : 2.3701845552240752 

 At row:113, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:113, column:144,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:144,the value of plot_cost is         : 2.4183478411439836 

 At row:113, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:113, column:145,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:145,the value of plot_cost is         : 2.467319187466408 

 At row:113, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:113, column:146,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:146,the value of plot_cost is         : 2.5170985941913453 

 At row:113, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:113, column:147,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:147,the value of plot_cost is         : 2.567686061318799 

 At row:113, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:113, column:148,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:148,the value of plot_cost is         : 2.619081588848767 

 At row:113, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:113, column:149,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:149,the value of plot_cost is         : 2.671285176781251 

 At row:113, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:113, column:150,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:150,the value of plot_cost is         : 2.7242968251162503 

 At row:113, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:113, column:151,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:151,the value of plot_cost is         : 2.7781165338537637 

 At row:113, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:113, column:152,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:152,the value of plot_cost is         : 2.832744302993792 

 At row:113, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:113, column:153,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:153,the value of plot_cost is         : 2.8881801325363363 

 At row:113, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:113, column:154,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:154,the value of plot_cost is         : 2.944424022481395 

 At row:113, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:113, column:155,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:155,the value of plot_cost is         : 3.0014759728289713 

 At row:113, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:113, column:156,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:156,the value of plot_cost is         : 3.059335983579061 

 At row:113, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:113, column:157,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:157,the value of plot_cost is         : 3.1180040547316645 

 At row:113, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:113, column:158,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:158,the value of plot_cost is         : 3.177480186286783 

 At row:113, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:113, column:159,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:159,the value of plot_cost is         : 3.237764378244418 

 At row:113, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:113, column:160,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:160,the value of plot_cost is         : 3.2988566306045684 

 At row:113, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:113, column:161,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:161,the value of plot_cost is         : 3.3607569433672326 

 At row:113, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:113, column:162,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:162,the value of plot_cost is         : 3.423465316532411 

 At row:113, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:113, column:163,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:163,the value of plot_cost is         : 3.4869817501001066 

 At row:113, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:113, column:164,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:164,the value of plot_cost is         : 3.5513062440703167 

 At row:113, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:113, column:165,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:165,the value of plot_cost is         : 3.616438798443043 

 At row:113, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:113, column:166,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:166,the value of plot_cost is         : 3.6823794132182837 

 At row:113, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:113, column:167,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:167,the value of plot_cost is         : 3.749128088396037 

 At row:113, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:113, column:168,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:168,the value of plot_cost is         : 3.816684823976307 

 At row:113, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:113, column:169,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:169,the value of plot_cost is         : 3.8850496199590925 

 At row:113, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:113, column:170,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:170,the value of plot_cost is         : 3.9542224763443947 

 At row:113, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:113, column:171,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:171,the value of plot_cost is         : 4.02420339313221 

 At row:113, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:113, column:172,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:172,the value of plot_cost is         : 4.094992370322539 

 At row:113, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:113, column:173,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:173,the value of plot_cost is         : 4.166589407915385 

 At row:113, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:113, column:174,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:174,the value of plot_cost is         : 4.238994505910747 

 At row:113, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:113, column:175,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:175,the value of plot_cost is         : 4.312207664308624 

 At row:113, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:113, column:176,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:176,the value of plot_cost is         : 4.386228883109015 

 At row:113, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:113, column:177,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:177,the value of plot_cost is         : 4.46105816231192 

 At row:113, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:113, column:178,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:178,the value of plot_cost is         : 4.5366955019173405 

 At row:113, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:113, column:179,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:179,the value of plot_cost is         : 4.613140901925277 

 At row:113, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:113, column:180,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:180,the value of plot_cost is         : 4.69039436233573 

 At row:113, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:113, column:181,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:181,the value of plot_cost is         : 4.768455883148696 

 At row:113, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:113, column:182,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:182,the value of plot_cost is         : 4.847325464364175 

 At row:113, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:113, column:183,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:183,the value of plot_cost is         : 4.927003105982173 

 At row:113, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:113, column:184,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:184,the value of plot_cost is         : 5.007488808002685 

 At row:113, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:113, column:185,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:185,the value of plot_cost is         : 5.088782570425714 

 At row:113, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:113, column:186,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:186,the value of plot_cost is         : 5.1708843932512565 

 At row:113, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:113, column:187,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:187,the value of plot_cost is         : 5.2537942764793115 

 At row:113, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:113, column:188,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:188,the value of plot_cost is         : 5.337512220109883 

 At row:113, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:113, column:189,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:189,the value of plot_cost is         : 5.42203822414297 

 At row:113, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:113, column:190,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:190,the value of plot_cost is         : 5.507372288578574 

 At row:113, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:113, column:191,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:191,the value of plot_cost is         : 5.593514413416691 

 At row:113, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:113, column:192,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:192,the value of plot_cost is         : 5.680464598657321 

 At row:113, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:113, column:193,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:193,the value of plot_cost is         : 5.768222844300469 

 At row:113, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:113, column:194,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:194,the value of plot_cost is         : 5.856789150346133 

 At row:113, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:113, column:195,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:195,the value of plot_cost is         : 5.946163516794311 

 At row:113, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:113, column:196,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:196,the value of plot_cost is         : 6.036345943645005 

 At row:113, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:113, column:197,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:197,the value of plot_cost is         : 6.127336430898212 

 At row:113, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:113, column:198,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:198,the value of plot_cost is         : 6.219134978553934 

 At row:113, column:199,the value of plot_t0 is           : 3.0
 At row:113, column:199,the value of plot_t1 is           : 1.271356783919598
 At row:113, column:199,the value of plot_cost is         : 6.311741586612173 

 At row:114, column:0,the value of plot_t0 is           : -1.0
 At row:114, column:0,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:0,the value of plot_cost is         : 3.593196672522698 

 At row:114, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:114, column:1,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:1,the value of plot_cost is         : 3.5284854639312844 

 At row:114, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:114, column:2,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:2,the value of plot_cost is         : 3.464582315742385 

 At row:114, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:114, column:3,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:3,the value of plot_cost is         : 3.401487227956003 

 At row:114, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:114, column:4,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:4,the value of plot_cost is         : 3.3392002005721335 

 At row:114, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:114, column:5,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:5,the value of plot_cost is         : 3.27772123359078 

 At row:114, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:114, column:6,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:6,the value of plot_cost is         : 3.2170503270119433 

 At row:114, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:114, column:7,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:7,the value of plot_cost is         : 3.157187480835619 

 At row:114, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:114, column:8,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:8,the value of plot_cost is         : 3.0981326950618118 

 At row:114, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:114, column:9,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:9,the value of plot_cost is         : 3.0398859696905176 

 At row:114, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:114, column:10,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:10,the value of plot_cost is         : 2.9824473047217404 

 At row:114, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:114, column:11,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:11,the value of plot_cost is         : 2.925816700155477 

 At row:114, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:114, column:12,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:12,the value of plot_cost is         : 2.8699941559917304 

 At row:114, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:114, column:13,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:13,the value of plot_cost is         : 2.814979672230498 

 At row:114, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:114, column:14,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:14,the value of plot_cost is         : 2.7607732488717796 

 At row:114, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:114, column:15,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:15,the value of plot_cost is         : 2.707374885915578 

 At row:114, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:114, column:16,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:16,the value of plot_cost is         : 2.65478458336189 

 At row:114, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:114, column:17,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:17,the value of plot_cost is         : 2.603002341210718 

 At row:114, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:114, column:18,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:18,the value of plot_cost is         : 2.552028159462062 

 At row:114, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:114, column:19,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:19,the value of plot_cost is         : 2.501862038115919 

 At row:114, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:114, column:20,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:20,the value of plot_cost is         : 2.452503977172292 

 At row:114, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:114, column:21,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:21,the value of plot_cost is         : 2.4039539766311804 

 At row:114, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:114, column:22,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:22,the value of plot_cost is         : 2.3562120364925834 

 At row:114, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:114, column:23,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:23,the value of plot_cost is         : 2.309278156756502 

 At row:114, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:114, column:24,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:24,the value of plot_cost is         : 2.2631523374229356 

 At row:114, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:114, column:25,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:25,the value of plot_cost is         : 2.217834578491884 

 At row:114, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:114, column:26,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:26,the value of plot_cost is         : 2.173324879963347 

 At row:114, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:114, column:27,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:27,the value of plot_cost is         : 2.129623241837326 

 At row:114, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:114, column:28,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:28,the value of plot_cost is         : 2.08672966411382 

 At row:114, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:114, column:29,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:29,the value of plot_cost is         : 2.0446441467928285 

 At row:114, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:114, column:30,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:30,the value of plot_cost is         : 2.003366689874353 

 At row:114, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:114, column:31,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:31,the value of plot_cost is         : 1.9628972933583917 

 At row:114, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:114, column:32,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:32,the value of plot_cost is         : 1.923235957244946 

 At row:114, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:114, column:33,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:33,the value of plot_cost is         : 1.8843826815340157 

 At row:114, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:114, column:34,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:34,the value of plot_cost is         : 1.8463374662255994 

 At row:114, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:114, column:35,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:35,the value of plot_cost is         : 1.8091003113196988 

 At row:114, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:114, column:36,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:36,the value of plot_cost is         : 1.7726712168163128 

 At row:114, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:114, column:37,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:37,the value of plot_cost is         : 1.7370501827154428 

 At row:114, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:114, column:38,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:38,the value of plot_cost is         : 1.7022372090170879 

 At row:114, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:114, column:39,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:39,the value of plot_cost is         : 1.668232295721247 

 At row:114, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:114, column:40,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:40,the value of plot_cost is         : 1.6350354428279223 

 At row:114, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:114, column:41,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:41,the value of plot_cost is         : 1.6026466503371115 

 At row:114, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:114, column:42,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:42,the value of plot_cost is         : 1.5710659182488171 

 At row:114, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:114, column:43,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:43,the value of plot_cost is         : 1.5402932465630375 

 At row:114, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:114, column:44,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:44,the value of plot_cost is         : 1.5103286352797722 

 At row:114, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:114, column:45,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:45,the value of plot_cost is         : 1.4811720843990228 

 At row:114, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:114, column:46,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:46,the value of plot_cost is         : 1.4528235939207876 

 At row:114, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:114, column:47,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:47,the value of plot_cost is         : 1.4252831638450683 

 At row:114, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:114, column:48,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:48,the value of plot_cost is         : 1.3985507941718645 

 At row:114, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:114, column:49,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:49,the value of plot_cost is         : 1.3726264849011742 

 At row:114, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:114, column:50,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:50,the value of plot_cost is         : 1.347510236033 

 At row:114, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:114, column:51,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:51,the value of plot_cost is         : 1.3232020475673405 

 At row:114, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:114, column:52,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:52,the value of plot_cost is         : 1.2997019195041968 

 At row:114, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:114, column:53,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:53,the value of plot_cost is         : 1.2770098518435682 

 At row:114, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:114, column:54,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:54,the value of plot_cost is         : 1.2551258445854538 

 At row:114, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:114, column:55,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:55,the value of plot_cost is         : 1.2340498977298553 

 At row:114, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:114, column:56,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:56,the value of plot_cost is         : 1.2137820112767708 

 At row:114, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:114, column:57,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:57,the value of plot_cost is         : 1.1943221852262027 

 At row:114, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:114, column:58,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:58,the value of plot_cost is         : 1.175670419578149 

 At row:114, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:114, column:59,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:59,the value of plot_cost is         : 1.1578267143326106 

 At row:114, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:114, column:60,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:60,the value of plot_cost is         : 1.1407910694895873 

 At row:114, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:114, column:61,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:61,the value of plot_cost is         : 1.1245634850490784 

 At row:114, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:114, column:62,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:62,the value of plot_cost is         : 1.1091439610110856 

 At row:114, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:114, column:63,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:63,the value of plot_cost is         : 1.0945324973756076 

 At row:114, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:114, column:64,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:64,the value of plot_cost is         : 1.0807290941426442 

 At row:114, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:114, column:65,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:65,the value of plot_cost is         : 1.0677337513121963 

 At row:114, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:114, column:66,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:66,the value of plot_cost is         : 1.055546468884263 

 At row:114, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:114, column:67,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:67,the value of plot_cost is         : 1.0441672468588459 

 At row:114, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:114, column:68,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:68,the value of plot_cost is         : 1.0335960852359432 

 At row:114, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:114, column:69,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:69,the value of plot_cost is         : 1.0238329840155556 

 At row:114, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:114, column:70,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:70,the value of plot_cost is         : 1.0148779431976829 

 At row:114, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:114, column:71,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:71,the value of plot_cost is         : 1.0067309627823249 

 At row:114, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:114, column:72,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:72,the value of plot_cost is         : 0.9993920427694829 

 At row:114, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:114, column:73,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:73,the value of plot_cost is         : 0.992861183159156 

 At row:114, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:114, column:74,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:74,the value of plot_cost is         : 0.9871383839513438 

 At row:114, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:114, column:75,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:75,the value of plot_cost is         : 0.9822236451460464 

 At row:114, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:114, column:76,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:76,the value of plot_cost is         : 0.9781169667432641 

 At row:114, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:114, column:77,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:77,the value of plot_cost is         : 0.9748183487429977 

 At row:114, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:114, column:78,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:78,the value of plot_cost is         : 0.9723277911452464 

 At row:114, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:114, column:79,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:79,the value of plot_cost is         : 0.9706452939500091 

 At row:114, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:114, column:80,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:80,the value of plot_cost is         : 0.9697708571572874 

 At row:114, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:114, column:81,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:81,the value of plot_cost is         : 0.9697044807670803 

 At row:114, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:114, column:82,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:82,the value of plot_cost is         : 0.9704461647793892 

 At row:114, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:114, column:83,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:83,the value of plot_cost is         : 0.9719959091942135 

 At row:114, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:114, column:84,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:84,the value of plot_cost is         : 0.974353714011552 

 At row:114, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:114, column:85,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:85,the value of plot_cost is         : 0.9775195792314049 

 At row:114, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:114, column:86,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:86,the value of plot_cost is         : 0.9814935048537737 

 At row:114, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:114, column:87,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:87,the value of plot_cost is         : 0.9862754908786586 

 At row:114, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:114, column:88,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:88,the value of plot_cost is         : 0.9918655373060578 

 At row:114, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:114, column:89,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:89,the value of plot_cost is         : 0.998263644135972 

 At row:114, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:114, column:90,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:90,the value of plot_cost is         : 1.0054698113684002 

 At row:114, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:114, column:91,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:91,the value of plot_cost is         : 1.0134840390033446 

 At row:114, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:114, column:92,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:92,the value of plot_cost is         : 1.0223063270408042 

 At row:114, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:114, column:93,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:93,the value of plot_cost is         : 1.0319366754807795 

 At row:114, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:114, column:94,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:94,the value of plot_cost is         : 1.0423750843232689 

 At row:114, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:114, column:95,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:95,the value of plot_cost is         : 1.0536215535682727 

 At row:114, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:114, column:96,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:96,the value of plot_cost is         : 1.0656760832157923 

 At row:114, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:114, column:97,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:97,the value of plot_cost is         : 1.078538673265828 

 At row:114, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:114, column:98,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:98,the value of plot_cost is         : 1.092209323718378 

 At row:114, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:114, column:99,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:99,the value of plot_cost is         : 1.1066880345734431 

 At row:114, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:114, column:100,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:100,the value of plot_cost is         : 1.1219748058310228 

 At row:114, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:114, column:101,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:101,the value of plot_cost is         : 1.1380696374911174 

 At row:114, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:114, column:102,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:102,the value of plot_cost is         : 1.154972529553728 

 At row:114, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:114, column:103,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:103,the value of plot_cost is         : 1.172683482018854 

 At row:114, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:114, column:104,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:104,the value of plot_cost is         : 1.191202494886494 

 At row:114, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:114, column:105,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:105,the value of plot_cost is         : 1.210529568156649 

 At row:114, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:114, column:106,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:106,the value of plot_cost is         : 1.2306647018293198 

 At row:114, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:114, column:107,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:107,the value of plot_cost is         : 1.2516078959045063 

 At row:114, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:114, column:108,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:108,the value of plot_cost is         : 1.2733591503822073 

 At row:114, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:114, column:109,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:109,the value of plot_cost is         : 1.295918465262423 

 At row:114, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:114, column:110,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:110,the value of plot_cost is         : 1.3192858405451533 

 At row:114, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:114, column:111,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:111,the value of plot_cost is         : 1.343461276230399 

 At row:114, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:114, column:112,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:112,the value of plot_cost is         : 1.3684447723181603 

 At row:114, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:114, column:113,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:113,the value of plot_cost is         : 1.3942363288084374 

 At row:114, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:114, column:114,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:114,the value of plot_cost is         : 1.4208359457012283 

 At row:114, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:114, column:115,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:115,the value of plot_cost is         : 1.4482436229965348 

 At row:114, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:114, column:116,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:116,the value of plot_cost is         : 1.4764593606943557 

 At row:114, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:114, column:117,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:117,the value of plot_cost is         : 1.5054831587946933 

 At row:114, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:114, column:118,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:118,the value of plot_cost is         : 1.5353150172975454 

 At row:114, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:114, column:119,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:119,the value of plot_cost is         : 1.5659549362029117 

 At row:114, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:114, column:120,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:120,the value of plot_cost is         : 1.5974029155107934 

 At row:114, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:114, column:121,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:121,the value of plot_cost is         : 1.6296589552211898 

 At row:114, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:114, column:122,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:122,the value of plot_cost is         : 1.662723055334102 

 At row:114, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:114, column:123,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:123,the value of plot_cost is         : 1.6965952158495299 

 At row:114, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:114, column:124,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:124,the value of plot_cost is         : 1.7312754367674714 

 At row:114, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:114, column:125,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:125,the value of plot_cost is         : 1.7667637180879288 

 At row:114, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:114, column:126,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:126,the value of plot_cost is         : 1.8030600598109006 

 At row:114, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:114, column:127,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:127,the value of plot_cost is         : 1.8401644619363893 

 At row:114, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:114, column:128,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:128,the value of plot_cost is         : 1.878076924464392 

 At row:114, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:114, column:129,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:129,the value of plot_cost is         : 1.9167974473949094 

 At row:114, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:114, column:130,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:130,the value of plot_cost is         : 1.956326030727942 

 At row:114, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:114, column:131,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:131,the value of plot_cost is         : 1.9966626744634886 

 At row:114, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:114, column:132,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:132,the value of plot_cost is         : 2.0378073786015514 

 At row:114, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:114, column:133,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:133,the value of plot_cost is         : 2.079760143142131 

 At row:114, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:114, column:134,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:134,the value of plot_cost is         : 2.122520968085224 

 At row:114, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:114, column:135,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:135,the value of plot_cost is         : 2.1660898534308317 

 At row:114, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:114, column:136,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:136,the value of plot_cost is         : 2.210466799178954 

 At row:114, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:114, column:137,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:137,the value of plot_cost is         : 2.2556518053295935 

 At row:114, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:114, column:138,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:138,the value of plot_cost is         : 2.3016448718827474 

 At row:114, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:114, column:139,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:139,the value of plot_cost is         : 2.348445998838416 

 At row:114, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:114, column:140,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:140,the value of plot_cost is         : 2.396055186196599 

 At row:114, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:114, column:141,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:141,the value of plot_cost is         : 2.4444724339572974 

 At row:114, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:114, column:142,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:142,the value of plot_cost is         : 2.493697742120511 

 At row:114, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:114, column:143,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:143,the value of plot_cost is         : 2.5437311106862404 

 At row:114, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:114, column:144,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:144,the value of plot_cost is         : 2.5945725396544845 

 At row:114, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:114, column:145,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:145,the value of plot_cost is         : 2.6462220290252434 

 At row:114, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:114, column:146,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:146,the value of plot_cost is         : 2.6986795787985165 

 At row:114, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:114, column:147,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:147,the value of plot_cost is         : 2.7519451889743074 

 At row:114, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:114, column:148,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:148,the value of plot_cost is         : 2.8060188595526117 

 At row:114, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:114, column:149,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:149,the value of plot_cost is         : 2.8609005905334306 

 At row:114, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:114, column:150,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:150,the value of plot_cost is         : 2.916590381916765 

 At row:114, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:114, column:151,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:151,the value of plot_cost is         : 2.973088233702615 

 At row:114, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:114, column:152,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:152,the value of plot_cost is         : 3.030394145890978 

 At row:114, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:114, column:153,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:153,the value of plot_cost is         : 3.0885081184818595 

 At row:114, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:114, column:154,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:154,the value of plot_cost is         : 3.1474301514752545 

 At row:114, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:114, column:155,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:155,the value of plot_cost is         : 3.2071602448711634 

 At row:114, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:114, column:156,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:156,the value of plot_cost is         : 3.2676983986695896 

 At row:114, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:114, column:157,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:157,the value of plot_cost is         : 3.3290446128705296 

 At row:114, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:114, column:158,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:158,the value of plot_cost is         : 3.3911988874739847 

 At row:114, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:114, column:159,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:159,the value of plot_cost is         : 3.4541612224799554 

 At row:114, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:114, column:160,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:160,the value of plot_cost is         : 3.5179316178884403 

 At row:114, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:114, column:161,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:161,the value of plot_cost is         : 3.5825100736994404 

 At row:114, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:114, column:162,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:162,the value of plot_cost is         : 3.647896589912955 

 At row:114, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:114, column:163,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:163,the value of plot_cost is         : 3.714091166528987 

 At row:114, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:114, column:164,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:164,the value of plot_cost is         : 3.7810938035475323 

 At row:114, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:114, column:165,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:165,the value of plot_cost is         : 3.848904500968593 

 At row:114, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:114, column:166,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:166,the value of plot_cost is         : 3.91752325879217 

 At row:114, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:114, column:167,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:167,the value of plot_cost is         : 3.9869500770182604 

 At row:114, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:114, column:168,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:168,the value of plot_cost is         : 4.057184955646867 

 At row:114, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:114, column:169,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:169,the value of plot_cost is         : 4.128227894677988 

 At row:114, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:114, column:170,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:170,the value of plot_cost is         : 4.200078894111624 

 At row:114, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:114, column:171,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:171,the value of plot_cost is         : 4.272737953947775 

 At row:114, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:114, column:172,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:172,the value of plot_cost is         : 4.3462050741864395 

 At row:114, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:114, column:173,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:173,the value of plot_cost is         : 4.420480254827623 

 At row:114, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:114, column:174,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:174,the value of plot_cost is         : 4.49556349587132 

 At row:114, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:114, column:175,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:175,the value of plot_cost is         : 4.571454797317531 

 At row:114, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:114, column:176,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:176,the value of plot_cost is         : 4.64815415916626 

 At row:114, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:114, column:177,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:177,the value of plot_cost is         : 4.7256615814175005 

 At row:114, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:114, column:178,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:178,the value of plot_cost is         : 4.803977064071257 

 At row:114, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:114, column:179,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:179,the value of plot_cost is         : 4.8831006071275285 

 At row:114, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:114, column:180,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:180,the value of plot_cost is         : 4.9630322105863165 

 At row:114, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:114, column:181,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:181,the value of plot_cost is         : 5.043771874447618 

 At row:114, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:114, column:182,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:182,the value of plot_cost is         : 5.125319598711434 

 At row:114, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:114, column:183,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:183,the value of plot_cost is         : 5.207675383377768 

 At row:114, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:114, column:184,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:184,the value of plot_cost is         : 5.2908392284466155 

 At row:114, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:114, column:185,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:185,the value of plot_cost is         : 5.374811133917979 

 At row:114, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:114, column:186,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:186,the value of plot_cost is         : 5.459591099791857 

 At row:114, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:114, column:187,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:187,the value of plot_cost is         : 5.545179126068248 

 At row:114, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:114, column:188,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:188,the value of plot_cost is         : 5.631575212747156 

 At row:114, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:114, column:189,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:189,the value of plot_cost is         : 5.718779359828579 

 At row:114, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:114, column:190,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:190,the value of plot_cost is         : 5.806791567312517 

 At row:114, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:114, column:191,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:191,the value of plot_cost is         : 5.89561183519897 

 At row:114, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:114, column:192,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:192,the value of plot_cost is         : 5.985240163487938 

 At row:114, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:114, column:193,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:193,the value of plot_cost is         : 6.075676552179421 

 At row:114, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:114, column:194,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:194,the value of plot_cost is         : 6.16692100127342 

 At row:114, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:114, column:195,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:195,the value of plot_cost is         : 6.258973510769934 

 At row:114, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:114, column:196,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:196,the value of plot_cost is         : 6.351834080668963 

 At row:114, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:114, column:197,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:197,the value of plot_cost is         : 6.445502710970507 

 At row:114, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:114, column:198,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:198,the value of plot_cost is         : 6.539979401674565 

 At row:114, column:199,the value of plot_t0 is           : 3.0
 At row:114, column:199,the value of plot_t1 is           : 1.291457286432161
 At row:114, column:199,the value of plot_cost is         : 6.63526415278114 

 At row:115, column:0,the value of plot_t0 is           : -1.0
 At row:115, column:0,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:0,the value of plot_cost is         : 3.3963514269120165 

 At row:115, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:115, column:1,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:1,the value of plot_cost is         : 3.334318361368938 

 At row:115, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:115, column:2,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:2,the value of plot_cost is         : 3.2730933562283746 

 At row:115, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:115, column:3,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:3,the value of plot_cost is         : 3.2126764114903272 

 At row:115, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:115, column:4,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:4,the value of plot_cost is         : 3.1530675271547945 

 At row:115, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:115, column:5,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:5,the value of plot_cost is         : 3.0942667032217774 

 At row:115, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:115, column:6,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:6,the value of plot_cost is         : 3.036273939691275 

 At row:115, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:115, column:7,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:7,the value of plot_cost is         : 2.9790892365632877 

 At row:115, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:115, column:8,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:8,the value of plot_cost is         : 2.9227125938378156 

 At row:115, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:115, column:9,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:9,the value of plot_cost is         : 2.867144011514858 

 At row:115, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:115, column:10,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:10,the value of plot_cost is         : 2.8123834895944166 

 At row:115, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:115, column:11,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:11,the value of plot_cost is         : 2.758431028076488 

 At row:115, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:115, column:12,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:12,the value of plot_cost is         : 2.705286626961078 

 At row:115, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:115, column:13,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:13,the value of plot_cost is         : 2.65295028624818 

 At row:115, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:115, column:14,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:14,the value of plot_cost is         : 2.601422005937799 

 At row:115, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:115, column:15,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:15,the value of plot_cost is         : 2.5507017860299324 

 At row:115, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:115, column:16,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:16,the value of plot_cost is         : 2.50078962652458 

 At row:115, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:115, column:17,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:17,the value of plot_cost is         : 2.4516855274217444 

 At row:115, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:115, column:18,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:18,the value of plot_cost is         : 2.4033894887214227 

 At row:115, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:115, column:19,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:19,the value of plot_cost is         : 2.3559015104236156 

 At row:115, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:115, column:20,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:20,the value of plot_cost is         : 2.3092215925283246 

 At row:115, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:115, column:21,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:21,the value of plot_cost is         : 2.2633497350355487 

 At row:115, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:115, column:22,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:22,the value of plot_cost is         : 2.2182859379452875 

 At row:115, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:115, column:23,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:23,the value of plot_cost is         : 2.1740302012575423 

 At row:115, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:115, column:24,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:24,the value of plot_cost is         : 2.130582524972311 

 At row:115, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:115, column:25,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:25,the value of plot_cost is         : 2.0879429090895956 

 At row:115, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:115, column:26,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:26,the value of plot_cost is         : 2.0461113536093944 

 At row:115, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:115, column:27,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:27,the value of plot_cost is         : 2.005087858531709 

 At row:115, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:115, column:28,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:28,the value of plot_cost is         : 1.964872423856539 

 At row:115, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:115, column:29,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:29,the value of plot_cost is         : 1.9254650495838832 

 At row:115, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:115, column:30,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:30,the value of plot_cost is         : 1.8868657357137428 

 At row:115, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:115, column:31,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:31,the value of plot_cost is         : 1.8490744822461174 

 At row:115, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:115, column:32,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:32,the value of plot_cost is         : 1.8120912891810073 

 At row:115, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:115, column:33,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:33,the value of plot_cost is         : 1.7759161565184125 

 At row:115, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:115, column:34,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:34,the value of plot_cost is         : 1.7405490842583324 

 At row:115, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:115, column:35,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:35,the value of plot_cost is         : 1.7059900724007675 

 At row:115, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:115, column:36,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:36,the value of plot_cost is         : 1.6722391209457175 

 At row:115, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:115, column:37,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:37,the value of plot_cost is         : 1.6392962298931828 

 At row:115, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:115, column:38,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:38,the value of plot_cost is         : 1.6071613992431635 

 At row:115, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:115, column:39,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:39,the value of plot_cost is         : 1.5758346289956586 

 At row:115, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:115, column:40,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:40,the value of plot_cost is         : 1.5453159191506696 

 At row:115, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:115, column:41,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:41,the value of plot_cost is         : 1.5156052697081948 

 At row:115, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:115, column:42,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:42,the value of plot_cost is         : 1.4867026806682353 

 At row:115, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:115, column:43,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:43,the value of plot_cost is         : 1.4586081520307919 

 At row:115, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:115, column:44,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:44,the value of plot_cost is         : 1.4313216837958624 

 At row:115, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:115, column:45,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:45,the value of plot_cost is         : 1.4048432759634488 

 At row:115, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:115, column:46,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:46,the value of plot_cost is         : 1.3791729285335492 

 At row:115, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:115, column:47,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:47,the value of plot_cost is         : 1.3543106415061656 

 At row:115, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:115, column:48,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:48,the value of plot_cost is         : 1.3302564148812974 

 At row:115, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:115, column:49,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:49,the value of plot_cost is         : 1.3070102486589432 

 At row:115, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:115, column:50,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:50,the value of plot_cost is         : 1.284572142839105 

 At row:115, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:115, column:51,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:51,the value of plot_cost is         : 1.2629420974217809 

 At row:115, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:115, column:52,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:52,the value of plot_cost is         : 1.242120112406973 

 At row:115, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:115, column:53,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:53,the value of plot_cost is         : 1.22210618779468 

 At row:115, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:115, column:54,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:54,the value of plot_cost is         : 1.2029003235849014 

 At row:115, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:115, column:55,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:55,the value of plot_cost is         : 1.1845025197776382 

 At row:115, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:115, column:56,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:56,the value of plot_cost is         : 1.16691277637289 

 At row:115, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:115, column:57,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:57,the value of plot_cost is         : 1.1501310933706572 

 At row:115, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:115, column:58,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:58,the value of plot_cost is         : 1.1341574707709396 

 At row:115, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:115, column:59,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:59,the value of plot_cost is         : 1.1189919085737368 

 At row:115, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:115, column:60,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:60,the value of plot_cost is         : 1.104634406779049 

 At row:115, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:115, column:61,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:61,the value of plot_cost is         : 1.091084965386876 

 At row:115, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:115, column:62,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:62,the value of plot_cost is         : 1.0783435843972191 

 At row:115, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:115, column:63,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:63,the value of plot_cost is         : 1.0664102638100765 

 At row:115, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:115, column:64,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:64,the value of plot_cost is         : 1.055285003625449 

 At row:115, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:115, column:65,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:65,the value of plot_cost is         : 1.0449678038433368 

 At row:115, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:115, column:66,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:66,the value of plot_cost is         : 1.0354586644637394 

 At row:115, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:115, column:67,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:67,the value of plot_cost is         : 1.0267575854866575 

 At row:115, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:115, column:68,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:68,the value of plot_cost is         : 1.018864566912091 

 At row:115, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:115, column:69,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:69,the value of plot_cost is         : 1.0117796087400388 

 At row:115, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:115, column:70,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:70,the value of plot_cost is         : 1.005502710970502 

 At row:115, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:115, column:71,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:71,the value of plot_cost is         : 1.0000338736034797 

 At row:115, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:115, column:72,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:72,the value of plot_cost is         : 0.995373096638974 

 At row:115, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:115, column:73,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:73,the value of plot_cost is         : 0.9915203800769824 

 At row:115, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:115, column:74,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:74,the value of plot_cost is         : 0.9884757239175058 

 At row:115, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:115, column:75,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:75,the value of plot_cost is         : 0.9862391281605444 

 At row:115, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:115, column:76,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:76,the value of plot_cost is         : 0.9848105928060975 

 At row:115, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:115, column:77,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:77,the value of plot_cost is         : 0.9841901178541665 

 At row:115, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:115, column:78,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:78,the value of plot_cost is         : 0.9843777033047513 

 At row:115, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:115, column:79,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:79,the value of plot_cost is         : 0.9853733491578504 

 At row:115, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:115, column:80,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:80,the value of plot_cost is         : 0.9871770554134633 

 At row:115, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:115, column:81,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:81,the value of plot_cost is         : 0.9897888220715925 

 At row:115, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:115, column:82,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:82,the value of plot_cost is         : 0.9932086491322375 

 At row:115, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:115, column:83,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:83,the value of plot_cost is         : 0.9974365365953971 

 At row:115, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:115, column:84,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:84,the value of plot_cost is         : 1.0024724844610715 

 At row:115, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:115, column:85,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:85,the value of plot_cost is         : 1.0083164927292598 

 At row:115, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:115, column:86,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:86,the value of plot_cost is         : 1.0149685613999646 

 At row:115, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:115, column:87,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:87,the value of plot_cost is         : 1.0224286904731845 

 At row:115, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:115, column:88,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:88,the value of plot_cost is         : 1.0306968799489202 

 At row:115, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:115, column:89,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:89,the value of plot_cost is         : 1.0397731298271697 

 At row:115, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:115, column:90,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:90,the value of plot_cost is         : 1.049657440107934 

 At row:115, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:115, column:91,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:91,the value of plot_cost is         : 1.060349810791214 

 At row:115, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:115, column:92,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:92,the value of plot_cost is         : 1.0718502418770097 

 At row:115, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:115, column:93,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:93,the value of plot_cost is         : 1.0841587333653202 

 At row:115, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:115, column:94,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:94,the value of plot_cost is         : 1.0972752852561456 

 At row:115, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:115, column:95,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:95,the value of plot_cost is         : 1.111199897549485 

 At row:115, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:115, column:96,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:96,the value of plot_cost is         : 1.1259325702453402 

 At row:115, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:115, column:97,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:97,the value of plot_cost is         : 1.1414733033437112 

 At row:115, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:115, column:98,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:98,the value of plot_cost is         : 1.1578220968445978 

 At row:115, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:115, column:99,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:99,the value of plot_cost is         : 1.1749789507479982 

 At row:115, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:115, column:100,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:100,the value of plot_cost is         : 1.1929438650539141 

 At row:115, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:115, column:101,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:101,the value of plot_cost is         : 1.211716839762344 

 At row:115, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:115, column:102,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:102,the value of plot_cost is         : 1.231297874873291 

 At row:115, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:115, column:103,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:103,the value of plot_cost is         : 1.2516869703867526 

 At row:115, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:115, column:104,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:104,the value of plot_cost is         : 1.272884126302728 

 At row:115, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:115, column:105,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:105,the value of plot_cost is         : 1.2948893426212187 

 At row:115, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:115, column:106,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:106,the value of plot_cost is         : 1.3177026193422248 

 At row:115, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:115, column:107,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:107,the value of plot_cost is         : 1.3413239564657466 

 At row:115, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:115, column:108,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:108,the value of plot_cost is         : 1.3657533539917843 

 At row:115, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:115, column:109,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:109,the value of plot_cost is         : 1.3909908119203358 

 At row:115, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:115, column:110,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:110,the value of plot_cost is         : 1.4170363302514015 

 At row:115, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:115, column:111,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:111,the value of plot_cost is         : 1.4438899089849828 

 At row:115, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:115, column:112,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:112,the value of plot_cost is         : 1.471551548121081 

 At row:115, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:115, column:113,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:113,the value of plot_cost is         : 1.5000212476596935 

 At row:115, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:115, column:114,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:114,the value of plot_cost is         : 1.5292990076008197 

 At row:115, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:115, column:115,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:115,the value of plot_cost is         : 1.5593848279444613 

 At row:115, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:115, column:116,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:116,the value of plot_cost is         : 1.590278708690618 

 At row:115, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:115, column:117,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:117,the value of plot_cost is         : 1.621980649839291 

 At row:115, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:115, column:118,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:118,the value of plot_cost is         : 1.6544906513904793 

 At row:115, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:115, column:119,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:119,the value of plot_cost is         : 1.6878087133441817 

 At row:115, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:115, column:120,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:120,the value of plot_cost is         : 1.7219348357003983 

 At row:115, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:115, column:121,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:121,the value of plot_cost is         : 1.7568690184591307 

 At row:115, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:115, column:122,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:122,the value of plot_cost is         : 1.7926112616203798 

 At row:115, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:115, column:123,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:123,the value of plot_cost is         : 1.8291615651841433 

 At row:115, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:115, column:124,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:124,the value of plot_cost is         : 1.8665199291504202 

 At row:115, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:115, column:125,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:125,the value of plot_cost is         : 1.9046863535192127 

 At row:115, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:115, column:126,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:126,the value of plot_cost is         : 1.94366083829052 

 At row:115, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:115, column:127,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:127,the value of plot_cost is         : 1.9834433834643441 

 At row:115, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:115, column:128,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:128,the value of plot_cost is         : 2.0240339890406833 

 At row:115, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:115, column:129,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:129,the value of plot_cost is         : 2.0654326550195368 

 At row:115, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:115, column:130,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:130,the value of plot_cost is         : 2.107639381400904 

 At row:115, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:115, column:131,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:131,the value of plot_cost is         : 2.150654168184787 

 At row:115, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:115, column:132,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:132,the value of plot_cost is         : 2.194477015371187 

 At row:115, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:115, column:133,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:133,the value of plot_cost is         : 2.2391079229601014 

 At row:115, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:115, column:134,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:134,the value of plot_cost is         : 2.2845468909515296 

 At row:115, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:115, column:135,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:135,the value of plot_cost is         : 2.3307939193454725 

 At row:115, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:115, column:136,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:136,the value of plot_cost is         : 2.3778490081419306 

 At row:115, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:115, column:137,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:137,the value of plot_cost is         : 2.4257121573409055 

 At row:115, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:115, column:138,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:138,the value of plot_cost is         : 2.4743833669423965 

 At row:115, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:115, column:139,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:139,the value of plot_cost is         : 2.5238626369464003 

 At row:115, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:115, column:140,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:140,the value of plot_cost is         : 2.5741499673529185 

 At row:115, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:115, column:141,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:141,the value of plot_cost is         : 2.625245358161952 

 At row:115, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:115, column:142,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:142,the value of plot_cost is         : 2.677148809373503 

 At row:115, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:115, column:143,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:143,the value of plot_cost is         : 2.729860320987569 

 At row:115, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:115, column:144,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:144,the value of plot_cost is         : 2.783379893004147 

 At row:115, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:115, column:145,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:145,the value of plot_cost is         : 2.837707525423242 

 At row:115, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:115, column:146,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:146,the value of plot_cost is         : 2.8928432182448507 

 At row:115, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:115, column:147,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:147,the value of plot_cost is         : 2.9487869714689765 

 At row:115, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:115, column:148,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:148,the value of plot_cost is         : 3.0055387850956183 

 At row:115, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:115, column:149,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:149,the value of plot_cost is         : 3.063098659124773 

 At row:115, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:115, column:150,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:150,the value of plot_cost is         : 3.121466593556442 

 At row:115, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:115, column:151,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:151,the value of plot_cost is         : 3.1806425883906293 

 At row:115, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:115, column:152,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:152,the value of plot_cost is         : 3.2406266436273286 

 At row:115, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:115, column:153,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:153,the value of plot_cost is         : 3.3014187592665447 

 At row:115, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:115, column:154,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:154,the value of plot_cost is         : 3.3630189353082747 

 At row:115, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:115, column:155,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:155,the value of plot_cost is         : 3.4254271717525193 

 At row:115, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:115, column:156,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:156,the value of plot_cost is         : 3.488643468599281 

 At row:115, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:115, column:157,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:157,the value of plot_cost is         : 3.5526678258485553 

 At row:115, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:115, column:158,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:158,the value of plot_cost is         : 3.617500243500349 

 At row:115, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:115, column:159,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:159,the value of plot_cost is         : 3.683140721554653 

 At row:115, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:115, column:160,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:160,the value of plot_cost is         : 3.7495892600114744 

 At row:115, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:115, column:161,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:161,the value of plot_cost is         : 3.8168458588708125 

 At row:115, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:115, column:162,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:162,the value of plot_cost is         : 3.884910518132662 

 At row:115, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:115, column:163,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:163,the value of plot_cost is         : 3.9537832377970297 

 At row:115, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:115, column:164,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:164,the value of plot_cost is         : 4.02346401786391 

 At row:115, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:115, column:165,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:165,the value of plot_cost is         : 4.093952858333306 

 At row:115, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:115, column:166,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:166,the value of plot_cost is         : 4.165249759205218 

 At row:115, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:115, column:167,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:167,the value of plot_cost is         : 4.237354720479644 

 At row:115, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:115, column:168,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:168,the value of plot_cost is         : 4.310267742156588 

 At row:115, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:115, column:169,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:169,the value of plot_cost is         : 4.383988824236044 

 At row:115, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:115, column:170,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:170,the value of plot_cost is         : 4.4585179667180155 

 At row:115, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:115, column:171,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:171,the value of plot_cost is         : 4.5338551696025045 

 At row:115, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:115, column:172,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:172,the value of plot_cost is         : 4.610000432889504 

 At row:115, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:115, column:173,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:173,the value of plot_cost is         : 4.686953756579023 

 At row:115, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:115, column:174,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:174,the value of plot_cost is         : 4.764715140671054 

 At row:115, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:115, column:175,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:175,the value of plot_cost is         : 4.843284585165601 

 At row:115, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:115, column:176,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:176,the value of plot_cost is         : 4.922662090062665 

 At row:115, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:115, column:177,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:177,the value of plot_cost is         : 5.002847655362241 

 At row:115, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:115, column:178,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:178,the value of plot_cost is         : 5.083841281064335 

 At row:115, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:115, column:179,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:179,the value of plot_cost is         : 5.165642967168942 

 At row:115, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:115, column:180,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:180,the value of plot_cost is         : 5.248252713676064 

 At row:115, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:115, column:181,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:181,the value of plot_cost is         : 5.331670520585704 

 At row:115, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:115, column:182,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:182,the value of plot_cost is         : 5.415896387897856 

 At row:115, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:115, column:183,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:183,the value of plot_cost is         : 5.500930315612525 

 At row:115, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:115, column:184,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:184,the value of plot_cost is         : 5.586772303729709 

 At row:115, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:115, column:185,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:185,the value of plot_cost is         : 5.673422352249405 

 At row:115, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:115, column:186,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:186,the value of plot_cost is         : 5.760880461171619 

 At row:115, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:115, column:187,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:187,the value of plot_cost is         : 5.849146630496347 

 At row:115, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:115, column:188,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:188,the value of plot_cost is         : 5.938220860223592 

 At row:115, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:115, column:189,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:189,the value of plot_cost is         : 6.028103150353349 

 At row:115, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:115, column:190,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:190,the value of plot_cost is         : 6.118793500885623 

 At row:115, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:115, column:191,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:191,the value of plot_cost is         : 6.2102919118204145 

 At row:115, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:115, column:192,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:192,the value of plot_cost is         : 6.302598383157716 

 At row:115, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:115, column:193,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:193,the value of plot_cost is         : 6.395712914897538 

 At row:115, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:115, column:194,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:194,the value of plot_cost is         : 6.4896355070398695 

 At row:115, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:115, column:195,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:195,the value of plot_cost is         : 6.584366159584719 

 At row:115, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:115, column:196,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:196,the value of plot_cost is         : 6.679904872532084 

 At row:115, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:115, column:197,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:197,the value of plot_cost is         : 6.776251645881966 

 At row:115, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:115, column:198,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:198,the value of plot_cost is         : 6.873406479634358 

 At row:115, column:199,the value of plot_t0 is           : 3.0
 At row:115, column:199,the value of plot_t1 is           : 1.3115577889447239
 At row:115, column:199,the value of plot_cost is         : 6.971369373789267 

 At row:116, column:0,the value of plot_t0 is           : -1.0
 At row:116, column:0,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:0,the value of plot_cost is         : 3.212088836140503 

 At row:116, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:116, column:1,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:1,the value of plot_cost is         : 3.1527339136457613 

 At row:116, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:116, column:2,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:2,the value of plot_cost is         : 3.0941870515535337 

 At row:116, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:116, column:3,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:3,the value of plot_cost is         : 3.0364482498638212 

 At row:116, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:116, column:4,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:4,the value of plot_cost is         : 2.9795175085766243 

 At row:116, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:116, column:5,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:5,the value of plot_cost is         : 2.9233948276919426 

 At row:116, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:116, column:6,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:6,the value of plot_cost is         : 2.8680802072097764 

 At row:116, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:116, column:7,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:7,the value of plot_cost is         : 2.8135736471301245 

 At row:116, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:116, column:8,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:8,the value of plot_cost is         : 2.759875147452988 

 At row:116, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:116, column:9,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:9,the value of plot_cost is         : 2.7069847081783656 

 At row:116, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:116, column:10,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:10,the value of plot_cost is         : 2.65490232930626 

 At row:116, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:116, column:11,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:11,the value of plot_cost is         : 2.6036280108366676 

 At row:116, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:116, column:12,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:12,the value of plot_cost is         : 2.553161752769592 

 At row:116, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:116, column:13,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:13,the value of plot_cost is         : 2.503503555105031 

 At row:116, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:116, column:14,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:14,the value of plot_cost is         : 2.4546534178429846 

 At row:116, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:116, column:15,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:15,the value of plot_cost is         : 2.4066113409834538 

 At row:116, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:116, column:16,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:16,the value of plot_cost is         : 2.3593773245264376 

 At row:116, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:116, column:17,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:17,the value of plot_cost is         : 2.3129513684719374 

 At row:116, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:116, column:18,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:18,the value of plot_cost is         : 2.2673334728199515 

 At row:116, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:116, column:19,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:19,the value of plot_cost is         : 2.2225236375704807 

 At row:116, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:116, column:20,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:20,the value of plot_cost is         : 2.178521862723525 

 At row:116, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:116, column:21,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:21,the value of plot_cost is         : 2.1353281482790845 

 At row:116, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:116, column:22,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:22,the value of plot_cost is         : 2.092942494237159 

 At row:116, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:116, column:23,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:23,the value of plot_cost is         : 2.0513649005977492 

 At row:116, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:116, column:24,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:24,the value of plot_cost is         : 2.0105953673608536 

 At row:116, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:116, column:25,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:25,the value of plot_cost is         : 1.970633894526474 

 At row:116, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:116, column:26,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:26,the value of plot_cost is         : 1.9314804820946085 

 At row:116, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:116, column:27,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:27,the value of plot_cost is         : 1.8931351300652586 

 At row:116, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:116, column:28,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:28,the value of plot_cost is         : 1.8555978384384242 

 At row:116, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:116, column:29,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:29,the value of plot_cost is         : 1.8188686072141043 

 At row:116, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:116, column:30,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:30,the value of plot_cost is         : 1.7829474363922995 

 At row:116, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:116, column:31,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:31,the value of plot_cost is         : 1.74783432597301 

 At row:116, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:116, column:32,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:32,the value of plot_cost is         : 1.7135292759562355 

 At row:116, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:116, column:33,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:33,the value of plot_cost is         : 1.6800322863419765 

 At row:116, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:116, column:34,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:34,the value of plot_cost is         : 1.6473433571302318 

 At row:116, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:116, column:35,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:35,the value of plot_cost is         : 1.615462488321003 

 At row:116, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:116, column:36,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:36,the value of plot_cost is         : 1.5843896799142885 

 At row:116, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:116, column:37,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:37,the value of plot_cost is         : 1.5541249319100894 

 At row:116, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:116, column:38,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:38,the value of plot_cost is         : 1.5246682443084059 

 At row:116, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:116, column:39,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:39,the value of plot_cost is         : 1.4960196171092366 

 At row:116, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:116, column:40,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:40,the value of plot_cost is         : 1.468179050312583 

 At row:116, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:116, column:41,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:41,the value of plot_cost is         : 1.4411465439184439 

 At row:116, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:116, column:42,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:42,the value of plot_cost is         : 1.4149220979268209 

 At row:116, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:116, column:43,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:43,the value of plot_cost is         : 1.3895057123377124 

 At row:116, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:116, column:44,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:44,the value of plot_cost is         : 1.3648973871511185 

 At row:116, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:116, column:45,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:45,the value of plot_cost is         : 1.3410971223670405 

 At row:116, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:116, column:46,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:46,the value of plot_cost is         : 1.3181049179854771 

 At row:116, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:116, column:47,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:47,the value of plot_cost is         : 1.2959207740064291 

 At row:116, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:116, column:48,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:48,the value of plot_cost is         : 1.274544690429896 

 At row:116, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:116, column:49,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:49,the value of plot_cost is         : 1.2539766672558776 

 At row:116, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:116, column:50,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:50,the value of plot_cost is         : 1.2342167044843753 

 At row:116, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:116, column:51,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:51,the value of plot_cost is         : 1.2152648021153871 

 At row:116, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:116, column:52,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:52,the value of plot_cost is         : 1.1971209601489143 

 At row:116, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:116, column:53,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:53,the value of plot_cost is         : 1.1797851785849571 

 At row:116, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:116, column:54,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:54,the value of plot_cost is         : 1.1632574574235142 

 At row:116, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:116, column:55,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:55,the value of plot_cost is         : 1.1475377966645868 

 At row:116, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:116, column:56,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:56,the value of plot_cost is         : 1.1326261963081743 

 At row:116, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:116, column:57,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:57,the value of plot_cost is         : 1.118522656354277 

 At row:116, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:116, column:58,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:58,the value of plot_cost is         : 1.1052271768028952 

 At row:116, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:116, column:59,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:59,the value of plot_cost is         : 1.092739757654028 

 At row:116, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:116, column:60,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:60,the value of plot_cost is         : 1.081060398907676 

 At row:116, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:116, column:61,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:61,the value of plot_cost is         : 1.0701891005638389 

 At row:116, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:116, column:62,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:62,the value of plot_cost is         : 1.0601258626225172 

 At row:116, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:116, column:63,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:63,the value of plot_cost is         : 1.0508706850837106 

 At row:116, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:116, column:64,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:64,the value of plot_cost is         : 1.0424235679474187 

 At row:116, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:116, column:65,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:65,the value of plot_cost is         : 1.0347845112136422 

 At row:116, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:116, column:66,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:66,the value of plot_cost is         : 1.0279535148823806 

 At row:116, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:116, column:67,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:67,the value of plot_cost is         : 1.021930578953634 

 At row:116, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:116, column:68,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:68,the value of plot_cost is         : 1.016715703427403 

 At row:116, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:116, column:69,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:69,the value of plot_cost is         : 1.0123088883036868 

 At row:116, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:116, column:70,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:70,the value of plot_cost is         : 1.0087101335824853 

 At row:116, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:116, column:71,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:71,the value of plot_cost is         : 1.0059194392637996 

 At row:116, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:116, column:72,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:72,the value of plot_cost is         : 1.0039368053476287 

 At row:116, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:116, column:73,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:73,the value of plot_cost is         : 1.0027622318339728 

 At row:116, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:116, column:74,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:74,the value of plot_cost is         : 1.0023957187228323 

 At row:116, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:116, column:75,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:75,the value of plot_cost is         : 1.0028372660142058 

 At row:116, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:116, column:76,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:76,the value of plot_cost is         : 1.0040868737080955 

 At row:116, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:116, column:77,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:77,the value of plot_cost is         : 1.0061445418044996 

 At row:116, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:116, column:78,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:78,the value of plot_cost is         : 1.0090102703034196 

 At row:116, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:116, column:79,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:79,the value of plot_cost is         : 1.0126840592048547 

 At row:116, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:116, column:80,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:80,the value of plot_cost is         : 1.0171659085088036 

 At row:116, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:116, column:81,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:81,the value of plot_cost is         : 1.0224558182152688 

 At row:116, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:116, column:82,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:82,the value of plot_cost is         : 1.028553788324249 

 At row:116, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:116, column:83,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:83,the value of plot_cost is         : 1.0354598188357438 

 At row:116, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:116, column:84,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:84,the value of plot_cost is         : 1.0431739097497543 

 At row:116, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:116, column:85,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:85,the value of plot_cost is         : 1.0516960610662787 

 At row:116, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:116, column:86,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:86,the value of plot_cost is         : 1.0610262727853192 

 At row:116, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:116, column:87,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:87,the value of plot_cost is         : 1.0711645449068745 

 At row:116, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:116, column:88,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:88,the value of plot_cost is         : 1.082110877430945 

 At row:116, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:116, column:89,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:89,the value of plot_cost is         : 1.093865270357531 

 At row:116, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:116, column:90,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:90,the value of plot_cost is         : 1.106427723686631 

 At row:116, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:116, column:91,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:91,the value of plot_cost is         : 1.119798237418247 

 At row:116, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:116, column:92,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:92,the value of plot_cost is         : 1.133976811552378 

 At row:116, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:116, column:93,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:93,the value of plot_cost is         : 1.1489634460890237 

 At row:116, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:116, column:94,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:94,the value of plot_cost is         : 1.1647581410281846 

 At row:116, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:116, column:95,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:95,the value of plot_cost is         : 1.1813608963698603 

 At row:116, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:116, column:96,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:96,the value of plot_cost is         : 1.1987717121140513 

 At row:116, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:116, column:97,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:97,the value of plot_cost is         : 1.2169905882607575 

 At row:116, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:116, column:98,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:98,the value of plot_cost is         : 1.2360175248099796 

 At row:116, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:116, column:99,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:99,the value of plot_cost is         : 1.2558525217617162 

 At row:116, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:116, column:100,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:100,the value of plot_cost is         : 1.2764955791159673 

 At row:116, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:116, column:101,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:101,the value of plot_cost is         : 1.2979466968727336 

 At row:116, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:116, column:102,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:102,the value of plot_cost is         : 1.3202058750320156 

 At row:116, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:116, column:103,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:103,the value of plot_cost is         : 1.3432731135938123 

 At row:116, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:116, column:104,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:104,the value of plot_cost is         : 1.3671484125581246 

 At row:116, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:116, column:105,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:105,the value of plot_cost is         : 1.3918317719249507 

 At row:116, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:116, column:106,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:106,the value of plot_cost is         : 1.4173231916942928 

 At row:116, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:116, column:107,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:107,the value of plot_cost is         : 1.4436226718661493 

 At row:116, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:116, column:108,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:108,the value of plot_cost is         : 1.4707302124405224 

 At row:116, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:116, column:109,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:109,the value of plot_cost is         : 1.4986458134174103 

 At row:116, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:116, column:110,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:110,the value of plot_cost is         : 1.5273694747968123 

 At row:116, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:116, column:111,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:111,the value of plot_cost is         : 1.5569011965787294 

 At row:116, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:116, column:112,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:112,the value of plot_cost is         : 1.5872409787631625 

 At row:116, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:116, column:113,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:113,the value of plot_cost is         : 1.6183888213501096 

 At row:116, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:116, column:114,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:114,the value of plot_cost is         : 1.6503447243395728 

 At row:116, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:116, column:115,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:115,the value of plot_cost is         : 1.6831086877315509 

 At row:116, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:116, column:116,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:116,the value of plot_cost is         : 1.7166807115260427 

 At row:116, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:116, column:117,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:117,the value of plot_cost is         : 1.7510607957230502 

 At row:116, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:116, column:118,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:118,the value of plot_cost is         : 1.7862489403225745 

 At row:116, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:116, column:119,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:119,the value of plot_cost is         : 1.8222451453246127 

 At row:116, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:116, column:120,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:120,the value of plot_cost is         : 1.8590494107291662 

 At row:116, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:116, column:121,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:121,the value of plot_cost is         : 1.8966617365362337 

 At row:116, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:116, column:122,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:122,the value of plot_cost is         : 1.9350821227458177 

 At row:116, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:116, column:123,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:123,the value of plot_cost is         : 1.974310569357916 

 At row:116, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:116, column:124,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:124,the value of plot_cost is         : 2.01434707637253 

 At row:116, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:116, column:125,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:125,the value of plot_cost is         : 2.0551916437896587 

 At row:116, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:116, column:126,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:126,the value of plot_cost is         : 2.0968442716093016 

 At row:116, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:116, column:127,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:127,the value of plot_cost is         : 2.13930495983146 

 At row:116, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:116, column:128,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:128,the value of plot_cost is         : 2.1825737084561347 

 At row:116, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:116, column:129,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:129,the value of plot_cost is         : 2.226650517483325 

 At row:116, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:116, column:130,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:130,the value of plot_cost is         : 2.271535386913029 

 At row:116, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:116, column:131,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:131,the value of plot_cost is         : 2.317228316745247 

 At row:116, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:116, column:132,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:132,the value of plot_cost is         : 2.3637293069799816 

 At row:116, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:116, column:133,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:133,the value of plot_cost is         : 2.4110383576172314 

 At row:116, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:116, column:134,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:134,the value of plot_cost is         : 2.459155468656996 

 At row:116, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:116, column:135,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:135,the value of plot_cost is         : 2.508080640099276 

 At row:116, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:116, column:136,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:136,the value of plot_cost is         : 2.557813871944069 

 At row:116, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:116, column:137,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:137,the value of plot_cost is         : 2.6083551641913787 

 At row:116, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:116, column:138,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:138,the value of plot_cost is         : 2.659704516841204 

 At row:116, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:116, column:139,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:139,the value of plot_cost is         : 2.711861929893545 

 At row:116, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:116, column:140,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:140,the value of plot_cost is         : 2.7648274033483995 

 At row:116, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:116, column:141,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:141,the value of plot_cost is         : 2.818600937205769 

 At row:116, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:116, column:142,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:142,the value of plot_cost is         : 2.8731825314656545 

 At row:116, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:116, column:143,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:143,the value of plot_cost is         : 2.928572186128055 

 At row:116, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:116, column:144,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:144,the value of plot_cost is         : 2.984769901192971 

 At row:116, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:116, column:145,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:145,the value of plot_cost is         : 3.0417756766604014 

 At row:116, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:116, column:146,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:146,the value of plot_cost is         : 3.099589512530345 

 At row:116, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:116, column:147,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:147,the value of plot_cost is         : 3.1582114088028055 

 At row:116, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:116, column:148,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:148,the value of plot_cost is         : 3.2176413654777827 

 At row:116, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:116, column:149,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:149,the value of plot_cost is         : 3.2778793825552746 

 At row:116, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:116, column:150,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:150,the value of plot_cost is         : 3.33892546003528 

 At row:116, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:116, column:151,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:151,the value of plot_cost is         : 3.400779597917802 

 At row:116, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:116, column:152,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:152,the value of plot_cost is         : 3.4634417962028365 

 At row:116, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:116, column:153,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:153,the value of plot_cost is         : 3.5269120548903876 

 At row:116, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:116, column:154,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:154,the value of plot_cost is         : 3.5911903739804547 

 At row:116, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:116, column:155,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:155,the value of plot_cost is         : 3.6562767534730356 

 At row:116, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:116, column:156,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:156,the value of plot_cost is         : 3.722171193368131 

 At row:116, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:116, column:157,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:157,the value of plot_cost is         : 3.7888736936657414 

 At row:116, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:116, column:158,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:158,the value of plot_cost is         : 3.856384254365869 

 At row:116, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:116, column:159,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:159,the value of plot_cost is         : 3.9247028754685123 

 At row:116, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:116, column:160,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:160,the value of plot_cost is         : 3.993829556973669 

 At row:116, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:116, column:161,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:161,the value of plot_cost is         : 4.063764298881341 

 At row:116, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:116, column:162,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:162,the value of plot_cost is         : 4.134507101191526 

 At row:116, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:116, column:163,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:163,the value of plot_cost is         : 4.206057963904229 

 At row:116, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:116, column:164,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:164,the value of plot_cost is         : 4.278416887019447 

 At row:116, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:116, column:165,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:165,the value of plot_cost is         : 4.351583870537179 

 At row:116, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:116, column:166,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:166,the value of plot_cost is         : 4.425558914457426 

 At row:116, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:116, column:167,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:167,the value of plot_cost is         : 4.500342018780186 

 At row:116, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:116, column:168,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:168,the value of plot_cost is         : 4.575933183505465 

 At row:116, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:116, column:169,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:169,the value of plot_cost is         : 4.652332408633258 

 At row:116, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:116, column:170,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:170,the value of plot_cost is         : 4.729539694163566 

 At row:116, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:116, column:171,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:171,the value of plot_cost is         : 4.80755504009639 

 At row:116, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:116, column:172,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:172,the value of plot_cost is         : 4.886378446431727 

 At row:116, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:116, column:173,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:173,the value of plot_cost is         : 4.96600991316958 

 At row:116, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:116, column:174,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:174,the value of plot_cost is         : 5.0464494403099485 

 At row:116, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:116, column:175,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:175,the value of plot_cost is         : 5.1276970278528315 

 At row:116, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:116, column:176,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:176,the value of plot_cost is         : 5.209752675798229 

 At row:116, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:116, column:177,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:177,the value of plot_cost is         : 5.2926163841461396 

 At row:116, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:116, column:178,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:178,the value of plot_cost is         : 5.376288152896571 

 At row:116, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:116, column:179,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:179,the value of plot_cost is         : 5.460767982049513 

 At row:116, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:116, column:180,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:180,the value of plot_cost is         : 5.546055871604973 

 At row:116, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:116, column:181,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:181,the value of plot_cost is         : 5.632151821562949 

 At row:116, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:116, column:182,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:182,the value of plot_cost is         : 5.719055831923435 

 At row:116, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:116, column:183,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:183,the value of plot_cost is         : 5.806767902686438 

 At row:116, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:116, column:184,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:184,the value of plot_cost is         : 5.895288033851958 

 At row:116, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:116, column:185,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:185,the value of plot_cost is         : 5.984616225419992 

 At row:116, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:116, column:186,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:186,the value of plot_cost is         : 6.074752477390541 

 At row:116, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:116, column:187,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:187,the value of plot_cost is         : 6.165696789763603 

 At row:116, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:116, column:188,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:188,the value of plot_cost is         : 6.257449162539182 

 At row:116, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:116, column:189,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:189,the value of plot_cost is         : 6.350009595717278 

 At row:116, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:116, column:190,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:190,the value of plot_cost is         : 6.443378089297888 

 At row:116, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:116, column:191,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:191,the value of plot_cost is         : 6.537554643281013 

 At row:116, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:116, column:192,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:192,the value of plot_cost is         : 6.632539257666652 

 At row:116, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:116, column:193,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:193,the value of plot_cost is         : 6.728331932454805 

 At row:116, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:116, column:194,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:194,the value of plot_cost is         : 6.824932667645478 

 At row:116, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:116, column:195,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:195,the value of plot_cost is         : 6.922341463238662 

 At row:116, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:116, column:196,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:196,the value of plot_cost is         : 7.020558319234359 

 At row:116, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:116, column:197,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:197,the value of plot_cost is         : 7.119583235632578 

 At row:116, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:116, column:198,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:198,the value of plot_cost is         : 7.2194162124333054 

 At row:116, column:199,the value of plot_t0 is           : 3.0
 At row:116, column:199,the value of plot_t1 is           : 1.3316582914572863
 At row:116, column:199,the value of plot_cost is         : 7.320057249636551 

 At row:117, column:0,the value of plot_t0 is           : -1.0
 At row:117, column:0,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:0,the value of plot_cost is         : 3.0404089002081474 

 At row:117, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:117, column:1,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:1,the value of plot_cost is         : 2.9837321207617413 

 At row:117, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:117, column:2,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:2,the value of plot_cost is         : 2.9278634017178495 

 At row:117, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:117, column:3,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:3,the value of plot_cost is         : 2.8728027430764738 

 At row:117, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:117, column:4,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:4,the value of plot_cost is         : 2.818550144837612 

 At row:117, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:117, column:5,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:5,the value of plot_cost is         : 2.765105607001266 

 At row:117, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:117, column:6,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:6,the value of plot_cost is         : 2.7124691295674355 

 At row:117, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:117, column:7,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:7,the value of plot_cost is         : 2.660640712536119 

 At row:117, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:117, column:8,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:8,the value of plot_cost is         : 2.6096203559073183 

 At row:117, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:117, column:9,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:9,the value of plot_cost is         : 2.5594080596810316 

 At row:117, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:117, column:10,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:10,the value of plot_cost is         : 2.5100038238572617 

 At row:117, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:117, column:11,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:11,the value of plot_cost is         : 2.4614076484360052 

 At row:117, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:117, column:12,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:12,the value of plot_cost is         : 2.4136195334172657 

 At row:117, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:117, column:13,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:13,the value of plot_cost is         : 2.3666394788010408 

 At row:117, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:117, column:14,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:14,the value of plot_cost is         : 2.3204674845873297 

 At row:117, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:117, column:15,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:15,the value of plot_cost is         : 2.275103550776134 

 At row:117, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:117, column:16,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:16,the value of plot_cost is         : 2.2305476773674537 

 At row:117, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:117, column:17,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:17,the value of plot_cost is         : 2.18679986436129 

 At row:117, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:117, column:18,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:18,the value of plot_cost is         : 2.1438601117576392 

 At row:117, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:117, column:19,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:19,the value of plot_cost is         : 2.1017284195565042 

 At row:117, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:117, column:20,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:20,the value of plot_cost is         : 2.0604047877578844 

 At row:117, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:117, column:21,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:21,the value of plot_cost is         : 2.0198892163617796 

 At row:117, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:117, column:22,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:22,the value of plot_cost is         : 1.9801817053681905 

 At row:117, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:117, column:23,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:23,the value of plot_cost is         : 1.941282254777116 

 At row:117, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:117, column:24,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:24,the value of plot_cost is         : 1.9031908645885562 

 At row:117, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:117, column:25,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:25,the value of plot_cost is         : 1.865907534802512 

 At row:117, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:117, column:26,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:26,the value of plot_cost is         : 1.8294322654189823 

 At row:117, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:117, column:27,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:27,the value of plot_cost is         : 1.7937650564379688 

 At row:117, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:117, column:28,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:28,the value of plot_cost is         : 1.7589059078594698 

 At row:117, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:117, column:29,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:29,the value of plot_cost is         : 1.7248548196834852 

 At row:117, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:117, column:30,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:30,the value of plot_cost is         : 1.6916117919100169 

 At row:117, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:117, column:31,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:31,the value of plot_cost is         : 1.6591768245390623 

 At row:117, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:117, column:32,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:32,the value of plot_cost is         : 1.627549917570624 

 At row:117, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:117, column:33,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:33,the value of plot_cost is         : 1.5967310710047005 

 At row:117, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:117, column:34,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:34,the value of plot_cost is         : 1.566720284841292 

 At row:117, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:117, column:35,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:35,the value of plot_cost is         : 1.5375175590803982 

 At row:117, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:117, column:36,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:36,the value of plot_cost is         : 1.5091228937220198 

 At row:117, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:117, column:37,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:37,the value of plot_cost is         : 1.4815362887661565 

 At row:117, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:117, column:38,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:38,the value of plot_cost is         : 1.4547577442128086 

 At row:117, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:117, column:39,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:39,the value of plot_cost is         : 1.4287872600619755 

 At row:117, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:117, column:40,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:40,the value of plot_cost is         : 1.4036248363136574 

 At row:117, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:117, column:41,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:41,the value of plot_cost is         : 1.379270472967854 

 At row:117, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:117, column:42,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:42,the value of plot_cost is         : 1.3557241700245661 

 At row:117, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:117, column:43,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:43,the value of plot_cost is         : 1.332985927483794 

 At row:117, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:117, column:44,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:44,the value of plot_cost is         : 1.311055745345536 

 At row:117, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:117, column:45,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:45,the value of plot_cost is         : 1.2899336236097934 

 At row:117, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:117, column:46,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:46,the value of plot_cost is         : 1.2696195622765658 

 At row:117, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:117, column:47,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:47,the value of plot_cost is         : 1.2501135613458532 

 At row:117, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:117, column:48,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:48,the value of plot_cost is         : 1.2314156208176563 

 At row:117, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:117, column:49,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:49,the value of plot_cost is         : 1.213525740691974 

 At row:117, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:117, column:50,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:50,the value of plot_cost is         : 1.1964439209688067 

 At row:117, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:117, column:51,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:51,the value of plot_cost is         : 1.1801701616481546 

 At row:117, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:117, column:52,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:52,the value of plot_cost is         : 1.164704462730018 

 At row:117, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:117, column:53,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:53,the value of plot_cost is         : 1.150046824214396 

 At row:117, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:117, column:54,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:54,the value of plot_cost is         : 1.136197246101289 

 At row:117, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:117, column:55,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:55,the value of plot_cost is         : 1.1231557283906972 

 At row:117, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:117, column:56,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:56,the value of plot_cost is         : 1.1109222710826205 

 At row:117, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:117, column:57,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:57,the value of plot_cost is         : 1.099496874177059 

 At row:117, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:117, column:58,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:58,the value of plot_cost is         : 1.0888795376740128 

 At row:117, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:117, column:59,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:59,the value of plot_cost is         : 1.0790702615734813 

 At row:117, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:117, column:60,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:60,the value of plot_cost is         : 1.070069045875465 

 At row:117, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:117, column:61,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:61,the value of plot_cost is         : 1.0618758905799637 

 At row:117, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:117, column:62,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:62,the value of plot_cost is         : 1.0544907956869778 

 At row:117, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:117, column:63,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:63,the value of plot_cost is         : 1.0479137611965068 

 At row:117, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:117, column:64,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:64,the value of plot_cost is         : 1.042144787108551 

 At row:117, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:117, column:65,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:65,the value of plot_cost is         : 1.0371838734231096 

 At row:117, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:117, column:66,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:66,the value of plot_cost is         : 1.033031020140184 

 At row:117, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:117, column:67,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:67,the value of plot_cost is         : 1.0296862272597733 

 At row:117, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:117, column:68,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:68,the value of plot_cost is         : 1.0271494947818782 

 At row:117, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:117, column:69,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:69,the value of plot_cost is         : 1.0254208227064978 

 At row:117, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:117, column:70,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:70,the value of plot_cost is         : 1.0245002110336316 

 At row:117, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:117, column:71,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:71,the value of plot_cost is         : 1.0243876597632815 

 At row:117, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:117, column:72,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:72,the value of plot_cost is         : 1.0250831688954467 

 At row:117, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:117, column:73,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:73,the value of plot_cost is         : 1.0265867384301266 

 At row:117, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:117, column:74,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:74,the value of plot_cost is         : 1.0288983683673216 

 At row:117, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:117, column:75,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:75,the value of plot_cost is         : 1.0320180587070311 

 At row:117, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:117, column:76,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:76,the value of plot_cost is         : 1.0359458094492562 

 At row:117, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:117, column:77,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:77,the value of plot_cost is         : 1.0406816205939964 

 At row:117, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:117, column:78,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:78,the value of plot_cost is         : 1.046225492141252 

 At row:117, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:117, column:79,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:79,the value of plot_cost is         : 1.0525774240910228 

 At row:117, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:117, column:80,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:80,the value of plot_cost is         : 1.0597374164433075 

 At row:117, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:117, column:81,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:81,the value of plot_cost is         : 1.0677054691981083 

 At row:117, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:117, column:82,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:82,the value of plot_cost is         : 1.0764815823554243 

 At row:117, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:117, column:83,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:83,the value of plot_cost is         : 1.0860657559152551 

 At row:117, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:117, column:84,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:84,the value of plot_cost is         : 1.096457989877601 

 At row:117, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:117, column:85,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:85,the value of plot_cost is         : 1.1076582842424612 

 At row:117, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:117, column:86,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:86,the value of plot_cost is         : 1.1196666390098375 

 At row:117, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:117, column:87,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:87,the value of plot_cost is         : 1.1324830541797284 

 At row:117, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:117, column:88,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:88,the value of plot_cost is         : 1.146107529752135 

 At row:117, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:117, column:89,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:89,the value of plot_cost is         : 1.1605400657270566 

 At row:117, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:117, column:90,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:90,the value of plot_cost is         : 1.1757806621044924 

 At row:117, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:117, column:91,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:91,the value of plot_cost is         : 1.1918293188844438 

 At row:117, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:117, column:92,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:92,the value of plot_cost is         : 1.2086860360669112 

 At row:117, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:117, column:93,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:93,the value of plot_cost is         : 1.2263508136518924 

 At row:117, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:117, column:94,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:94,the value of plot_cost is         : 1.2448236516393891 

 At row:117, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:117, column:95,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:95,the value of plot_cost is         : 1.2641045500294004 

 At row:117, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:117, column:96,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:96,the value of plot_cost is         : 1.2841935088219276 

 At row:117, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:117, column:97,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:97,the value of plot_cost is         : 1.3050905280169691 

 At row:117, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:117, column:98,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:98,the value of plot_cost is         : 1.3267956076145266 

 At row:117, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:117, column:99,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:99,the value of plot_cost is         : 1.349308747614599 

 At row:117, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:117, column:100,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:100,the value of plot_cost is         : 1.3726299480171857 

 At row:117, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:117, column:101,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:101,the value of plot_cost is         : 1.3967592088222884 

 At row:117, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:117, column:102,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:102,the value of plot_cost is         : 1.421696530029906 

 At row:117, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:117, column:103,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:103,the value of plot_cost is         : 1.4474419116400383 

 At row:117, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:117, column:104,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:104,the value of plot_cost is         : 1.4739953536526857 

 At row:117, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:117, column:105,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:105,the value of plot_cost is         : 1.501356856067848 

 At row:117, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:117, column:106,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:106,the value of plot_cost is         : 1.5295264188855262 

 At row:117, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:117, column:107,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:107,the value of plot_cost is         : 1.5585040421057186 

 At row:117, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:117, column:108,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:108,the value of plot_cost is         : 1.588289725728427 

 At row:117, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:117, column:109,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:109,the value of plot_cost is         : 1.6188834697536503 

 At row:117, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:117, column:110,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:110,the value of plot_cost is         : 1.6502852741813885 

 At row:117, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:117, column:111,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:111,the value of plot_cost is         : 1.6824951390116414 

 At row:117, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:117, column:112,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:112,the value of plot_cost is         : 1.7155130642444105 

 At row:117, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:117, column:113,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:113,the value of plot_cost is         : 1.7493390498796932 

 At row:117, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:117, column:114,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:114,the value of plot_cost is         : 1.7839730959174915 

 At row:117, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:117, column:115,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:115,the value of plot_cost is         : 1.8194152023578058 

 At row:117, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:117, column:116,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:116,the value of plot_cost is         : 1.8556653692006335 

 At row:117, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:117, column:117,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:117,the value of plot_cost is         : 1.8927235964459768 

 At row:117, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:117, column:118,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:118,the value of plot_cost is         : 1.9305898840938363 

 At row:117, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:117, column:119,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:119,the value of plot_cost is         : 1.9692642321442106 

 At row:117, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:117, column:120,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:120,the value of plot_cost is         : 2.0087466405970997 

 At row:117, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:117, column:121,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:121,the value of plot_cost is         : 2.049037109452503 

 At row:117, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:117, column:122,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:122,the value of plot_cost is         : 2.090135638710423 

 At row:117, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:117, column:123,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:123,the value of plot_cost is         : 2.132042228370857 

 At row:117, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:117, column:124,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:124,the value of plot_cost is         : 2.174756878433806 

 At row:117, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:117, column:125,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:125,the value of plot_cost is         : 2.2182795888992715 

 At row:117, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:117, column:126,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:126,the value of plot_cost is         : 2.26261035976725 

 At row:117, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:117, column:127,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:127,the value of plot_cost is         : 2.307749191037744 

 At row:117, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:117, column:128,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:128,the value of plot_cost is         : 2.3536960827107536 

 At row:117, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:117, column:129,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:129,the value of plot_cost is         : 2.400451034786279 

 At row:117, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:117, column:130,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:130,the value of plot_cost is         : 2.4480140472643197 

 At row:117, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:117, column:131,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:131,the value of plot_cost is         : 2.4963851201448737 

 At row:117, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:117, column:132,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:132,the value of plot_cost is         : 2.5455642534279446 

 At row:117, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:117, column:133,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:133,the value of plot_cost is         : 2.595551447113529 

 At row:117, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:117, column:134,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:134,the value of plot_cost is         : 2.6463467012016295 

 At row:117, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:117, column:135,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:135,the value of plot_cost is         : 2.697950015692246 

 At row:117, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:117, column:136,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:136,the value of plot_cost is         : 2.7503613905853754 

 At row:117, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:117, column:137,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:137,the value of plot_cost is         : 2.80358082588102 

 At row:117, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:117, column:138,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:138,the value of plot_cost is         : 2.8576083215791805 

 At row:117, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:117, column:139,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:139,the value of plot_cost is         : 2.912443877679857 

 At row:117, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:117, column:140,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:140,the value of plot_cost is         : 2.968087494183049 

 At row:117, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:117, column:141,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:141,the value of plot_cost is         : 3.0245391710887533 

 At row:117, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:117, column:142,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:142,the value of plot_cost is         : 3.081798908396975 

 At row:117, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:117, column:143,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:143,the value of plot_cost is         : 3.1398667061077106 

 At row:117, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:117, column:144,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:144,the value of plot_cost is         : 3.1987425642209617 

 At row:117, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:117, column:145,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:145,the value of plot_cost is         : 3.2584264827367284 

 At row:117, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:117, column:146,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:146,the value of plot_cost is         : 3.3189184616550085 

 At row:117, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:117, column:147,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:147,the value of plot_cost is         : 3.3802185009758046 

 At row:117, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:117, column:148,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:148,the value of plot_cost is         : 3.442326600699117 

 At row:117, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:117, column:149,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:149,the value of plot_cost is         : 3.5052427608249435 

 At row:117, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:117, column:150,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:150,the value of plot_cost is         : 3.568966981353286 

 At row:117, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:117, column:151,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:151,the value of plot_cost is         : 3.6334992622841438 

 At row:117, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:117, column:152,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:152,the value of plot_cost is         : 3.6988396036175146 

 At row:117, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:117, column:153,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:153,the value of plot_cost is         : 3.7649880053533997 

 At row:117, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:117, column:154,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:154,the value of plot_cost is         : 3.8319444674918026 

 At row:117, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:117, column:155,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:155,the value of plot_cost is         : 3.8997089900327198 

 At row:117, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:117, column:156,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:156,the value of plot_cost is         : 3.968281572976153 

 At row:117, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:117, column:157,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:157,the value of plot_cost is         : 4.037662216322098 

 At row:117, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:117, column:158,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:158,the value of plot_cost is         : 4.107850920070561 

 At row:117, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:117, column:159,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:159,the value of plot_cost is         : 4.178847684221538 

 At row:117, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:117, column:160,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:160,the value of plot_cost is         : 4.250652508775033 

 At row:117, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:117, column:161,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:161,the value of plot_cost is         : 4.323265393731041 

 At row:117, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:117, column:162,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:162,the value of plot_cost is         : 4.3966863390895625 

 At row:117, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:117, column:163,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:163,the value of plot_cost is         : 4.4709153448505985 

 At row:117, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:117, column:164,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:164,the value of plot_cost is         : 4.545952411014152 

 At row:117, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:117, column:165,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:165,the value of plot_cost is         : 4.621797537580221 

 At row:117, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:117, column:166,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:166,the value of plot_cost is         : 4.698450724548803 

 At row:117, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:117, column:167,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:167,the value of plot_cost is         : 4.7759119719199 

 At row:117, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:117, column:168,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:168,the value of plot_cost is         : 4.854181279693514 

 At row:117, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:117, column:169,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:169,the value of plot_cost is         : 4.933258647869643 

 At row:117, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:117, column:170,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:170,the value of plot_cost is         : 5.013144076448287 

 At row:117, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:117, column:171,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:171,the value of plot_cost is         : 5.093837565429447 

 At row:117, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:117, column:172,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:172,the value of plot_cost is         : 5.175339114813119 

 At row:117, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:117, column:173,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:173,the value of plot_cost is         : 5.257648724599306 

 At row:117, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:117, column:174,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:174,the value of plot_cost is         : 5.340766394788009 

 At row:117, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:117, column:175,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:175,the value of plot_cost is         : 5.424692125379231 

 At row:117, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:117, column:176,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:176,the value of plot_cost is         : 5.509425916372964 

 At row:117, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:117, column:177,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:177,the value of plot_cost is         : 5.594967767769212 

 At row:117, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:117, column:178,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:178,the value of plot_cost is         : 5.681317679567976 

 At row:117, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:117, column:179,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:179,the value of plot_cost is         : 5.768475651769256 

 At row:117, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:117, column:180,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:180,the value of plot_cost is         : 5.85644168437305 

 At row:117, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:117, column:181,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:181,the value of plot_cost is         : 5.945215777379362 

 At row:117, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:117, column:182,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:182,the value of plot_cost is         : 6.034797930788184 

 At row:117, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:117, column:183,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:183,the value of plot_cost is         : 6.125188144599523 

 At row:117, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:117, column:184,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:184,the value of plot_cost is         : 6.216386418813379 

 At row:117, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:117, column:185,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:185,the value of plot_cost is         : 6.308392753429748 

 At row:117, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:117, column:186,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:186,the value of plot_cost is         : 6.401207148448632 

 At row:117, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:117, column:187,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:187,the value of plot_cost is         : 6.494829603870031 

 At row:117, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:117, column:188,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:188,the value of plot_cost is         : 6.589260119693947 

 At row:117, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:117, column:189,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:189,the value of plot_cost is         : 6.684498695920378 

 At row:117, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:117, column:190,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:190,the value of plot_cost is         : 6.780545332549324 

 At row:117, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:117, column:191,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:191,the value of plot_cost is         : 6.877400029580785 

 At row:117, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:117, column:192,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:192,the value of plot_cost is         : 6.975062787014759 

 At row:117, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:117, column:193,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:193,the value of plot_cost is         : 7.073533604851249 

 At row:117, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:117, column:194,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:194,the value of plot_cost is         : 7.172812483090254 

 At row:117, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:117, column:195,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:195,the value of plot_cost is         : 7.272899421731776 

 At row:117, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:117, column:196,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:196,the value of plot_cost is         : 7.373794420775811 

 At row:117, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:117, column:197,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:197,the value of plot_cost is         : 7.475497480222362 

 At row:117, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:117, column:198,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:198,the value of plot_cost is         : 7.578008600071426 

 At row:117, column:199,the value of plot_t0 is           : 3.0
 At row:117, column:199,the value of plot_t1 is           : 1.3517587939698492
 At row:117, column:199,the value of plot_cost is         : 7.681327780323008 

 At row:118, column:0,the value of plot_t0 is           : -1.0
 At row:118, column:0,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:0,the value of plot_cost is         : 2.881311619114957 

 At row:118, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:118, column:1,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:1,the value of plot_cost is         : 2.827312982716887 

 At row:118, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:118, column:2,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:2,the value of plot_cost is         : 2.77412240672133 

 At row:118, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:118, column:3,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:3,the value of plot_cost is         : 2.72173989112829 

 At row:118, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:118, column:4,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:4,the value of plot_cost is         : 2.6701654359377645 

 At row:118, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:118, column:5,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:5,the value of plot_cost is         : 2.619399041149754 

 At row:118, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:118, column:6,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:6,the value of plot_cost is         : 2.5694407067642593 

 At row:118, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:118, column:7,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:7,the value of plot_cost is         : 2.520290432781278 

 At row:118, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:118, column:8,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:8,the value of plot_cost is         : 2.4719482192008133 

 At row:118, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:118, column:9,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:9,the value of plot_cost is         : 2.424414066022863 

 At row:118, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:118, column:10,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:10,the value of plot_cost is         : 2.3776879732474288 

 At row:118, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:118, column:11,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:11,the value of plot_cost is         : 2.3317699408745085 

 At row:118, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:118, column:12,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:12,the value of plot_cost is         : 2.286659968904104 

 At row:118, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:118, column:13,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:13,the value of plot_cost is         : 2.2423580573362143 

 At row:118, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:118, column:14,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:14,the value of plot_cost is         : 2.198864206170839 

 At row:118, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:118, column:15,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:15,the value of plot_cost is         : 2.1561784154079797 

 At row:118, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:118, column:16,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:16,the value of plot_cost is         : 2.114300685047635 

 At row:118, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:118, column:17,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:17,the value of plot_cost is         : 2.073231015089806 

 At row:118, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:118, column:18,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:18,the value of plot_cost is         : 2.0329694055344922 

 At row:118, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:118, column:19,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:19,the value of plot_cost is         : 1.9935158563816926 

 At row:118, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:118, column:20,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:20,the value of plot_cost is         : 1.9548703676314085 

 At row:118, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:118, column:21,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:21,the value of plot_cost is         : 1.9170329392836392 

 At row:118, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:118, column:22,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:22,the value of plot_cost is         : 1.8800035713383856 

 At row:118, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:118, column:23,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:23,the value of plot_cost is         : 1.8437822637956476 

 At row:118, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:118, column:24,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:24,the value of plot_cost is         : 1.808369016655423 

 At row:118, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:118, column:25,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:25,the value of plot_cost is         : 1.7737638299177145 

 At row:118, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:118, column:26,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:26,the value of plot_cost is         : 1.7399667035825204 

 At row:118, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:118, column:27,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:27,the value of plot_cost is         : 1.7069776376498424 

 At row:118, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:118, column:28,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:28,the value of plot_cost is         : 1.6747966321196794 

 At row:118, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:118, column:29,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:29,the value of plot_cost is         : 1.6434236869920307 

 At row:118, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:118, column:30,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:30,the value of plot_cost is         : 1.6128588022668977 

 At row:118, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:118, column:31,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:31,the value of plot_cost is         : 1.583101977944279 

 At row:118, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:118, column:32,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:32,the value of plot_cost is         : 1.5541532140241765 

 At row:118, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:118, column:33,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:33,the value of plot_cost is         : 1.526012510506589 

 At row:118, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:118, column:34,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:34,the value of plot_cost is         : 1.4986798673915156 

 At row:118, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:118, column:35,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:35,the value of plot_cost is         : 1.472155284678958 

 At row:118, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:118, column:36,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:36,the value of plot_cost is         : 1.4464387623689148 

 At row:118, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:118, column:37,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:37,the value of plot_cost is         : 1.4215303004613877 

 At row:118, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:118, column:38,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:38,the value of plot_cost is         : 1.3974298989563756 

 At row:118, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:118, column:39,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:39,the value of plot_cost is         : 1.374137557853878 

 At row:118, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:118, column:40,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:40,the value of plot_cost is         : 1.3516532771538956 

 At row:118, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:118, column:41,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:41,the value of plot_cost is         : 1.3299770568564278 

 At row:118, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:118, column:42,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:42,the value of plot_cost is         : 1.3091088969614761 

 At row:118, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:118, column:43,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:43,the value of plot_cost is         : 1.2890487974690397 

 At row:118, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:118, column:44,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:44,the value of plot_cost is         : 1.2697967583791172 

 At row:118, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:118, column:45,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:45,the value of plot_cost is         : 1.2513527796917103 

 At row:118, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:118, column:46,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:46,the value of plot_cost is         : 1.2337168614068181 

 At row:118, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:118, column:47,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:47,the value of plot_cost is         : 1.216889003524442 

 At row:118, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:118, column:48,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:48,the value of plot_cost is         : 1.2008692060445805 

 At row:118, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:118, column:49,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:49,the value of plot_cost is         : 1.185657468967234 

 At row:118, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:118, column:50,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:50,the value of plot_cost is         : 1.1712537922924025 

 At row:118, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:118, column:51,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:51,the value of plot_cost is         : 1.1576581760200855 

 At row:118, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:118, column:52,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:52,the value of plot_cost is         : 1.1448706201502845 

 At row:118, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:118, column:53,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:53,the value of plot_cost is         : 1.1328911246829987 

 At row:118, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:118, column:54,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:54,the value of plot_cost is         : 1.1217196896182278 

 At row:118, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:118, column:55,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:55,the value of plot_cost is         : 1.1113563149559713 

 At row:118, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:118, column:56,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:56,the value of plot_cost is         : 1.10180100069623 

 At row:118, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:118, column:57,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:57,the value of plot_cost is         : 1.093053746839005 

 At row:118, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:118, column:58,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:58,the value of plot_cost is         : 1.0851145533842943 

 At row:118, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:118, column:59,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:59,the value of plot_cost is         : 1.0779834203320988 

 At row:118, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:118, column:60,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:60,the value of plot_cost is         : 1.0716603476824174 

 At row:118, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:118, column:61,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:61,the value of plot_cost is         : 1.066145335435252 

 At row:118, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:118, column:62,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:62,the value of plot_cost is         : 1.0614383835906018 

 At row:118, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:118, column:63,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:63,the value of plot_cost is         : 1.0575394921484669 

 At row:118, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:118, column:64,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:64,the value of plot_cost is         : 1.0544486611088468 

 At row:118, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:118, column:65,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:65,the value of plot_cost is         : 1.052165890471741 

 At row:118, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:118, column:66,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:66,the value of plot_cost is         : 1.0506911802371508 

 At row:118, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:118, column:67,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:67,the value of plot_cost is         : 1.0500245304050768 

 At row:118, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:118, column:68,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:68,the value of plot_cost is         : 1.0501659409755169 

 At row:118, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:118, column:69,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:69,the value of plot_cost is         : 1.0511154119484722 

 At row:118, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:118, column:70,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:70,the value of plot_cost is         : 1.0528729433239417 

 At row:118, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:118, column:71,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:71,the value of plot_cost is         : 1.0554385351019269 

 At row:118, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:118, column:72,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:72,the value of plot_cost is         : 1.0588121872824279 

 At row:118, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:118, column:73,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:73,the value of plot_cost is         : 1.0629938998654438 

 At row:118, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:118, column:74,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:74,the value of plot_cost is         : 1.0679836728509748 

 At row:118, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:118, column:75,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:75,the value of plot_cost is         : 1.0737815062390197 

 At row:118, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:118, column:76,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:76,the value of plot_cost is         : 1.0803874000295803 

 At row:118, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:118, column:77,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:77,the value of plot_cost is         : 1.0878013542226574 

 At row:118, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:118, column:78,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:78,the value of plot_cost is         : 1.0960233688182486 

 At row:118, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:118, column:79,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:79,the value of plot_cost is         : 1.1050534438163546 

 At row:118, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:118, column:80,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:80,the value of plot_cost is         : 1.114891579216975 

 At row:118, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:118, column:81,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:81,the value of plot_cost is         : 1.125537775020111 

 At row:118, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:118, column:82,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:82,the value of plot_cost is         : 1.1369920312257626 

 At row:118, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:118, column:83,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:83,the value of plot_cost is         : 1.14925434783393 

 At row:118, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:118, column:84,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:84,the value of plot_cost is         : 1.1623247248446114 

 At row:118, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:118, column:85,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:85,the value of plot_cost is         : 1.1762031622578073 

 At row:118, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:118, column:86,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:86,the value of plot_cost is         : 1.1908896600735188 

 At row:118, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:118, column:87,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:87,the value of plot_cost is         : 1.2063842182917466 

 At row:118, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:118, column:88,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:88,the value of plot_cost is         : 1.2226868369124884 

 At row:118, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:118, column:89,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:89,the value of plot_cost is         : 1.2397975159357455 

 At row:118, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:118, column:90,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:90,the value of plot_cost is         : 1.2577162553615169 

 At row:118, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:118, column:91,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:91,the value of plot_cost is         : 1.2764430551898038 

 At row:118, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:118, column:92,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:92,the value of plot_cost is         : 1.2959779154206061 

 At row:118, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:118, column:93,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:93,the value of plot_cost is         : 1.3163208360539247 

 At row:118, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:118, column:94,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:94,the value of plot_cost is         : 1.3374718170897568 

 At row:118, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:118, column:95,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:95,the value of plot_cost is         : 1.3594308585281036 

 At row:118, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:118, column:96,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:96,the value of plot_cost is         : 1.3821979603689662 

 At row:118, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:118, column:97,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:97,the value of plot_cost is         : 1.4057731226123444 

 At row:118, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:118, column:98,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:98,the value of plot_cost is         : 1.4301563452582375 

 At row:118, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:118, column:99,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:99,the value of plot_cost is         : 1.455347628306645 

 At row:118, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:118, column:100,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:100,the value of plot_cost is         : 1.4813469717575676 

 At row:118, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:118, column:101,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:101,the value of plot_cost is         : 1.5081543756110054 

 At row:118, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:118, column:102,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:102,the value of plot_cost is         : 1.5357698398669586 

 At row:118, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:118, column:103,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:103,the value of plot_cost is         : 1.5641933645254276 

 At row:118, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:118, column:104,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:104,the value of plot_cost is         : 1.5934249495864106 

 At row:118, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:118, column:105,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:105,the value of plot_cost is         : 1.6234645950499087 

 At row:118, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:118, column:106,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:106,the value of plot_cost is         : 1.6543123009159217 

 At row:118, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:118, column:107,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:107,the value of plot_cost is         : 1.6859680671844515 

 At row:118, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:118, column:108,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:108,the value of plot_cost is         : 1.7184318938554952 

 At row:118, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:118, column:109,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:109,the value of plot_cost is         : 1.7517037809290539 

 At row:118, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:118, column:110,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:110,the value of plot_cost is         : 1.7857837284051274 

 At row:118, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:118, column:111,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:111,the value of plot_cost is         : 1.820671736283716 

 At row:118, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:118, column:112,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:112,the value of plot_cost is         : 1.8563678045648198 

 At row:118, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:118, column:113,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:113,the value of plot_cost is         : 1.8928719332484398 

 At row:118, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:118, column:114,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:114,the value of plot_cost is         : 1.9301841223345737 

 At row:118, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:118, column:115,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:115,the value of plot_cost is         : 1.968304371823223 

 At row:118, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:118, column:116,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:116,the value of plot_cost is         : 2.0072326817143864 

 At row:118, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:118, column:117,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:117,the value of plot_cost is         : 2.046969052008067 

 At row:118, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:118, column:118,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:118,the value of plot_cost is         : 2.087513482704262 

 At row:118, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:118, column:119,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:119,the value of plot_cost is         : 2.1288659738029714 

 At row:118, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:118, column:120,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:120,the value of plot_cost is         : 2.171026525304196 

 At row:118, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:118, column:121,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:121,the value of plot_cost is         : 2.2139951372079345 

 At row:118, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:118, column:122,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:122,the value of plot_cost is         : 2.2577718095141894 

 At row:118, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:118, column:123,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:123,the value of plot_cost is         : 2.302356542222961 

 At row:118, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:118, column:124,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:124,the value of plot_cost is         : 2.3477493353342456 

 At row:118, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:118, column:125,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:125,the value of plot_cost is         : 2.393950188848046 

 At row:118, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:118, column:126,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:126,the value of plot_cost is         : 2.44095910276436 

 At row:118, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:118, column:127,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:127,the value of plot_cost is         : 2.4887760770831915 

 At row:118, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:118, column:128,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:128,the value of plot_cost is         : 2.5374011118045368 

 At row:118, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:118, column:129,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:129,the value of plot_cost is         : 2.5868342069283976 

 At row:118, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:118, column:130,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:130,the value of plot_cost is         : 2.637075362454773 

 At row:118, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:118, column:131,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:131,the value of plot_cost is         : 2.6881245783836625 

 At row:118, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:118, column:132,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:132,the value of plot_cost is         : 2.7399818547150687 

 At row:118, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:118, column:133,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:133,the value of plot_cost is         : 2.7926471914489905 

 At row:118, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:118, column:134,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:134,the value of plot_cost is         : 2.846120588585426 

 At row:118, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:118, column:135,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:135,the value of plot_cost is         : 2.9004020461243774 

 At row:118, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:118, column:136,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:136,the value of plot_cost is         : 2.9554915640658423 

 At row:118, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:118, column:137,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:137,the value of plot_cost is         : 3.0113891424098247 

 At row:118, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:118, column:138,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:138,the value of plot_cost is         : 3.068094781156321 

 At row:118, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:118, column:139,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:139,the value of plot_cost is         : 3.125608480305332 

 At row:118, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:118, column:140,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:140,the value of plot_cost is         : 3.1839302398568585 

 At row:118, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:118, column:141,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:141,the value of plot_cost is         : 3.2430600598108987 

 At row:118, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:118, column:142,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:142,the value of plot_cost is         : 3.302997940167456 

 At row:118, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:118, column:143,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:143,the value of plot_cost is         : 3.363743880926529 

 At row:118, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:118, column:144,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:144,the value of plot_cost is         : 3.4252978820881155 

 At row:118, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:118, column:145,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:145,the value of plot_cost is         : 3.4876599436522175 

 At row:118, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:118, column:146,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:146,the value of plot_cost is         : 3.5508300656188334 

 At row:118, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:118, column:147,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:147,the value of plot_cost is         : 3.614808247987967 

 At row:118, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:118, column:148,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:148,the value of plot_cost is         : 3.679594490759614 

 At row:118, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:118, column:149,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:149,the value of plot_cost is         : 3.745188793933776 

 At row:118, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:118, column:150,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:150,the value of plot_cost is         : 3.811591157510453 

 At row:118, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:118, column:151,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:151,the value of plot_cost is         : 3.878801581489646 

 At row:118, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:118, column:152,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:152,the value of plot_cost is         : 3.946820065871352 

 At row:118, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:118, column:153,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:153,the value of plot_cost is         : 4.015646610655576 

 At row:118, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:118, column:154,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:154,the value of plot_cost is         : 4.085281215842314 

 At row:118, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:118, column:155,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:155,the value of plot_cost is         : 4.155723881431566 

 At row:118, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:118, column:156,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:156,the value of plot_cost is         : 4.226974607423337 

 At row:118, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:118, column:157,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:157,the value of plot_cost is         : 4.299033393817617 

 At row:118, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:118, column:158,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:158,the value of plot_cost is         : 4.371900240614416 

 At row:118, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:118, column:159,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:159,the value of plot_cost is         : 4.445575147813729 

 At row:118, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:118, column:160,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:160,the value of plot_cost is         : 4.520058115415558 

 At row:118, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:118, column:161,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:161,the value of plot_cost is         : 4.5953491434199 

 At row:118, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:118, column:162,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:162,the value of plot_cost is         : 4.671448231826758 

 At row:118, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:118, column:163,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:163,the value of plot_cost is         : 4.748355380636132 

 At row:118, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:118, column:164,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:164,the value of plot_cost is         : 4.826070589848022 

 At row:118, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:118, column:165,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:165,the value of plot_cost is         : 4.904593859462425 

 At row:118, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:118, column:166,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:166,the value of plot_cost is         : 4.983925189479344 

 At row:118, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:118, column:167,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:167,the value of plot_cost is         : 5.064064579898777 

 At row:118, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:118, column:168,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:168,the value of plot_cost is         : 5.145012030720725 

 At row:118, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:118, column:169,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:169,the value of plot_cost is         : 5.22676754194519 

 At row:118, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:118, column:170,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:170,the value of plot_cost is         : 5.30933111357217 

 At row:118, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:118, column:171,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:171,the value of plot_cost is         : 5.392702745601663 

 At row:118, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:118, column:172,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:172,the value of plot_cost is         : 5.476882438033671 

 At row:118, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:118, column:173,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:173,the value of plot_cost is         : 5.561870190868198 

 At row:118, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:118, column:174,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:174,the value of plot_cost is         : 5.647666004105236 

 At row:118, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:118, column:175,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:175,the value of plot_cost is         : 5.734269877744791 

 At row:118, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:118, column:176,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:176,the value of plot_cost is         : 5.8216818117868625 

 At row:118, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:118, column:177,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:177,the value of plot_cost is         : 5.909901806231446 

 At row:118, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:118, column:178,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:178,the value of plot_cost is         : 5.998929861078545 

 At row:118, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:118, column:179,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:179,the value of plot_cost is         : 6.088765976328159 

 At row:118, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:118, column:180,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:180,the value of plot_cost is         : 6.1794101519802895 

 At row:118, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:118, column:181,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:181,the value of plot_cost is         : 6.270862388034936 

 At row:118, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:118, column:182,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:182,the value of plot_cost is         : 6.363122684492094 

 At row:118, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:118, column:183,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:183,the value of plot_cost is         : 6.4561910413517705 

 At row:118, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:118, column:184,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:184,the value of plot_cost is         : 6.550067458613961 

 At row:118, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:118, column:185,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:185,the value of plot_cost is         : 6.6447519362786664 

 At row:118, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:118, column:186,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:186,the value of plot_cost is         : 6.7402444743458885 

 At row:118, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:118, column:187,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:187,the value of plot_cost is         : 6.836545072815623 

 At row:118, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:118, column:188,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:188,the value of plot_cost is         : 6.9336537316878735 

 At row:118, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:118, column:189,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:189,the value of plot_cost is         : 7.03157045096264 

 At row:118, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:118, column:190,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:190,the value of plot_cost is         : 7.13029523063992 

 At row:118, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:118, column:191,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:191,the value of plot_cost is         : 7.229828070719716 

 At row:118, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:118, column:192,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:192,the value of plot_cost is         : 7.330168971202025 

 At row:118, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:118, column:193,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:193,the value of plot_cost is         : 7.431317932086853 

 At row:118, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:118, column:194,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:194,the value of plot_cost is         : 7.533274953374194 

 At row:118, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:118, column:195,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:195,the value of plot_cost is         : 7.636040035064052 

 At row:118, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:118, column:196,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:196,the value of plot_cost is         : 7.739613177156425 

 At row:118, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:118, column:197,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:197,the value of plot_cost is         : 7.84399437965131 

 At row:118, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:118, column:198,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:198,the value of plot_cost is         : 7.949183642548709 

 At row:118, column:199,the value of plot_t0 is           : 3.0
 At row:118, column:199,the value of plot_t1 is           : 1.3718592964824121
 At row:118, column:199,the value of plot_cost is         : 8.055180965848628 

 At row:119, column:0,the value of plot_t0 is           : -1.0
 At row:119, column:0,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:0,the value of plot_cost is         : 2.73479699286093 

 At row:119, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:119, column:1,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:1,the value of plot_cost is         : 2.6834764995111953 

 At row:119, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:119, column:2,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:2,the value of plot_cost is         : 2.632964066563975 

 At row:119, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:119, column:3,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:3,the value of plot_cost is         : 2.58325969401927 

 At row:119, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:119, column:4,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:4,the value of plot_cost is         : 2.53436338187708 

 At row:119, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:119, column:5,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:5,the value of plot_cost is         : 2.4862751301374058 

 At row:119, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:119, column:6,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:6,the value of plot_cost is         : 2.4389949388002465 

 At row:119, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:119, column:7,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:7,the value of plot_cost is         : 2.3925228078656016 

 At row:119, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:119, column:8,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:8,the value of plot_cost is         : 2.346858737333472 

 At row:119, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:119, column:9,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:9,the value of plot_cost is         : 2.3020027272038575 

 At row:119, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:119, column:10,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:10,the value of plot_cost is         : 2.2579547774767588 

 At row:119, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:119, column:11,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:11,the value of plot_cost is         : 2.2147148881521743 

 At row:119, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:119, column:12,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:12,the value of plot_cost is         : 2.1722830592301055 

 At row:119, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:119, column:13,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:13,the value of plot_cost is         : 2.1306592907105517 

 At row:119, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:119, column:14,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:14,the value of plot_cost is         : 2.0898435825935127 

 At row:119, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:119, column:15,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:15,the value of plot_cost is         : 2.0498359348789887 

 At row:119, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:119, column:16,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:16,the value of plot_cost is         : 2.01063634756698 

 At row:119, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:119, column:17,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:17,the value of plot_cost is         : 1.9722448206574863 

 At row:119, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:119, column:18,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:18,the value of plot_cost is         : 1.9346613541505082 

 At row:119, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:119, column:19,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:19,the value of plot_cost is         : 1.8978859480460442 

 At row:119, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:119, column:20,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:20,the value of plot_cost is         : 1.8619186023440963 

 At row:119, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:119, column:21,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:21,the value of plot_cost is         : 1.826759317044663 

 At row:119, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:119, column:22,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:22,the value of plot_cost is         : 1.7924080921477445 

 At row:119, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:119, column:23,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:23,the value of plot_cost is         : 1.758864927653342 

 At row:119, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:119, column:24,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:24,the value of plot_cost is         : 1.7261298235614535 

 At row:119, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:119, column:25,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:25,the value of plot_cost is         : 1.6942027798720811 

 At row:119, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:119, column:26,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:26,the value of plot_cost is         : 1.663083796585223 

 At row:119, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:119, column:27,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:27,the value of plot_cost is         : 1.6327728737008802 

 At row:119, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:119, column:28,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:28,the value of plot_cost is         : 1.603270011219053 

 At row:119, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:119, column:29,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:29,the value of plot_cost is         : 1.57457520913974 

 At row:119, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:119, column:30,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:30,the value of plot_cost is         : 1.5466884674629429 

 At row:119, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:119, column:31,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:31,the value of plot_cost is         : 1.5196097861886604 

 At row:119, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:119, column:32,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:32,the value of plot_cost is         : 1.4933391653168928 

 At row:119, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:119, column:33,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:33,the value of plot_cost is         : 1.467876604847641 

 At row:119, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:119, column:34,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:34,the value of plot_cost is         : 1.4432221047809037 

 At row:119, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:119, column:35,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:35,the value of plot_cost is         : 1.4193756651166816 

 At row:119, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:119, column:36,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:36,the value of plot_cost is         : 1.3963372858549747 

 At row:119, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:119, column:37,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:37,the value of plot_cost is         : 1.3741069669957828 

 At row:119, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:119, column:38,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:38,the value of plot_cost is         : 1.3526847085391065 

 At row:119, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:119, column:39,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:39,the value of plot_cost is         : 1.3320705104849446 

 At row:119, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:119, column:40,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:40,the value of plot_cost is         : 1.3122643728332979 

 At row:119, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:119, column:41,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:41,the value of plot_cost is         : 1.2932662955841663 

 At row:119, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:119, column:42,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:42,the value of plot_cost is         : 1.27507627873755 

 At row:119, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:119, column:43,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:43,the value of plot_cost is         : 1.257694322293449 

 At row:119, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:119, column:44,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:44,the value of plot_cost is         : 1.2411204262518627 

 At row:119, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:119, column:45,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:45,the value of plot_cost is         : 1.2253545906127912 

 At row:119, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:119, column:46,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:46,the value of plot_cost is         : 1.2103968153762352 

 At row:119, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:119, column:47,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:47,the value of plot_cost is         : 1.196247100542194 

 At row:119, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:119, column:48,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:48,the value of plot_cost is         : 1.1829054461106685 

 At row:119, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:119, column:49,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:49,the value of plot_cost is         : 1.1703718520816573 

 At row:119, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:119, column:50,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:50,the value of plot_cost is         : 1.1586463184551619 

 At row:119, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:119, column:51,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:51,the value of plot_cost is         : 1.1477288452311811 

 At row:119, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:119, column:52,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:52,the value of plot_cost is         : 1.1376194324097155 

 At row:119, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:119, column:53,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:53,the value of plot_cost is         : 1.1283180799907655 

 At row:119, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:119, column:54,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:54,the value of plot_cost is         : 1.11982478797433 

 At row:119, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:119, column:55,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:55,the value of plot_cost is         : 1.1121395563604095 

 At row:119, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:119, column:56,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:56,the value of plot_cost is         : 1.1052623851490042 

 At row:119, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:119, column:57,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:57,the value of plot_cost is         : 1.0991932743401143 

 At row:119, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:119, column:58,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:58,the value of plot_cost is         : 1.0939322239337395 

 At row:119, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:119, column:59,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:59,the value of plot_cost is         : 1.0894792339298796 

 At row:119, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:119, column:60,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:60,the value of plot_cost is         : 1.0858343043285348 

 At row:119, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:119, column:61,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:61,the value of plot_cost is         : 1.0829974351297045 

 At row:119, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:119, column:62,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:62,the value of plot_cost is         : 1.0809686263333906 

 At row:119, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:119, column:63,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:63,the value of plot_cost is         : 1.0797478779395906 

 At row:119, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:119, column:64,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:64,the value of plot_cost is         : 1.0793351899483064 

 At row:119, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:119, column:65,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:65,the value of plot_cost is         : 1.0797305623595368 

 At row:119, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:119, column:66,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:66,the value of plot_cost is         : 1.0809339951732824 

 At row:119, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:119, column:67,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:67,the value of plot_cost is         : 1.0829454883895435 

 At row:119, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:119, column:68,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:68,the value of plot_cost is         : 1.0857650420083191 

 At row:119, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:119, column:69,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:69,the value of plot_cost is         : 1.0893926560296103 

 At row:119, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:119, column:70,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:70,the value of plot_cost is         : 1.0938283304534162 

 At row:119, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:119, column:71,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:71,the value of plot_cost is         : 1.099072065279737 

 At row:119, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:119, column:72,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:72,the value of plot_cost is         : 1.1051238605085736 

 At row:119, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:119, column:73,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:73,the value of plot_cost is         : 1.1119837161399249 

 At row:119, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:119, column:74,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:74,the value of plot_cost is         : 1.1196516321737917 

 At row:119, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:119, column:75,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:75,the value of plot_cost is         : 1.1281276086101728 

 At row:119, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:119, column:76,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:76,the value of plot_cost is         : 1.1374116454490693 

 At row:119, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:119, column:77,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:77,the value of plot_cost is         : 1.1475037426904813 

 At row:119, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:119, column:78,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:78,the value of plot_cost is         : 1.1584039003344082 

 At row:119, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:119, column:79,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:79,the value of plot_cost is         : 1.17011211838085 

 At row:119, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:119, column:80,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:80,the value of plot_cost is         : 1.1826283968298064 

 At row:119, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:119, column:81,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:81,the value of plot_cost is         : 1.1959527356812782 

 At row:119, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:119, column:82,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:82,the value of plot_cost is         : 1.2100851349352657 

 At row:119, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:119, column:83,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:83,the value of plot_cost is         : 1.2250255945917685 

 At row:119, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:119, column:84,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:84,the value of plot_cost is         : 1.2407741146507856 

 At row:119, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:119, column:85,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:85,the value of plot_cost is         : 1.2573306951123175 

 At row:119, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:119, column:86,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:86,the value of plot_cost is         : 1.2746953359763649 

 At row:119, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:119, column:87,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:87,the value of plot_cost is         : 1.292868037242928 

 At row:119, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:119, column:88,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:88,the value of plot_cost is         : 1.311848798912006 

 At row:119, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:119, column:89,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:89,the value of plot_cost is         : 1.3316376209835983 

 At row:119, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:119, column:90,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:90,the value of plot_cost is         : 1.352234503457706 

 At row:119, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:119, column:91,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:91,the value of plot_cost is         : 1.3736394463343284 

 At row:119, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:119, column:92,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:92,the value of plot_cost is         : 1.3958524496134666 

 At row:119, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:119, column:93,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:93,the value of plot_cost is         : 1.4188735132951205 

 At row:119, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:119, column:94,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:94,the value of plot_cost is         : 1.4427026373792882 

 At row:119, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:119, column:95,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:95,the value of plot_cost is         : 1.467339821865971 

 At row:119, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:119, column:96,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:96,the value of plot_cost is         : 1.492785066755169 

 At row:119, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:119, column:97,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:97,the value of plot_cost is         : 1.5190383720468832 

 At row:119, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:119, column:98,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:98,the value of plot_cost is         : 1.546099737741112 

 At row:119, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:119, column:99,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:99,the value of plot_cost is         : 1.5739691638378555 

 At row:119, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:119, column:100,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:100,the value of plot_cost is         : 1.6026466503371135 

 At row:119, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:119, column:101,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:101,the value of plot_cost is         : 1.6321321972388871 

 At row:119, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:119, column:102,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:102,the value of plot_cost is         : 1.6624258045431763 

 At row:119, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:119, column:103,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:103,the value of plot_cost is         : 1.6935274722499811 

 At row:119, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:119, column:104,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:104,the value of plot_cost is         : 1.7254372003592997 

 At row:119, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:119, column:105,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:105,the value of plot_cost is         : 1.7581549888711336 

 At row:119, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:119, column:106,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:106,the value of plot_cost is         : 1.791680837785482 

 At row:119, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:119, column:107,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:107,the value of plot_cost is         : 1.8260147471023476 

 At row:119, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:119, column:108,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:108,the value of plot_cost is         : 1.8611567168217271 

 At row:119, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:119, column:109,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:109,the value of plot_cost is         : 1.8971067469436211 

 At row:119, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:119, column:110,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:110,the value of plot_cost is         : 1.9338648374680303 

 At row:119, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:119, column:111,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:111,the value of plot_cost is         : 1.9714309883949546 

 At row:119, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:119, column:112,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:112,the value of plot_cost is         : 2.0098051997243944 

 At row:119, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:119, column:113,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:113,the value of plot_cost is         : 2.0489874714563503 

 At row:119, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:119, column:114,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:114,the value of plot_cost is         : 2.08897780359082 

 At row:119, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:119, column:115,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:115,the value of plot_cost is         : 2.1297761961278048 

 At row:119, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:119, column:116,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:116,the value of plot_cost is         : 2.1713826490673043 

 At row:119, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:119, column:117,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:117,the value of plot_cost is         : 2.2137971624093207 

 At row:119, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:119, column:118,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:118,the value of plot_cost is         : 2.2570197361538513 

 At row:119, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:119, column:119,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:119,the value of plot_cost is         : 2.301050370300896 

 At row:119, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:119, column:120,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:120,the value of plot_cost is         : 2.345889064850456 

 At row:119, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:119, column:121,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:121,the value of plot_cost is         : 2.3915358198025314 

 At row:119, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:119, column:122,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:122,the value of plot_cost is         : 2.437990635157122 

 At row:119, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:119, column:123,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:123,the value of plot_cost is         : 2.4852535109142284 

 At row:119, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:119, column:124,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:124,the value of plot_cost is         : 2.5333244470738494 

 At row:119, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:119, column:125,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:125,the value of plot_cost is         : 2.5822034436359846 

 At row:119, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:119, column:126,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:126,the value of plot_cost is         : 2.6318905006006346 

 At row:119, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:119, column:127,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:127,the value of plot_cost is         : 2.6823856179678027 

 At row:119, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:119, column:128,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:128,the value of plot_cost is         : 2.733688795737484 

 At row:119, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:119, column:129,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:129,the value of plot_cost is         : 2.785800033909679 

 At row:119, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:119, column:130,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:130,the value of plot_cost is         : 2.83871933248439 

 At row:119, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:119, column:131,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:131,the value of plot_cost is         : 2.8924466914616156 

 At row:119, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:119, column:132,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:132,the value of plot_cost is         : 2.9469821108413576 

 At row:119, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:119, column:133,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:133,the value of plot_cost is         : 3.0023255906236157 

 At row:119, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:119, column:134,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:134,the value of plot_cost is         : 3.058477130808387 

 At row:119, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:119, column:135,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:135,the value of plot_cost is         : 3.1154367313956732 

 At row:119, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:119, column:136,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:136,the value of plot_cost is         : 3.173204392385474 

 At row:119, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:119, column:137,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:137,the value of plot_cost is         : 3.231780113777793 

 At row:119, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:119, column:138,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:138,the value of plot_cost is         : 3.2911638955726255 

 At row:119, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:119, column:139,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:139,the value of plot_cost is         : 3.351355737769972 

 At row:119, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:119, column:140,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:140,the value of plot_cost is         : 3.4123556403698334 

 At row:119, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:119, column:141,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:141,the value of plot_cost is         : 3.4741636033722094 

 At row:119, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:119, column:142,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:142,the value of plot_cost is         : 3.5367796267771023 

 At row:119, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:119, column:143,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:143,the value of plot_cost is         : 3.6002037105845117 

 At row:119, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:119, column:144,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:144,the value of plot_cost is         : 3.664435854794434 

 At row:119, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:119, column:145,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:145,the value of plot_cost is         : 3.729476059406871 

 At row:119, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:119, column:146,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:146,the value of plot_cost is         : 3.7953243244218218 

 At row:119, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:119, column:147,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:147,the value of plot_cost is         : 3.8619806498392926 

 At row:119, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:119, column:148,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:148,the value of plot_cost is         : 3.9294450356592754 

 At row:119, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:119, column:149,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:149,the value of plot_cost is         : 3.9977174818817724 

 At row:119, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:119, column:150,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:150,the value of plot_cost is         : 4.066797988506785 

 At row:119, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:119, column:151,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:151,the value of plot_cost is         : 4.136686555534315 

 At row:119, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:119, column:152,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:152,the value of plot_cost is         : 4.207383182964357 

 At row:119, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:119, column:153,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:153,the value of plot_cost is         : 4.278887870796916 

 At row:119, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:119, column:154,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:154,the value of plot_cost is         : 4.35120061903199 

 At row:119, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:119, column:155,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:155,the value of plot_cost is         : 4.424321427669577 

 At row:119, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:119, column:156,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:156,the value of plot_cost is         : 4.498250296709682 

 At row:119, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:119, column:157,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:157,the value of plot_cost is         : 4.572987226152301 

 At row:119, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:119, column:158,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:158,the value of plot_cost is         : 4.6485322159974345 

 At row:119, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:119, column:159,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:159,the value of plot_cost is         : 4.724885266245083 

 At row:119, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:119, column:160,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:160,the value of plot_cost is         : 4.8020463768952455 

 At row:119, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:119, column:161,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:161,the value of plot_cost is         : 4.880015547947925 

 At row:119, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:119, column:162,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:162,the value of plot_cost is         : 4.958792779403118 

 At row:119, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:119, column:163,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:163,the value of plot_cost is         : 5.03837807126083 

 At row:119, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:119, column:164,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:164,the value of plot_cost is         : 5.1187714235210535 

 At row:119, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:119, column:165,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:165,the value of plot_cost is         : 5.199972836183792 

 At row:119, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:119, column:166,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:166,the value of plot_cost is         : 5.281982309249049 

 At row:119, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:119, column:167,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:167,the value of plot_cost is         : 5.364799842716818 

 At row:119, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:119, column:168,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:168,the value of plot_cost is         : 5.448425436587103 

 At row:119, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:119, column:169,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:169,the value of plot_cost is         : 5.532859090859902 

 At row:119, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:119, column:170,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:170,the value of plot_cost is         : 5.6181008055352155 

 At row:119, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:119, column:171,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:171,the value of plot_cost is         : 5.704150580613046 

 At row:119, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:119, column:172,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:172,the value of plot_cost is         : 5.791008416093389 

 At row:119, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:119, column:173,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:173,the value of plot_cost is         : 5.878674311976252 

 At row:119, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:119, column:174,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:174,the value of plot_cost is         : 5.967148268261626 

 At row:119, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:119, column:175,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:175,the value of plot_cost is         : 6.056430284949515 

 At row:119, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:119, column:176,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:176,the value of plot_cost is         : 6.146520362039925 

 At row:119, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:119, column:177,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:177,the value of plot_cost is         : 6.237418499532842 

 At row:119, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:119, column:178,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:178,the value of plot_cost is         : 6.329124697428279 

 At row:119, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:119, column:179,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:179,the value of plot_cost is         : 6.421638955726229 

 At row:119, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:119, column:180,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:180,the value of plot_cost is         : 6.514961274426693 

 At row:119, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:119, column:181,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:181,the value of plot_cost is         : 6.609091653529674 

 At row:119, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:119, column:182,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:182,the value of plot_cost is         : 6.704030093035169 

 At row:119, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:119, column:183,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:183,the value of plot_cost is         : 6.799776592943183 

 At row:119, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:119, column:184,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:184,the value of plot_cost is         : 6.8963311532537075 

 At row:119, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:119, column:185,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:185,the value of plot_cost is         : 6.993693773966749 

 At row:119, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:119, column:186,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:186,the value of plot_cost is         : 7.091864455082307 

 At row:119, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:119, column:187,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:187,the value of plot_cost is         : 7.190843196600377 

 At row:119, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:119, column:188,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:188,the value of plot_cost is         : 7.290629998520964 

 At row:119, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:119, column:189,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:189,the value of plot_cost is         : 7.391224860844065 

 At row:119, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:119, column:190,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:190,the value of plot_cost is         : 7.492627783569681 

 At row:119, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:119, column:191,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:191,the value of plot_cost is         : 7.594838766697813 

 At row:119, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:119, column:192,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:192,the value of plot_cost is         : 7.697857810228458 

 At row:119, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:119, column:193,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:193,the value of plot_cost is         : 7.801684914161624 

 At row:119, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:119, column:194,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:194,the value of plot_cost is         : 7.906320078497298 

 At row:119, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:119, column:195,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:195,the value of plot_cost is         : 8.01176330323549 

 At row:119, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:119, column:196,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:196,the value of plot_cost is         : 8.1180145883762 

 At row:119, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:119, column:197,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:197,the value of plot_cost is         : 8.225073933919424 

 At row:119, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:119, column:198,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:198,the value of plot_cost is         : 8.332941339865158 

 At row:119, column:199,the value of plot_t0 is           : 3.0
 At row:119, column:199,the value of plot_t1 is           : 1.391959798994975
 At row:119, column:199,the value of plot_cost is         : 8.44161680621341 

 At row:120, column:0,the value of plot_t0 is           : -1.0
 At row:120, column:0,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:0,the value of plot_cost is         : 2.600865021446066 

 At row:120, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:120, column:1,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:1,the value of plot_cost is         : 2.552222671144667 

 At row:120, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:120, column:2,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:2,the value of plot_cost is         : 2.5043883812457826 

 At row:120, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:120, column:3,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:3,the value of plot_cost is         : 2.457362151749414 

 At row:120, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:120, column:4,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:4,the value of plot_cost is         : 2.4111439826555583 

 At row:120, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:120, column:5,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:5,the value of plot_cost is         : 2.3657338739642206 

 At row:120, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:120, column:6,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:6,the value of plot_cost is         : 2.321131825675397 

 At row:120, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:120, column:7,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:7,the value of plot_cost is         : 2.2773378377890876 

 At row:120, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:120, column:8,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:8,the value of plot_cost is         : 2.2343519103052945 

 At row:120, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:120, column:9,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:9,the value of plot_cost is         : 2.1921740432240155 

 At row:120, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:120, column:10,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:10,the value of plot_cost is         : 2.1508042365452518 

 At row:120, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:120, column:11,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:11,the value of plot_cost is         : 2.110242490269004 

 At row:120, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:120, column:12,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:12,the value of plot_cost is         : 2.0704888043952705 

 At row:120, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:120, column:13,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:13,the value of plot_cost is         : 2.031543178924052 

 At row:120, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:120, column:14,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:14,the value of plot_cost is         : 1.9934056138553486 

 At row:120, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:120, column:15,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:15,the value of plot_cost is         : 1.956076109189161 

 At row:120, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:120, column:16,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:16,the value of plot_cost is         : 1.9195546649254887 

 At row:120, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:120, column:17,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:17,the value of plot_cost is         : 1.8838412810643304 

 At row:120, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:120, column:18,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:18,the value of plot_cost is         : 1.8489359576056874 

 At row:120, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:120, column:19,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:19,the value of plot_cost is         : 1.8148386945495596 

 At row:120, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:120, column:20,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:20,the value of plot_cost is         : 1.781549491895947 

 At row:120, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:120, column:21,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:21,the value of plot_cost is         : 1.74906834964485 

 At row:120, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:120, column:22,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:22,the value of plot_cost is         : 1.7173952677962672 

 At row:120, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:120, column:23,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:23,the value of plot_cost is         : 1.6865302463502 

 At row:120, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:120, column:24,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:24,the value of plot_cost is         : 1.6564732853066477 

 At row:120, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:120, column:25,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:25,the value of plot_cost is         : 1.6272243846656103 

 At row:120, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:120, column:26,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:26,the value of plot_cost is         : 1.5987835444270886 

 At row:120, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:120, column:27,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:27,the value of plot_cost is         : 1.5711507645910814 

 At row:120, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:120, column:28,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:28,the value of plot_cost is         : 1.5443260451575898 

 At row:120, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:120, column:29,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:29,the value of plot_cost is         : 1.5183093861266126 

 At row:120, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:120, column:30,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:30,the value of plot_cost is         : 1.493100787498151 

 At row:120, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:120, column:31,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:31,the value of plot_cost is         : 1.468700249272205 

 At row:120, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:120, column:32,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:32,the value of plot_cost is         : 1.4451077714487728 

 At row:120, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:120, column:33,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:33,the value of plot_cost is         : 1.4223233540278566 

 At row:120, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:120, column:34,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:34,the value of plot_cost is         : 1.400346997009455 

 At row:120, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:120, column:35,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:35,the value of plot_cost is         : 1.379178700393569 

 At row:120, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:120, column:36,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:36,the value of plot_cost is         : 1.358818464180198 

 At row:120, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:120, column:37,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:37,the value of plot_cost is         : 1.3392662883693414 

 At row:120, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:120, column:38,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:38,the value of plot_cost is         : 1.3205221729610006 

 At row:120, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:120, column:39,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:39,the value of plot_cost is         : 1.3025861179551743 

 At row:120, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:120, column:40,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:40,the value of plot_cost is         : 1.2854581233518634 

 At row:120, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:120, column:41,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:41,the value of plot_cost is         : 1.269138189151068 

 At row:120, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:120, column:42,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:42,the value of plot_cost is         : 1.2536263153527871 

 At row:120, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:120, column:43,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:43,the value of plot_cost is         : 1.238922501957022 

 At row:120, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:120, column:44,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:44,the value of plot_cost is         : 1.2250267489637712 

 At row:120, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:120, column:45,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:45,the value of plot_cost is         : 1.211939056373036 

 At row:120, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:120, column:46,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:46,the value of plot_cost is         : 1.1996594241848157 

 At row:120, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:120, column:47,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:47,the value of plot_cost is         : 1.1881878523991098 

 At row:120, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:120, column:48,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:48,the value of plot_cost is         : 1.17752434101592 

 At row:120, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:120, column:49,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:49,the value of plot_cost is         : 1.167668890035245 

 At row:120, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:120, column:50,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:50,the value of plot_cost is         : 1.158621499457085 

 At row:120, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:120, column:51,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:51,the value of plot_cost is         : 1.1503821692814407 

 At row:120, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:120, column:52,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:52,the value of plot_cost is         : 1.1429508995083106 

 At row:120, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:120, column:53,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:53,the value of plot_cost is         : 1.1363276901376955 

 At row:120, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:120, column:54,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:54,the value of plot_cost is         : 1.1305125411695962 

 At row:120, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:120, column:55,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:55,the value of plot_cost is         : 1.1255054526040114 

 At row:120, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:120, column:56,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:56,the value of plot_cost is         : 1.1213064244409423 

 At row:120, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:120, column:57,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:57,the value of plot_cost is         : 1.1179154566803877 

 At row:120, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:120, column:58,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:58,the value of plot_cost is         : 1.1153325493223483 

 At row:120, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:120, column:59,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:59,the value of plot_cost is         : 1.1135577023668244 

 At row:120, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:120, column:60,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:60,the value of plot_cost is         : 1.1125909158138152 

 At row:120, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:120, column:61,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:61,the value of plot_cost is         : 1.1124321896633216 

 At row:120, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:120, column:62,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:62,the value of plot_cost is         : 1.1130815239153422 

 At row:120, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:120, column:63,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:63,the value of plot_cost is         : 1.1145389185698784 

 At row:120, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:120, column:64,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:64,the value of plot_cost is         : 1.1168043736269297 

 At row:120, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:120, column:65,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:65,the value of plot_cost is         : 1.119877889086496 

 At row:120, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:120, column:66,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:66,the value of plot_cost is         : 1.1237594649485778 

 At row:120, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:120, column:67,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:67,the value of plot_cost is         : 1.1284491012131743 

 At row:120, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:120, column:68,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:68,the value of plot_cost is         : 1.1339467978802855 

 At row:120, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:120, column:69,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:69,the value of plot_cost is         : 1.1402525549499127 

 At row:120, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:120, column:70,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:70,the value of plot_cost is         : 1.147366372422054 

 At row:120, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:120, column:71,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:71,the value of plot_cost is         : 1.1552882502967112 

 At row:120, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:120, column:72,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:72,the value of plot_cost is         : 1.164018188573883 

 At row:120, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:120, column:73,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:73,the value of plot_cost is         : 1.1735561872535702 

 At row:120, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:120, column:74,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:74,the value of plot_cost is         : 1.1839022463357722 

 At row:120, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:120, column:75,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:75,the value of plot_cost is         : 1.1950563658204894 

 At row:120, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:120, column:76,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:76,the value of plot_cost is         : 1.207018545707722 

 At row:120, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:120, column:77,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:77,the value of plot_cost is         : 1.2197887859974694 

 At row:120, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:120, column:78,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:78,the value of plot_cost is         : 1.233367086689732 

 At row:120, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:120, column:79,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:79,the value of plot_cost is         : 1.2477534477845096 

 At row:120, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:120, column:80,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:80,the value of plot_cost is         : 1.262947869281802 

 At row:120, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:120, column:81,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:81,the value of plot_cost is         : 1.2789503511816098 

 At row:120, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:120, column:82,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:82,the value of plot_cost is         : 1.2957608934839326 

 At row:120, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:120, column:83,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:83,the value of plot_cost is         : 1.3133794961887704 

 At row:120, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:120, column:84,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:84,the value of plot_cost is         : 1.3318061592961237 

 At row:120, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:120, column:85,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:85,the value of plot_cost is         : 1.3510408828059917 

 At row:120, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:120, column:86,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:86,the value of plot_cost is         : 1.371083666718375 

 At row:120, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:120, column:87,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:87,the value of plot_cost is         : 1.3919345110332737 

 At row:120, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:120, column:88,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:88,the value of plot_cost is         : 1.4135934157506869 

 At row:120, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:120, column:89,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:89,the value of plot_cost is         : 1.4360603808706152 

 At row:120, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:120, column:90,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:90,the value of plot_cost is         : 1.4593354063930584 

 At row:120, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:120, column:91,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:91,the value of plot_cost is         : 1.483418492318017 

 At row:120, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:120, column:92,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:92,the value of plot_cost is         : 1.508309638645491 

 At row:120, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:120, column:93,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:93,the value of plot_cost is         : 1.53400884537548 

 At row:120, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:120, column:94,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:94,the value of plot_cost is         : 1.5605161125079838 

 At row:120, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:120, column:95,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:95,the value of plot_cost is         : 1.5878314400430025 

 At row:120, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:120, column:96,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:96,the value of plot_cost is         : 1.6159548279805367 

 At row:120, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:120, column:97,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:97,the value of plot_cost is         : 1.6448862763205865 

 At row:120, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:120, column:98,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:98,the value of plot_cost is         : 1.6746257850631503 

 At row:120, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:120, column:99,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:99,the value of plot_cost is         : 1.70517335420823 

 At row:120, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:120, column:100,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:100,the value of plot_cost is         : 1.7365289837558235 

 At row:120, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:120, column:101,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:101,the value of plot_cost is         : 1.7686926737059336 

 At row:120, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:120, column:102,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:102,the value of plot_cost is         : 1.8016644240585582 

 At row:120, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:120, column:103,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:103,the value of plot_cost is         : 1.8354442348136977 

 At row:120, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:120, column:104,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:104,the value of plot_cost is         : 1.8700321059713527 

 At row:120, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:120, column:105,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:105,the value of plot_cost is         : 1.905428037531522 

 At row:120, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:120, column:106,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:106,the value of plot_cost is         : 1.9416320294942073 

 At row:120, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:120, column:107,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:107,the value of plot_cost is         : 1.978644081859408 

 At row:120, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:120, column:108,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:108,the value of plot_cost is         : 2.016464194627123 

 At row:120, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:120, column:109,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:109,the value of plot_cost is         : 2.055092367797353 

 At row:120, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:120, column:110,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:110,the value of plot_cost is         : 2.0945286013700986 

 At row:120, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:120, column:111,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:111,the value of plot_cost is         : 2.1347728953453586 

 At row:120, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:120, column:112,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:112,the value of plot_cost is         : 2.1758252497231334 

 At row:120, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:120, column:113,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:113,the value of plot_cost is         : 2.217685664503425 

 At row:120, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:120, column:114,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:114,the value of plot_cost is         : 2.2603541396862306 

 At row:120, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:120, column:115,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:115,the value of plot_cost is         : 2.3038306752715516 

 At row:120, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:120, column:116,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:116,the value of plot_cost is         : 2.3481152712593865 

 At row:120, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:120, column:117,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:117,the value of plot_cost is         : 2.393207927649738 

 At row:120, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:120, column:118,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:118,the value of plot_cost is         : 2.439108644442604 

 At row:120, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:120, column:119,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:119,the value of plot_cost is         : 2.4858174216379854 

 At row:120, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:120, column:120,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:120,the value of plot_cost is         : 2.533334259235882 

 At row:120, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:120, column:121,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:121,the value of plot_cost is         : 2.581659157236292 

 At row:120, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:120, column:122,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:122,the value of plot_cost is         : 2.6307921156392187 

 At row:120, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:120, column:123,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:123,the value of plot_cost is         : 2.6807331344446603 

 At row:120, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:120, column:124,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:124,the value of plot_cost is         : 2.7314822136526167 

 At row:120, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:120, column:125,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:125,the value of plot_cost is         : 2.783039353263089 

 At row:120, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:120, column:126,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:126,the value of plot_cost is         : 2.8354045532760748 

 At row:120, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:120, column:127,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:127,the value of plot_cost is         : 2.888577813691578 

 At row:120, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:120, column:128,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:128,the value of plot_cost is         : 2.9425591345095943 

 At row:120, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:120, column:129,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:129,the value of plot_cost is         : 2.997348515730126 

 At row:120, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:120, column:130,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:130,the value of plot_cost is         : 3.052945957353174 

 At row:120, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:120, column:131,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:131,the value of plot_cost is         : 3.1093514593787344 

 At row:120, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:120, column:132,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:132,the value of plot_cost is         : 3.1665650218068118 

 At row:120, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:120, column:133,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:133,the value of plot_cost is         : 3.224586644637405 

 At row:120, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:120, column:134,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:134,the value of plot_cost is         : 3.2834163278705124 

 At row:120, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:120, column:135,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:135,the value of plot_cost is         : 3.3430540715061356 

 At row:120, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:120, column:136,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:136,the value of plot_cost is         : 3.403499875544272 

 At row:120, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:120, column:137,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:137,the value of plot_cost is         : 3.4647537399849258 

 At row:120, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:120, column:138,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:138,the value of plot_cost is         : 3.5268156648280935 

 At row:120, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:120, column:139,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:139,the value of plot_cost is         : 3.589685650073776 

 At row:120, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:120, column:140,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:140,the value of plot_cost is         : 3.653363695721974 

 At row:120, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:120, column:141,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:141,the value of plot_cost is         : 3.7178498017726866 

 At row:120, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:120, column:142,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:142,the value of plot_cost is         : 3.7831439682259136 

 At row:120, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:120, column:143,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:143,the value of plot_cost is         : 3.8492461950816588 

 At row:120, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:120, column:144,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:144,the value of plot_cost is         : 3.9161564823399164 

 At row:120, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:120, column:145,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:145,the value of plot_cost is         : 3.9838748300006896 

 At row:120, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:120, column:146,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:146,the value of plot_cost is         : 4.052401238063977 

 At row:120, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:120, column:147,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:147,the value of plot_cost is         : 4.121735706529782 

 At row:120, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:120, column:148,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:148,the value of plot_cost is         : 4.191878235398101 

 At row:120, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:120, column:149,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:149,the value of plot_cost is         : 4.262828824668934 

 At row:120, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:120, column:150,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:150,the value of plot_cost is         : 4.334587474342284 

 At row:120, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:120, column:151,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:151,the value of plot_cost is         : 4.407154184418148 

 At row:120, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:120, column:152,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:152,the value of plot_cost is         : 4.480528954896524 

 At row:120, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:120, column:153,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:153,the value of plot_cost is         : 4.55471178577742 

 At row:120, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:120, column:154,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:154,the value of plot_cost is         : 4.629702677060829 

 At row:120, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:120, column:155,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:155,the value of plot_cost is         : 4.705501628746754 

 At row:120, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:120, column:156,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:156,the value of plot_cost is         : 4.782108640835194 

 At row:120, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:120, column:157,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:157,the value of plot_cost is         : 4.859523713326149 

 At row:120, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:120, column:158,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:158,the value of plot_cost is         : 4.937746846219618 

 At row:120, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:120, column:159,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:159,the value of plot_cost is         : 5.016778039515602 

 At row:120, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:120, column:160,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:160,the value of plot_cost is         : 5.096617293214102 

 At row:120, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:120, column:161,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:161,the value of plot_cost is         : 5.1772646073151165 

 At row:120, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:120, column:162,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:162,the value of plot_cost is         : 5.258719981818644 

 At row:120, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:120, column:163,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:163,the value of plot_cost is         : 5.340983416724691 

 At row:120, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:120, column:164,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:164,the value of plot_cost is         : 5.424054912033251 

 At row:120, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:120, column:165,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:165,the value of plot_cost is         : 5.5079344677443265 

 At row:120, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:120, column:166,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:166,the value of plot_cost is         : 5.59262208385792 

 At row:120, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:120, column:167,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:167,the value of plot_cost is         : 5.678117760374024 

 At row:120, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:120, column:168,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:168,the value of plot_cost is         : 5.764421497292641 

 At row:120, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:120, column:169,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:169,the value of plot_cost is         : 5.851533294613777 

 At row:120, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:120, column:170,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:170,the value of plot_cost is         : 5.939453152337428 

 At row:120, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:120, column:171,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:171,the value of plot_cost is         : 6.028181070463593 

 At row:120, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:120, column:172,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:172,the value of plot_cost is         : 6.117717048992271 

 At row:120, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:120, column:173,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:173,the value of plot_cost is         : 6.20806108792347 

 At row:120, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:120, column:174,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:174,the value of plot_cost is         : 6.299213187257182 

 At row:120, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:120, column:175,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:175,the value of plot_cost is         : 6.3911733469934076 

 At row:120, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:120, column:176,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:176,the value of plot_cost is         : 6.483941567132151 

 At row:120, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:120, column:177,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:177,the value of plot_cost is         : 6.577517847673406 

 At row:120, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:120, column:178,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:178,the value of plot_cost is         : 6.671902188617175 

 At row:120, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:120, column:179,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:179,the value of plot_cost is         : 6.767094589963461 

 At row:120, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:120, column:180,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:180,the value of plot_cost is         : 6.863095051712264 

 At row:120, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:120, column:181,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:181,the value of plot_cost is         : 6.9599035738635795 

 At row:120, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:120, column:182,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:182,the value of plot_cost is         : 7.057520156417409 

 At row:120, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:120, column:183,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:183,the value of plot_cost is         : 7.15594479937376 

 At row:120, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:120, column:184,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:184,the value of plot_cost is         : 7.25517750273262 

 At row:120, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:120, column:185,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:185,the value of plot_cost is         : 7.355218266493997 

 At row:120, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:120, column:186,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:186,the value of plot_cost is         : 7.456067090657893 

 At row:120, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:120, column:187,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:187,the value of plot_cost is         : 7.557723975224297 

 At row:120, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:120, column:188,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:188,the value of plot_cost is         : 7.660188920193219 

 At row:120, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:120, column:189,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:189,the value of plot_cost is         : 7.7634619255646555 

 At row:120, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:120, column:190,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:190,the value of plot_cost is         : 7.86754299133861 

 At row:120, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:120, column:191,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:191,the value of plot_cost is         : 7.972432117515076 

 At row:120, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:120, column:192,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:192,the value of plot_cost is         : 8.078129304094055 

 At row:120, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:120, column:193,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:193,the value of plot_cost is         : 8.184634551075554 

 At row:120, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:120, column:194,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:194,the value of plot_cost is         : 8.291947858459569 

 At row:120, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:120, column:195,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:195,the value of plot_cost is         : 8.400069226246096 

 At row:120, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:120, column:196,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:196,the value of plot_cost is         : 8.508998654435143 

 At row:120, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:120, column:197,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:197,the value of plot_cost is         : 8.618736143026698 

 At row:120, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:120, column:198,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:198,the value of plot_cost is         : 8.72928169202077 

 At row:120, column:199,the value of plot_t0 is           : 3.0
 At row:120, column:199,the value of plot_t1 is           : 1.412060301507538
 At row:120, column:199,the value of plot_cost is         : 8.840635301417358 

 At row:121, column:0,the value of plot_t0 is           : -1.0
 At row:121, column:0,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:0,the value of plot_cost is         : 2.479515704870369 

 At row:121, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:121, column:1,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:1,the value of plot_cost is         : 2.4335514976173056 

 At row:121, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:121, column:2,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:2,the value of plot_cost is         : 2.388395350766757 

 At row:121, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:121, column:3,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:3,the value of plot_cost is         : 2.344047264318723 

 At row:121, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:121, column:4,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:4,the value of plot_cost is         : 2.300507238273204 

 At row:121, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:121, column:5,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:5,the value of plot_cost is         : 2.2577752726302016 

 At row:121, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:121, column:6,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:6,the value of plot_cost is         : 2.215851367389714 

 At row:121, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:121, column:7,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:7,the value of plot_cost is         : 2.17473552255174 

 At row:121, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:121, column:8,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:8,the value of plot_cost is         : 2.134427738116282 

 At row:121, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:121, column:9,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:9,the value of plot_cost is         : 2.094928014083339 

 At row:121, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:121, column:10,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:10,the value of plot_cost is         : 2.056236350452912 

 At row:121, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:121, column:11,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:11,the value of plot_cost is         : 2.018352747224999 

 At row:121, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:121, column:12,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:12,the value of plot_cost is         : 1.981277204399601 

 At row:121, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:121, column:13,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:13,the value of plot_cost is         : 1.9450097219767193 

 At row:121, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:121, column:14,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:14,the value of plot_cost is         : 1.9095502999563507 

 At row:121, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:121, column:15,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:15,the value of plot_cost is         : 1.8748989383384989 

 At row:121, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:121, column:16,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:16,the value of plot_cost is         : 1.8410556371231617 

 At row:121, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:121, column:17,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:17,the value of plot_cost is         : 1.8080203963103394 

 At row:121, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:121, column:18,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:18,the value of plot_cost is         : 1.7757932159000325 

 At row:121, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:121, column:19,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:19,the value of plot_cost is         : 1.7443740958922398 

 At row:121, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:121, column:20,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:20,the value of plot_cost is         : 1.7137630362869634 

 At row:121, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:121, column:21,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:21,the value of plot_cost is         : 1.6839600370842018 

 At row:121, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:121, column:22,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:22,the value of plot_cost is         : 1.6549650982839545 

 At row:121, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:121, column:23,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:23,the value of plot_cost is         : 1.6267782198862235 

 At row:121, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:121, column:24,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:24,the value of plot_cost is         : 1.5993994018910063 

 At row:121, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:121, column:25,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:25,the value of plot_cost is         : 1.5728286442983053 

 At row:121, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:121, column:26,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:26,the value of plot_cost is         : 1.5470659471081187 

 At row:121, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:121, column:27,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:27,the value of plot_cost is         : 1.5221113103204469 

 At row:121, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:121, column:28,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:28,the value of plot_cost is         : 1.497964733935291 

 At row:121, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:121, column:29,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:29,the value of plot_cost is         : 1.4746262179526497 

 At row:121, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:121, column:30,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:30,the value of plot_cost is         : 1.4520957623725235 

 At row:121, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:121, column:31,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:31,the value of plot_cost is         : 1.430373367194913 

 At row:121, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:121, column:32,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:32,the value of plot_cost is         : 1.4094590324198168 

 At row:121, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:121, column:33,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:33,the value of plot_cost is         : 1.3893527580472365 

 At row:121, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:121, column:34,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:34,the value of plot_cost is         : 1.3700545440771705 

 At row:121, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:121, column:35,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:35,the value of plot_cost is         : 1.3515643905096197 

 At row:121, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:121, column:36,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:36,the value of plot_cost is         : 1.3338822973445845 

 At row:121, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:121, column:37,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:37,the value of plot_cost is         : 1.3170082645820635 

 At row:121, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:121, column:38,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:38,the value of plot_cost is         : 1.300942292222059 

 At row:121, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:121, column:39,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:39,the value of plot_cost is         : 1.285684380264568 

 At row:121, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:121, column:40,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:40,the value of plot_cost is         : 1.2712345287095932 

 At row:121, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:121, column:41,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:41,the value of plot_cost is         : 1.2575927375571332 

 At row:121, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:121, column:42,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:42,the value of plot_cost is         : 1.2447590068071879 

 At row:121, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:121, column:43,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:43,the value of plot_cost is         : 1.232733336459758 

 At row:121, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:121, column:44,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:44,the value of plot_cost is         : 1.2215157265148433 

 At row:121, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:121, column:45,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:45,the value of plot_cost is         : 1.2111061769724434 

 At row:121, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:121, column:46,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:46,the value of plot_cost is         : 1.2015046878325593 

 At row:121, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:121, column:47,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:47,the value of plot_cost is         : 1.1927112590951892 

 At row:121, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:121, column:48,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:48,the value of plot_cost is         : 1.1847258907603349 

 At row:121, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:121, column:49,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:49,the value of plot_cost is         : 1.1775485828279955 

 At row:121, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:121, column:50,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:50,the value of plot_cost is         : 1.1711793352981712 

 At row:121, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:121, column:51,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:51,the value of plot_cost is         : 1.1656181481708623 

 At row:121, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:121, column:52,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:52,the value of plot_cost is         : 1.1608650214460678 

 At row:121, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:121, column:53,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:53,the value of plot_cost is         : 1.1569199551237885 

 At row:121, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:121, column:54,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:54,the value of plot_cost is         : 1.153782949204025 

 At row:121, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:121, column:55,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:55,the value of plot_cost is         : 1.1514540036867758 

 At row:121, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:121, column:56,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:56,the value of plot_cost is         : 1.1499331185720425 

 At row:121, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:121, column:57,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:57,the value of plot_cost is         : 1.1492202938598235 

 At row:121, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:121, column:58,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:58,the value of plot_cost is         : 1.1493155295501198 

 At row:121, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:121, column:59,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:59,the value of plot_cost is         : 1.1502188256429315 

 At row:121, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:121, column:60,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:60,the value of plot_cost is         : 1.1519301821382577 

 At row:121, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:121, column:61,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:61,the value of plot_cost is         : 1.1544495990360997 

 At row:121, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:121, column:62,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:62,the value of plot_cost is         : 1.1577770763364565 

 At row:121, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:121, column:63,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:63,the value of plot_cost is         : 1.1619126140393279 

 At row:121, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:121, column:64,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:64,the value of plot_cost is         : 1.1668562121447152 

 At row:121, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:121, column:65,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:65,the value of plot_cost is         : 1.172607870652617 

 At row:121, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:121, column:66,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:66,the value of plot_cost is         : 1.1791675895630345 

 At row:121, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:121, column:67,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:67,the value of plot_cost is         : 1.1865353688759666 

 At row:121, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:121, column:68,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:68,the value of plot_cost is         : 1.1947112085914136 

 At row:121, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:121, column:69,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:69,the value of plot_cost is         : 1.2036951087093761 

 At row:121, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:121, column:70,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:70,the value of plot_cost is         : 1.2134870692298536 

 At row:121, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:121, column:71,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:71,the value of plot_cost is         : 1.2240870901528462 

 At row:121, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:121, column:72,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:72,the value of plot_cost is         : 1.2354951714783537 

 At row:121, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:121, column:73,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:73,the value of plot_cost is         : 1.2477113132063764 

 At row:121, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:121, column:74,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:74,the value of plot_cost is         : 1.2607355153369146 

 At row:121, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:121, column:75,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:75,the value of plot_cost is         : 1.2745677778699671 

 At row:121, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:121, column:76,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:76,the value of plot_cost is         : 1.2892081008055354 

 At row:121, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:121, column:77,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:77,the value of plot_cost is         : 1.3046564841436188 

 At row:121, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:121, column:78,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:78,the value of plot_cost is         : 1.3209129278842164 

 At row:121, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:121, column:79,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:79,the value of plot_cost is         : 1.3379774320273299 

 At row:121, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:121, column:80,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:80,the value of plot_cost is         : 1.3558499965729582 

 At row:121, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:121, column:81,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:81,the value of plot_cost is         : 1.3745306215211015 

 At row:121, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:121, column:82,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:82,the value of plot_cost is         : 1.39401930687176 

 At row:121, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:121, column:83,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:83,the value of plot_cost is         : 1.4143160526249337 

 At row:121, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:121, column:84,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:84,the value of plot_cost is         : 1.4354208587806225 

 At row:121, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:121, column:85,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:85,the value of plot_cost is         : 1.457333725338826 

 At row:121, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:121, column:86,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:86,the value of plot_cost is         : 1.480054652299545 

 At row:121, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:121, column:87,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:87,the value of plot_cost is         : 1.5035836396627793 

 At row:121, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:121, column:88,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:88,the value of plot_cost is         : 1.5279206874285278 

 At row:121, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:121, column:89,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:89,the value of plot_cost is         : 1.5530657955967924 

 At row:121, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:121, column:90,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:90,the value of plot_cost is         : 1.5790189641675711 

 At row:121, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:121, column:91,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:91,the value of plot_cost is         : 1.6057801931408655 

 At row:121, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:121, column:92,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:92,the value of plot_cost is         : 1.6333494825166748 

 At row:121, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:121, column:93,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:93,the value of plot_cost is         : 1.6617268322949996 

 At row:121, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:121, column:94,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:94,the value of plot_cost is         : 1.6909122424758394 

 At row:121, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:121, column:95,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:95,the value of plot_cost is         : 1.7209057130591936 

 At row:121, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:121, column:96,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:96,the value of plot_cost is         : 1.7517072440450632 

 At row:121, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:121, column:97,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:97,the value of plot_cost is         : 1.783316835433449 

 At row:121, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:121, column:98,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:98,the value of plot_cost is         : 1.8157344872243488 

 At row:121, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:121, column:99,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:99,the value of plot_cost is         : 1.8489601994177634 

 At row:121, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:121, column:100,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:100,the value of plot_cost is         : 1.882993972013693 

 At row:121, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:121, column:101,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:101,the value of plot_cost is         : 1.9178358050121382 

 At row:121, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:121, column:102,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:102,the value of plot_cost is         : 1.9534856984130986 

 At row:121, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:121, column:103,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:103,the value of plot_cost is         : 1.9899436522165745 

 At row:121, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:121, column:104,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:104,the value of plot_cost is         : 2.0272096664225647 

 At row:121, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:121, column:105,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:105,the value of plot_cost is         : 2.06528374103107 

 At row:121, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:121, column:106,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:106,the value of plot_cost is         : 2.1041658760420905 

 At row:121, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:121, column:107,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:107,the value of plot_cost is         : 2.143856071455627 

 At row:121, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:121, column:108,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:108,the value of plot_cost is         : 2.1843543272716777 

 At row:121, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:121, column:109,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:109,the value of plot_cost is         : 2.2256606434902437 

 At row:121, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:121, column:110,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:110,the value of plot_cost is         : 2.2677750201113245 

 At row:121, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:121, column:111,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:111,the value of plot_cost is         : 2.31069745713492 

 At row:121, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:121, column:112,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:112,the value of plot_cost is         : 2.3544279545610305 

 At row:121, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:121, column:113,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:113,the value of plot_cost is         : 2.3989665123896575 

 At row:121, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:121, column:114,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:114,the value of plot_cost is         : 2.4443131306207992 

 At row:121, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:121, column:115,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:115,the value of plot_cost is         : 2.4904678092544557 

 At row:121, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:121, column:116,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:116,the value of plot_cost is         : 2.5374305482906263 

 At row:121, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:121, column:117,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:117,the value of plot_cost is         : 2.5852013477293143 

 At row:121, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:121, column:118,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:118,the value of plot_cost is         : 2.6337802075705157 

 At row:121, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:121, column:119,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:119,the value of plot_cost is         : 2.6831671278142317 

 At row:121, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:121, column:120,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:120,the value of plot_cost is         : 2.7333621084604647 

 At row:121, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:121, column:121,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:121,the value of plot_cost is         : 2.7843651495092105 

 At row:121, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:121, column:122,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:122,the value of plot_cost is         : 2.836176250960472 

 At row:121, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:121, column:123,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:123,the value of plot_cost is         : 2.888795412814251 

 At row:121, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:121, column:124,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:124,the value of plot_cost is         : 2.942222635070542 

 At row:121, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:121, column:125,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:125,the value of plot_cost is         : 2.99645791772935 

 At row:121, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:121, column:126,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:126,the value of plot_cost is         : 3.051501260790671 

 At row:121, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:121, column:127,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:127,the value of plot_cost is         : 3.10735266425451 

 At row:121, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:121, column:128,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:128,the value of plot_cost is         : 3.164012128120862 

 At row:121, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:121, column:129,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:129,the value of plot_cost is         : 3.2214796523897298 

 At row:121, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:121, column:130,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:130,the value of plot_cost is         : 3.2797552370611127 

 At row:121, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:121, column:131,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:131,the value of plot_cost is         : 3.3388388821350095 

 At row:121, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:121, column:132,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:132,the value of plot_cost is         : 3.398730587611422 

 At row:121, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:121, column:133,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:133,the value of plot_cost is         : 3.4594303534903514 

 At row:121, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:121, column:134,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:134,the value of plot_cost is         : 3.5209381797717945 

 At row:121, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:121, column:135,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:135,the value of plot_cost is         : 3.583254066455753 

 At row:121, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:121, column:136,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:136,the value of plot_cost is         : 3.6463780135422255 

 At row:121, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:121, column:137,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:137,the value of plot_cost is         : 3.7103100210312148 

 At row:121, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:121, column:138,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:138,the value of plot_cost is         : 3.7750500889227174 

 At row:121, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:121, column:139,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:139,the value of plot_cost is         : 3.8405982172167357 

 At row:121, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:121, column:140,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:140,the value of plot_cost is         : 3.90695440591327 

 At row:121, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:121, column:141,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:141,the value of plot_cost is         : 3.9741186550123175 

 At row:121, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:121, column:142,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:142,the value of plot_cost is         : 4.042090964513881 

 At row:121, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:121, column:143,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:143,the value of plot_cost is         : 4.110871334417961 

 At row:121, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:121, column:144,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:144,the value of plot_cost is         : 4.180459764724556 

 At row:121, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:121, column:145,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:145,the value of plot_cost is         : 4.250856255433664 

 At row:121, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:121, column:146,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:146,the value of plot_cost is         : 4.322060806545287 

 At row:121, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:121, column:147,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:147,the value of plot_cost is         : 4.3940734180594285 

 At row:121, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:121, column:148,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:148,the value of plot_cost is         : 4.466894089976082 

 At row:121, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:121, column:149,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:149,the value of plot_cost is         : 4.540522822295252 

 At row:121, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:121, column:150,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:150,the value of plot_cost is         : 4.614959615016937 

 At row:121, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:121, column:151,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:151,the value of plot_cost is         : 4.690204468141135 

 At row:121, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:121, column:152,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:152,the value of plot_cost is         : 4.766257381667849 

 At row:121, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:121, column:153,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:153,the value of plot_cost is         : 4.84311835559708 

 At row:121, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:121, column:154,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:154,the value of plot_cost is         : 4.920787389928825 

 At row:121, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:121, column:155,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:155,the value of plot_cost is         : 4.999264484663084 

 At row:121, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:121, column:156,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:156,the value of plot_cost is         : 5.078549639799862 

 At row:121, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:121, column:157,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:157,the value of plot_cost is         : 5.15864285533915 

 At row:121, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:121, column:158,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:158,the value of plot_cost is         : 5.2395441312809545 

 At row:121, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:121, column:159,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:159,the value of plot_cost is         : 5.321253467625275 

 At row:121, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:121, column:160,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:160,the value of plot_cost is         : 5.4037708643721105 

 At row:121, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:121, column:161,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:161,the value of plot_cost is         : 5.487096321521462 

 At row:121, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:121, column:162,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:162,the value of plot_cost is         : 5.571229839073325 

 At row:121, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:121, column:163,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:163,the value of plot_cost is         : 5.656171417027707 

 At row:121, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:121, column:164,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:164,the value of plot_cost is         : 5.741921055384603 

 At row:121, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:121, column:165,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:165,the value of plot_cost is         : 5.8284787541440135 

 At row:121, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:121, column:166,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:166,the value of plot_cost is         : 5.915844513305942 

 At row:121, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:121, column:167,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:167,the value of plot_cost is         : 6.004018332870381 

 At row:121, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:121, column:168,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:168,the value of plot_cost is         : 6.093000212837336 

 At row:121, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:121, column:169,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:169,the value of plot_cost is         : 6.182790153206807 

 At row:121, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:121, column:170,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:170,the value of plot_cost is         : 6.273388153978795 

 At row:121, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:121, column:171,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:171,the value of plot_cost is         : 6.364794215153296 

 At row:121, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:121, column:172,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:172,the value of plot_cost is         : 6.4570083367303095 

 At row:121, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:121, column:173,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:173,the value of plot_cost is         : 6.5500305187098435 

 At row:121, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:121, column:174,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:174,the value of plot_cost is         : 6.64386076109189 

 At row:121, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:121, column:175,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:175,the value of plot_cost is         : 6.738499063876452 

 At row:121, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:121, column:176,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:176,the value of plot_cost is         : 6.833945427063529 

 At row:121, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:121, column:177,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:177,the value of plot_cost is         : 6.9301998506531195 

 At row:121, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:121, column:178,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:178,the value of plot_cost is         : 7.027262334645229 

 At row:121, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:121, column:179,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:179,the value of plot_cost is         : 7.125132879039849 

 At row:121, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:121, column:180,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:180,the value of plot_cost is         : 7.223811483836986 

 At row:121, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:121, column:181,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:181,the value of plot_cost is         : 7.323298149036639 

 At row:121, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:121, column:182,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:182,the value of plot_cost is         : 7.423592874638804 

 At row:121, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:121, column:183,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:183,the value of plot_cost is         : 7.524695660643488 

 At row:121, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:121, column:184,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:184,the value of plot_cost is         : 7.626606507050686 

 At row:121, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:121, column:185,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:185,the value of plot_cost is         : 7.729325413860399 

 At row:121, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:121, column:186,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:186,the value of plot_cost is         : 7.832852381072628 

 At row:121, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:121, column:187,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:187,the value of plot_cost is         : 7.937187408687369 

 At row:121, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:121, column:188,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:188,the value of plot_cost is         : 8.042330496704627 

 At row:121, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:121, column:189,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:189,the value of plot_cost is         : 8.1482816451244 

 At row:121, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:121, column:190,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:190,the value of plot_cost is         : 8.255040853946687 

 At row:121, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:121, column:191,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:191,the value of plot_cost is         : 8.36260812317149 

 At row:121, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:121, column:192,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:192,the value of plot_cost is         : 8.470983452798807 

 At row:121, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:121, column:193,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:193,the value of plot_cost is         : 8.58016684282864 

 At row:121, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:121, column:194,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:194,the value of plot_cost is         : 8.69015829326099 

 At row:121, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:121, column:195,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:195,the value of plot_cost is         : 8.800957804095853 

 At row:121, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:121, column:196,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:196,the value of plot_cost is         : 8.912565375333234 

 At row:121, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:121, column:197,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:197,the value of plot_cost is         : 9.024981006973128 

 At row:121, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:121, column:198,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:198,the value of plot_cost is         : 9.138204699015535 

 At row:121, column:199,the value of plot_t0 is           : 3.0
 At row:121, column:199,the value of plot_t1 is           : 1.4321608040201004
 At row:121, column:199,the value of plot_cost is         : 9.25223645146046 

 At row:122, column:0,the value of plot_t0 is           : -1.0
 At row:122, column:0,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:0,the value of plot_cost is         : 2.3707490431338316 

 At row:122, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:122, column:1,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:1,the value of plot_cost is         : 2.3274629789291037 

 At row:122, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:122, column:2,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:2,the value of plot_cost is         : 2.2849849751268914 

 At row:122, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:122, column:3,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:3,the value of plot_cost is         : 2.2433150317271933 

 At row:122, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:122, column:4,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:4,the value of plot_cost is         : 2.2024531487300107 

 At row:122, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:122, column:5,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:5,the value of plot_cost is         : 2.162399326135344 

 At row:122, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:122, column:6,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:6,the value of plot_cost is         : 2.123153563943191 

 At row:122, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:122, column:7,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:7,the value of plot_cost is         : 2.0847158621535535 

 At row:122, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:122, column:8,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:8,the value of plot_cost is         : 2.047086220766431 

 At row:122, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:122, column:9,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:9,the value of plot_cost is         : 2.010264639781824 

 At row:122, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:122, column:10,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:10,the value of plot_cost is         : 1.974251119199732 

 At row:122, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:122, column:11,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:11,the value of plot_cost is         : 1.9390456590201552 

 At row:122, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:122, column:12,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:12,the value of plot_cost is         : 1.9046482592430931 

 At row:122, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:122, column:13,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:13,the value of plot_cost is         : 1.871058919868546 

 At row:122, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:122, column:14,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:14,the value of plot_cost is         : 1.8382776408965147 

 At row:122, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:122, column:15,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:15,the value of plot_cost is         : 1.806304422326998 

 At row:122, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:122, column:16,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:16,the value of plot_cost is         : 1.7751392641599966 

 At row:122, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:122, column:17,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:17,the value of plot_cost is         : 1.7447821663955099 

 At row:122, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:122, column:18,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:18,the value of plot_cost is         : 1.7152331290335383 

 At row:122, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:122, column:19,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:19,the value of plot_cost is         : 1.686492152074082 

 At row:122, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:122, column:20,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:20,the value of plot_cost is         : 1.658559235517141 

 At row:122, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:122, column:21,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:21,the value of plot_cost is         : 1.631434379362715 

 At row:122, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:122, column:22,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:22,the value of plot_cost is         : 1.6051175836108034 

 At row:122, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:122, column:23,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:23,the value of plot_cost is         : 1.5796088482614081 

 At row:122, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:122, column:24,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:24,the value of plot_cost is         : 1.5549081733145271 

 At row:122, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:122, column:25,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:25,the value of plot_cost is         : 1.5310155587701615 

 At row:122, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:122, column:26,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:26,the value of plot_cost is         : 1.5079310046283103 

 At row:122, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:122, column:27,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:27,the value of plot_cost is         : 1.4856545108889747 

 At row:122, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:122, column:28,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:28,the value of plot_cost is         : 1.4641860775521547 

 At row:122, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:122, column:29,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:29,the value of plot_cost is         : 1.443525704617849 

 At row:122, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:122, column:30,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:30,the value of plot_cost is         : 1.4236733920860587 

 At row:122, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:122, column:31,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:31,the value of plot_cost is         : 1.4046291399567832 

 At row:122, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:122, column:32,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:32,the value of plot_cost is         : 1.386392948230023 

 At row:122, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:122, column:33,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:33,the value of plot_cost is         : 1.3689648169057784 

 At row:122, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:122, column:34,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:34,the value of plot_cost is         : 1.3523447459840483 

 At row:122, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:122, column:35,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:35,the value of plot_cost is         : 1.3365327354648333 

 At row:122, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:122, column:36,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:36,the value of plot_cost is         : 1.3215287853481337 

 At row:122, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:122, column:37,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:37,the value of plot_cost is         : 1.3073328956339487 

 At row:122, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:122, column:38,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:38,the value of plot_cost is         : 1.2939450663222791 

 At row:122, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:122, column:39,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:39,the value of plot_cost is         : 1.2813652974131249 

 At row:122, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:122, column:40,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:40,the value of plot_cost is         : 1.2695935889064853 

 At row:122, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:122, column:41,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:41,the value of plot_cost is         : 1.2586299408023607 

 At row:122, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:122, column:42,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:42,the value of plot_cost is         : 1.2484743531007518 

 At row:122, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:122, column:43,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:43,the value of plot_cost is         : 1.2391268258016572 

 At row:122, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:122, column:44,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:44,the value of plot_cost is         : 1.2305873589050786 

 At row:122, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:122, column:45,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:45,the value of plot_cost is         : 1.2228559524110143 

 At row:122, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:122, column:46,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:46,the value of plot_cost is         : 1.215932606319465 

 At row:122, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:122, column:47,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:47,the value of plot_cost is         : 1.2098173206304317 

 At row:122, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:122, column:48,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:48,the value of plot_cost is         : 1.2045100953439132 

 At row:122, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:122, column:49,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:49,the value of plot_cost is         : 1.2000109304599094 

 At row:122, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:122, column:50,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:50,the value of plot_cost is         : 1.1963198259784207 

 At row:122, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:122, column:51,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:51,the value of plot_cost is         : 1.1934367818994471 

 At row:122, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:122, column:52,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:52,the value of plot_cost is         : 1.1913617982229896 

 At row:122, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:122, column:53,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:53,the value of plot_cost is         : 1.1900948749490454 

 At row:122, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:122, column:54,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:54,the value of plot_cost is         : 1.1896360120776175 

 At row:122, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:122, column:55,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:55,the value of plot_cost is         : 1.189985209608704 

 At row:122, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:122, column:56,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:56,the value of plot_cost is         : 1.1911424675423057 

 At row:122, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:122, column:57,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:57,the value of plot_cost is         : 1.1931077858784225 

 At row:122, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:122, column:58,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:58,the value of plot_cost is         : 1.1958811646170553 

 At row:122, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:122, column:59,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:59,the value of plot_cost is         : 1.1994626037582028 

 At row:122, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:122, column:60,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:60,the value of plot_cost is         : 1.2038521033018648 

 At row:122, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:122, column:61,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:61,the value of plot_cost is         : 1.209049663248042 

 At row:122, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:122, column:62,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:62,the value of plot_cost is         : 1.2150552835967354 

 At row:122, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:122, column:63,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:63,the value of plot_cost is         : 1.2218689643479423 

 At row:122, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:122, column:64,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:64,the value of plot_cost is         : 1.2294907055016653 

 At row:122, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:122, column:65,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:65,the value of plot_cost is         : 1.2379205070579025 

 At row:122, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:122, column:66,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:66,the value of plot_cost is         : 1.2471583690166554 

 At row:122, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:122, column:67,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:67,the value of plot_cost is         : 1.257204291377923 

 At row:122, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:122, column:68,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:68,the value of plot_cost is         : 1.2680582741417066 

 At row:122, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:122, column:69,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:69,the value of plot_cost is         : 1.279720317308005 

 At row:122, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:122, column:70,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:70,the value of plot_cost is         : 1.2921904208768178 

 At row:122, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:122, column:71,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:71,the value of plot_cost is         : 1.3054685848481455 

 At row:122, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:122, column:72,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:72,the value of plot_cost is         : 1.3195548092219902 

 At row:122, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:122, column:73,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:73,the value of plot_cost is         : 1.334449093998348 

 At row:122, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:122, column:74,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:74,the value of plot_cost is         : 1.3501514391772218 

 At row:122, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:122, column:75,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:75,the value of plot_cost is         : 1.36666184475861 

 At row:122, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:122, column:76,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:76,the value of plot_cost is         : 1.3839803107425137 

 At row:122, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:122, column:77,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:77,the value of plot_cost is         : 1.402106837128932 

 At row:122, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:122, column:78,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:78,the value of plot_cost is         : 1.421041423917867 

 At row:122, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:122, column:79,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:79,the value of plot_cost is         : 1.4407840711093158 

 At row:122, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:122, column:80,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:80,the value of plot_cost is         : 1.4613347787032793 

 At row:122, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:122, column:81,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:81,the value of plot_cost is         : 1.4826935466997582 

 At row:122, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:122, column:82,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:82,the value of plot_cost is         : 1.5048603750987535 

 At row:122, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:122, column:83,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:83,the value of plot_cost is         : 1.527835263900263 

 At row:122, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:122, column:84,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:84,the value of plot_cost is         : 1.551618213104287 

 At row:122, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:122, column:85,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:85,the value of plot_cost is         : 1.5762092227108262 

 At row:122, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:122, column:86,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:86,the value of plot_cost is         : 1.6016082927198803 

 At row:122, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:122, column:87,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:87,the value of plot_cost is         : 1.6278154231314501 

 At row:122, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:122, column:88,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:88,the value of plot_cost is         : 1.6548306139455358 

 At row:122, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:122, column:89,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:89,the value of plot_cost is         : 1.6826538651621354 

 At row:122, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:122, column:90,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:90,the value of plot_cost is         : 1.71128517678125 

 At row:122, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:122, column:91,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:91,the value of plot_cost is         : 1.7407245488028797 

 At row:122, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:122, column:92,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:92,the value of plot_cost is         : 1.7709719812270257 

 At row:122, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:122, column:93,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:93,the value of plot_cost is         : 1.8020274740536861 

 At row:122, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:122, column:94,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:94,the value of plot_cost is         : 1.8338910272828612 

 At row:122, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:122, column:95,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:95,the value of plot_cost is         : 1.8665626409145508 

 At row:122, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:122, column:96,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:96,the value of plot_cost is         : 1.9000423149487562 

 At row:122, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:122, column:97,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:97,the value of plot_cost is         : 1.9343300493854767 

 At row:122, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:122, column:98,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:98,the value of plot_cost is         : 1.9694258442247135 

 At row:122, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:122, column:99,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:99,the value of plot_cost is         : 2.0053296994664636 

 At row:122, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:122, column:100,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:100,the value of plot_cost is         : 2.0420416151107292 

 At row:122, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:122, column:101,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:101,the value of plot_cost is         : 2.0795615911575096 

 At row:122, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:122, column:102,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:102,the value of plot_cost is         : 2.1178896276068073 

 At row:122, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:122, column:103,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:103,the value of plot_cost is         : 2.157025724458618 

 At row:122, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:122, column:104,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:104,the value of plot_cost is         : 2.196969881712944 

 At row:122, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:122, column:105,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:105,the value of plot_cost is         : 2.237722099369784 

 At row:122, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:122, column:106,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:106,the value of plot_cost is         : 2.279282377429141 

 At row:122, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:122, column:107,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:107,the value of plot_cost is         : 2.3216507158910122 

 At row:122, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:122, column:108,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:108,the value of plot_cost is         : 2.3648271147554 

 At row:122, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:122, column:109,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:109,the value of plot_cost is         : 2.4088115740223017 

 At row:122, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:122, column:110,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:110,the value of plot_cost is         : 2.453604093691718 

 At row:122, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:122, column:111,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:111,the value of plot_cost is         : 2.4992046737636486 

 At row:122, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:122, column:112,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:112,the value of plot_cost is         : 2.545613314238097 

 At row:122, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:122, column:113,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:113,the value of plot_cost is         : 2.592830015115059 

 At row:122, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:122, column:114,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:114,the value of plot_cost is         : 2.640854776394536 

 At row:122, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:122, column:115,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:115,the value of plot_cost is         : 2.6896875980765276 

 At row:122, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:122, column:116,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:116,the value of plot_cost is         : 2.7393284801610336 

 At row:122, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:122, column:117,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:117,the value of plot_cost is         : 2.7897774226480565 

 At row:122, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:122, column:118,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:118,the value of plot_cost is         : 2.841034425537595 

 At row:122, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:122, column:119,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:119,the value of plot_cost is         : 2.8930994888296473 

 At row:122, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:122, column:120,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:120,the value of plot_cost is         : 2.9459726125242147 

 At row:122, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:122, column:121,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:121,the value of plot_cost is         : 2.9996537966212964 

 At row:122, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:122, column:122,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:122,the value of plot_cost is         : 3.054143041120896 

 At row:122, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:122, column:123,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:123,the value of plot_cost is         : 3.1094403460230087 

 At row:122, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:122, column:124,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:124,the value of plot_cost is         : 3.165545711327636 

 At row:122, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:122, column:125,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:125,the value of plot_cost is         : 3.2224591370347793 

 At row:122, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:122, column:126,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:126,the value of plot_cost is         : 3.280180623144436 

 At row:122, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:122, column:127,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:127,the value of plot_cost is         : 3.3387101696566095 

 At row:122, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:122, column:128,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:128,the value of plot_cost is         : 3.398047776571299 

 At row:122, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:122, column:129,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:129,the value of plot_cost is         : 3.458193443888502 

 At row:122, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:122, column:130,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:130,the value of plot_cost is         : 3.5191471716082203 

 At row:122, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:122, column:131,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:131,the value of plot_cost is         : 3.580908959730453 

 At row:122, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:122, column:132,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:132,the value of plot_cost is         : 3.643478808255203 

 At row:122, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:122, column:133,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:133,the value of plot_cost is         : 3.706856717182467 

 At row:122, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:122, column:134,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:134,the value of plot_cost is         : 3.7710426865122457 

 At row:122, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:122, column:135,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:135,the value of plot_cost is         : 3.8360367162445397 

 At row:122, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:122, column:136,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:136,the value of plot_cost is         : 3.901838806379347 

 At row:122, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:122, column:137,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:137,the value of plot_cost is         : 3.968448956916671 

 At row:122, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:122, column:138,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:138,the value of plot_cost is         : 4.0358671678565115 

 At row:122, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:122, column:139,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:139,the value of plot_cost is         : 4.1040934391988655 

 At row:122, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:122, column:140,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:140,the value of plot_cost is         : 4.1731277709437355 

 At row:122, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:122, column:141,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:141,the value of plot_cost is         : 4.242970163091118 

 At row:122, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:122, column:142,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:142,the value of plot_cost is         : 4.31362061564102 

 At row:122, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:122, column:143,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:143,the value of plot_cost is         : 4.385079128593435 

 At row:122, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:122, column:144,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:144,the value of plot_cost is         : 4.4573457019483635 

 At row:122, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:122, column:145,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:145,the value of plot_cost is         : 4.530420335705808 

 At row:122, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:122, column:146,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:146,the value of plot_cost is         : 4.6043030298657674 

 At row:122, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:122, column:147,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:147,the value of plot_cost is         : 4.678993784428241 

 At row:122, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:122, column:148,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:148,the value of plot_cost is         : 4.754492599393234 

 At row:122, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:122, column:149,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:149,the value of plot_cost is         : 4.830799474760738 

 At row:122, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:122, column:150,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:150,the value of plot_cost is         : 4.907914410530759 

 At row:122, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:122, column:151,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:151,the value of plot_cost is         : 4.985837406703294 

 At row:122, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:122, column:152,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:152,the value of plot_cost is         : 5.064568463278344 

 At row:122, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:122, column:153,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:153,the value of plot_cost is         : 5.14410758025591 

 At row:122, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:122, column:154,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:154,the value of plot_cost is         : 5.22445475763599 

 At row:122, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:122, column:155,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:155,the value of plot_cost is         : 5.305609995418586 

 At row:122, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:122, column:156,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:156,the value of plot_cost is         : 5.387573293603697 

 At row:122, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:122, column:157,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:157,the value of plot_cost is         : 5.470344652191321 

 At row:122, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:122, column:158,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:158,the value of plot_cost is         : 5.553924071181464 

 At row:122, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:122, column:159,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:159,the value of plot_cost is         : 5.6383115505741195 

 At row:122, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:122, column:160,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:160,the value of plot_cost is         : 5.723507090369291 

 At row:122, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:122, column:161,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:161,the value of plot_cost is         : 5.809510690566978 

 At row:122, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:122, column:162,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:162,the value of plot_cost is         : 5.896322351167177 

 At row:122, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:122, column:163,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:163,the value of plot_cost is         : 5.983942072169894 

 At row:122, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:122, column:164,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:164,the value of plot_cost is         : 6.072369853575125 

 At row:122, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:122, column:165,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:165,the value of plot_cost is         : 6.161605695382872 

 At row:122, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:122, column:166,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:166,the value of plot_cost is         : 6.251649597593134 

 At row:122, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:122, column:167,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:167,the value of plot_cost is         : 6.342501560205909 

 At row:122, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:122, column:168,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:168,the value of plot_cost is         : 6.4341615832212025 

 At row:122, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:122, column:169,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:169,the value of plot_cost is         : 6.5266296666390105 

 At row:122, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:122, column:170,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:170,the value of plot_cost is         : 6.619905810459332 

 At row:122, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:122, column:171,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:171,the value of plot_cost is         : 6.713990014682169 

 At row:122, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:122, column:172,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:172,the value of plot_cost is         : 6.808882279307521 

 At row:122, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:122, column:173,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:173,the value of plot_cost is         : 6.904582604335387 

 At row:122, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:122, column:174,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:174,the value of plot_cost is         : 7.001090989765769 

 At row:122, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:122, column:175,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:175,the value of plot_cost is         : 7.098407435598667 

 At row:122, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:122, column:176,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:176,the value of plot_cost is         : 7.196531941834081 

 At row:122, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:122, column:177,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:177,the value of plot_cost is         : 7.295464508472006 

 At row:122, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:122, column:178,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:178,the value of plot_cost is         : 7.395205135512451 

 At row:122, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:122, column:179,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:179,the value of plot_cost is         : 7.495753822955409 

 At row:122, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:122, column:180,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:180,the value of plot_cost is         : 7.597110570800881 

 At row:122, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:122, column:181,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:181,the value of plot_cost is         : 7.699275379048871 

 At row:122, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:122, column:182,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:182,the value of plot_cost is         : 7.802248247699372 

 At row:122, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:122, column:183,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:183,the value of plot_cost is         : 7.906029176752391 

 At row:122, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:122, column:184,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:184,the value of plot_cost is         : 8.010618166207923 

 At row:122, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:122, column:185,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:185,the value of plot_cost is         : 8.116015216065971 

 At row:122, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:122, column:186,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:186,the value of plot_cost is         : 8.222220326326536 

 At row:122, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:122, column:187,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:187,the value of plot_cost is         : 8.32923349698961 

 At row:122, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:122, column:188,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:188,the value of plot_cost is         : 8.437054728055207 

 At row:122, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:122, column:189,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:189,the value of plot_cost is         : 8.545684019523316 

 At row:122, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:122, column:190,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:190,the value of plot_cost is         : 8.655121371393939 

 At row:122, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:122, column:191,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:191,the value of plot_cost is         : 8.76536678366708 

 At row:122, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:122, column:192,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:192,the value of plot_cost is         : 8.876420256342731 

 At row:122, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:122, column:193,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:193,the value of plot_cost is         : 8.9882817894209 

 At row:122, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:122, column:194,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:194,the value of plot_cost is         : 9.100951382901586 

 At row:122, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:122, column:195,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:195,the value of plot_cost is         : 9.214429036784784 

 At row:122, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:122, column:196,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:196,the value of plot_cost is         : 9.3287147510705 

 At row:122, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:122, column:197,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:197,the value of plot_cost is         : 9.44380852575873 

 At row:122, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:122, column:198,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:198,the value of plot_cost is         : 9.559710360849472 

 At row:122, column:199,the value of plot_t0 is           : 3.0
 At row:122, column:199,the value of plot_t1 is           : 1.4522613065326633
 At row:122, column:199,the value of plot_cost is         : 9.676420256342732 

 At row:123, column:0,the value of plot_t0 is           : -1.0
 At row:123, column:0,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:0,the value of plot_cost is         : 2.2745650362364587 

 At row:123, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:123, column:1,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:1,the value of plot_cost is         : 2.2339571150800666 

 At row:123, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:123, column:2,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:2,the value of plot_cost is         : 2.1941572543261887 

 At row:123, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:123, column:3,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:3,the value of plot_cost is         : 2.1551654539748277 

 At row:123, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:123, column:4,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:4,the value of plot_cost is         : 2.11698171402598 

 At row:123, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:123, column:5,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:5,the value of plot_cost is         : 2.079606034479649 

 At row:123, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:123, column:6,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:6,the value of plot_cost is         : 2.0430384153358316 

 At row:123, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:123, column:7,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:7,the value of plot_cost is         : 2.00727885659453 

 At row:123, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:123, column:8,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:8,the value of plot_cost is         : 1.9723273582557441 

 At row:123, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:123, column:9,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:9,the value of plot_cost is         : 1.9381839203194722 

 At row:123, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:123, column:10,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:10,the value of plot_cost is         : 1.9048485427857165 

 At row:123, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:123, column:11,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:11,the value of plot_cost is         : 1.8723212256544746 

 At row:123, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:123, column:12,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:12,the value of plot_cost is         : 1.8406019689257485 

 At row:123, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:123, column:13,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:13,the value of plot_cost is         : 1.809690772599538 

 At row:123, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:123, column:14,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:14,the value of plot_cost is         : 1.7795876366758414 

 At row:123, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:123, column:15,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:15,the value of plot_cost is         : 1.750292561154661 

 At row:123, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:123, column:16,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:16,the value of plot_cost is         : 1.721805546035995 

 At row:123, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:123, column:17,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:17,the value of plot_cost is         : 1.694126591319844 

 At row:123, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:123, column:18,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:18,the value of plot_cost is         : 1.667255697006209 

 At row:123, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:123, column:19,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:19,the value of plot_cost is         : 1.641192863095088 

 At row:123, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:123, column:20,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:20,the value of plot_cost is         : 1.6159380895864828 

 At row:123, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:123, column:21,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:21,the value of plot_cost is         : 1.5914913764803917 

 At row:123, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:123, column:22,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:22,the value of plot_cost is         : 1.5678527237768165 

 At row:123, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:123, column:23,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:23,the value of plot_cost is         : 1.5450221314757566 

 At row:123, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:123, column:24,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:24,the value of plot_cost is         : 1.5229995995772114 

 At row:123, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:123, column:25,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:25,the value of plot_cost is         : 1.5017851280811816 

 At row:123, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:123, column:26,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:26,the value of plot_cost is         : 1.481378716987666 

 At row:123, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:123, column:27,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:27,the value of plot_cost is         : 1.4617803662966662 

 At row:123, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:123, column:28,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:28,the value of plot_cost is         : 1.442990076008182 

 At row:123, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:123, column:29,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:29,the value of plot_cost is         : 1.4250078461222122 

 At row:123, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:123, column:30,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:30,the value of plot_cost is         : 1.4078336766387576 

 At row:123, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:123, column:31,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:31,the value of plot_cost is         : 1.3914675675578174 

 At row:123, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:123, column:32,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:32,the value of plot_cost is         : 1.3759095188793937 

 At row:123, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:123, column:33,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:33,the value of plot_cost is         : 1.3611595306034843 

 At row:123, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:123, column:34,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:34,the value of plot_cost is         : 1.3472176027300904 

 At row:123, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:123, column:35,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:35,the value of plot_cost is         : 1.3340837352592108 

 At row:123, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:123, column:36,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:36,the value of plot_cost is         : 1.3217579281908465 

 At row:123, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:123, column:37,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:37,the value of plot_cost is         : 1.310240181524998 

 At row:123, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:123, column:38,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:38,the value of plot_cost is         : 1.2995304952616638 

 At row:123, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:123, column:39,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:39,the value of plot_cost is         : 1.2896288694008453 

 At row:123, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:123, column:40,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:40,the value of plot_cost is         : 1.2805353039425416 

 At row:123, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:123, column:41,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:41,the value of plot_cost is         : 1.2722497988867525 

 At row:123, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:123, column:42,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:42,the value of plot_cost is         : 1.2647723542334792 

 At row:123, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:123, column:43,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:43,the value of plot_cost is         : 1.2581029699827209 

 At row:123, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:123, column:44,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:44,the value of plot_cost is         : 1.2522416461344776 

 At row:123, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:123, column:45,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:45,the value of plot_cost is         : 1.2471883826887493 

 At row:123, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:123, column:46,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:46,the value of plot_cost is         : 1.242943179645536 

 At row:123, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:123, column:47,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:47,the value of plot_cost is         : 1.2395060370048376 

 At row:123, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:123, column:48,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:48,the value of plot_cost is         : 1.2368769547666547 

 At row:123, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:123, column:49,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:49,the value of plot_cost is         : 1.2350559329309871 

 At row:123, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:123, column:50,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:50,the value of plot_cost is         : 1.234042971497834 

 At row:123, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:123, column:51,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:51,the value of plot_cost is         : 1.233838070467196 

 At row:123, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:123, column:52,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:52,the value of plot_cost is         : 1.2344412298390743 

 At row:123, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:123, column:53,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:53,the value of plot_cost is         : 1.2358524496134662 

 At row:123, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:123, column:54,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:54,the value of plot_cost is         : 1.238071729790374 

 At row:123, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:123, column:55,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:55,the value of plot_cost is         : 1.241099070369796 

 At row:123, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:123, column:56,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:56,the value of plot_cost is         : 1.2449344713517336 

 At row:123, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:123, column:57,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:57,the value of plot_cost is         : 1.2495779327361862 

 At row:123, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:123, column:58,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:58,the value of plot_cost is         : 1.2550294545231546 

 At row:123, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:123, column:59,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:59,the value of plot_cost is         : 1.261289036712638 

 At row:123, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:123, column:60,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:60,the value of plot_cost is         : 1.2683566793046355 

 At row:123, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:123, column:61,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:61,the value of plot_cost is         : 1.2762323822991484 

 At row:123, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:123, column:62,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:62,the value of plot_cost is         : 1.284916145696178 

 At row:123, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:123, column:63,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:63,the value of plot_cost is         : 1.2944079694957205 

 At row:123, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:123, column:64,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:64,the value of plot_cost is         : 1.304707853697779 

 At row:123, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:123, column:65,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:65,the value of plot_cost is         : 1.3158157983023522 

 At row:123, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:123, column:66,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:66,the value of plot_cost is         : 1.3277318033094405 

 At row:123, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:123, column:67,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:67,the value of plot_cost is         : 1.340455868719044 

 At row:123, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:123, column:68,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:68,the value of plot_cost is         : 1.3539879945311633 

 At row:123, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:123, column:69,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:69,the value of plot_cost is         : 1.3683281807457972 

 At row:123, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:123, column:70,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:70,the value of plot_cost is         : 1.3834764273629458 

 At row:123, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:123, column:71,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:71,the value of plot_cost is         : 1.3994327343826096 

 At row:123, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:123, column:72,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:72,the value of plot_cost is         : 1.4161971018047896 

 At row:123, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:123, column:73,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:73,the value of plot_cost is         : 1.4337695296294832 

 At row:123, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:123, column:74,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:74,the value of plot_cost is         : 1.4521500178566926 

 At row:123, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:123, column:75,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:75,the value of plot_cost is         : 1.4713385664864167 

 At row:123, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:123, column:76,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:76,the value of plot_cost is         : 1.491335175518656 

 At row:123, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:123, column:77,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:77,the value of plot_cost is         : 1.5121398449534105 

 At row:123, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:123, column:78,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:78,the value of plot_cost is         : 1.533752574790681 

 At row:123, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:123, column:79,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:79,the value of plot_cost is         : 1.5561733650304657 

 At row:123, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:123, column:80,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:80,the value of plot_cost is         : 1.579402215672765 

 At row:123, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:123, column:81,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:81,the value of plot_cost is         : 1.6034391267175794 

 At row:123, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:123, column:82,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:82,the value of plot_cost is         : 1.6282840981649105 

 At row:123, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:123, column:83,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:83,the value of plot_cost is         : 1.6539371300147556 

 At row:123, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:123, column:84,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:84,the value of plot_cost is         : 1.6803982222671157 

 At row:123, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:123, column:85,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:85,the value of plot_cost is         : 1.7076673749219902 

 At row:123, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:123, column:86,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:86,the value of plot_cost is         : 1.7357445879793798 

 At row:123, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:123, column:87,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:87,the value of plot_cost is         : 1.7646298614392857 

 At row:123, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:123, column:88,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:88,the value of plot_cost is         : 1.7943231953017076 

 At row:123, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:123, column:89,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:89,the value of plot_cost is         : 1.8248245895666426 

 At row:123, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:123, column:90,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:90,the value of plot_cost is         : 1.8561340442340928 

 At row:123, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:123, column:91,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:91,the value of plot_cost is         : 1.888251559304058 

 At row:123, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:123, column:92,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:92,the value of plot_cost is         : 1.9211771347765403 

 At row:123, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:123, column:93,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:93,the value of plot_cost is         : 1.9549107706515363 

 At row:123, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:123, column:94,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:94,the value of plot_cost is         : 1.989452466929047 

 At row:123, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:123, column:95,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:95,the value of plot_cost is         : 2.0248022236090724 

 At row:123, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:123, column:96,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:96,the value of plot_cost is         : 2.060960040691613 

 At row:123, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:123, column:97,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:97,the value of plot_cost is         : 2.0979259181766694 

 At row:123, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:123, column:98,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:98,the value of plot_cost is         : 2.135699856064243 

 At row:123, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:123, column:99,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:99,the value of plot_cost is         : 2.1742818543543283 

 At row:123, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:123, column:100,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:100,the value of plot_cost is         : 2.213671913046929 

 At row:123, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:123, column:101,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:101,the value of plot_cost is         : 2.253870032142045 

 At row:123, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:123, column:102,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:102,the value of plot_cost is         : 2.294876211639679 

 At row:123, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:123, column:103,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:103,the value of plot_cost is         : 2.3366904515398255 

 At row:123, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:123, column:104,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:104,the value of plot_cost is         : 2.3793127518424875 

 At row:123, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:123, column:105,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:105,the value of plot_cost is         : 2.4227431125476637 

 At row:123, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:123, column:106,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:106,the value of plot_cost is         : 2.466981533655355 

 At row:123, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:123, column:107,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:107,the value of plot_cost is         : 2.5120280151655625 

 At row:123, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:123, column:108,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:108,the value of plot_cost is         : 2.557882557078287 

 At row:123, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:123, column:109,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:109,the value of plot_cost is         : 2.6045451593935227 

 At row:123, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:123, column:110,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:110,the value of plot_cost is         : 2.652015822111275 

 At row:123, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:123, column:111,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:111,the value of plot_cost is         : 2.7002945452315417 

 At row:123, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:123, column:112,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:112,the value of plot_cost is         : 2.749381328754326 

 At row:123, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:123, column:113,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:113,the value of plot_cost is         : 2.799276172679624 

 At row:123, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:123, column:114,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:114,the value of plot_cost is         : 2.8499790770074362 

 At row:123, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:123, column:115,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:115,the value of plot_cost is         : 2.9014900417377634 

 At row:123, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:123, column:116,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:116,the value of plot_cost is         : 2.9538090668706056 

 At row:123, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:123, column:117,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:117,the value of plot_cost is         : 3.0069361524059643 

 At row:123, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:123, column:118,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:118,the value of plot_cost is         : 3.060871298343839 

 At row:123, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:123, column:119,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:119,the value of plot_cost is         : 3.1156145046842267 

 At row:123, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:123, column:120,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:120,the value of plot_cost is         : 3.171165771427129 

 At row:123, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:123, column:121,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:121,the value of plot_cost is         : 3.227525098572547 

 At row:123, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:123, column:122,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:122,the value of plot_cost is         : 3.284692486120482 

 At row:123, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:123, column:123,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:123,the value of plot_cost is         : 3.3426679340709313 

 At row:123, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:123, column:124,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:124,the value of plot_cost is         : 3.4014514424238937 

 At row:123, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:123, column:125,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:125,the value of plot_cost is         : 3.461043011179372 

 At row:123, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:123, column:126,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:126,the value of plot_cost is         : 3.521442640337365 

 At row:123, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:123, column:127,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:127,the value of plot_cost is         : 3.582650329897874 

 At row:123, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:123, column:128,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:128,the value of plot_cost is         : 3.6446660798609 

 At row:123, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:123, column:129,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:129,the value of plot_cost is         : 3.7074898902264386 

 At row:123, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:123, column:130,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:130,the value of plot_cost is         : 3.7711217609944923 

 At row:123, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:123, column:131,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:131,the value of plot_cost is         : 3.8355616921650606 

 At row:123, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:123, column:132,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:132,the value of plot_cost is         : 3.9008096837381463 

 At row:123, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:123, column:133,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:133,the value of plot_cost is         : 3.9668657357137462 

 At row:123, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:123, column:134,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:134,the value of plot_cost is         : 4.033729848091861 

 At row:123, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:123, column:135,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:135,the value of plot_cost is         : 4.101402020872489 

 At row:123, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:123, column:136,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:136,the value of plot_cost is         : 4.169882254055633 

 At row:123, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:123, column:137,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:137,the value of plot_cost is         : 4.239170547641294 

 At row:123, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:123, column:138,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:138,the value of plot_cost is         : 4.309266901629471 

 At row:123, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:123, column:139,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:139,the value of plot_cost is         : 4.38017131602016 

 At row:123, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:123, column:140,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:140,the value of plot_cost is         : 4.451883790813365 

 At row:123, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:123, column:141,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:141,the value of plot_cost is         : 4.5244043260090825 

 At row:123, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:123, column:142,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:142,the value of plot_cost is         : 4.59773292160732 

 At row:123, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:123, column:143,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:143,the value of plot_cost is         : 4.671869577608072 

 At row:123, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:123, column:144,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:144,the value of plot_cost is         : 4.746814294011336 

 At row:123, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:123, column:145,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:145,the value of plot_cost is         : 4.822567070817116 

 At row:123, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:123, column:146,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:146,the value of plot_cost is         : 4.8991279080254095 

 At row:123, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:123, column:147,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:147,the value of plot_cost is         : 4.976496805636221 

 At row:123, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:123, column:148,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:148,the value of plot_cost is         : 5.054673763649549 

 At row:123, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:123, column:149,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:149,the value of plot_cost is         : 5.13365878206539 

 At row:123, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:123, column:150,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:150,the value of plot_cost is         : 5.213451860883745 

 At row:123, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:123, column:151,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:151,the value of plot_cost is         : 5.2940530001046175 

 At row:123, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:123, column:152,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:152,the value of plot_cost is         : 5.375462199728002 

 At row:123, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:123, column:153,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:153,the value of plot_cost is         : 5.457679459753905 

 At row:123, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:123, column:154,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:154,the value of plot_cost is         : 5.5407047801823195 

 At row:123, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:123, column:155,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:155,the value of plot_cost is         : 5.624538161013251 

 At row:123, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:123, column:156,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:156,the value of plot_cost is         : 5.7091796022466985 

 At row:123, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:123, column:157,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:157,the value of plot_cost is         : 5.7946291038826585 

 At row:123, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:123, column:158,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:158,the value of plot_cost is         : 5.880886665921136 

 At row:123, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:123, column:159,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:159,the value of plot_cost is         : 5.967952288362129 

 At row:123, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:123, column:160,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:160,the value of plot_cost is         : 6.055825971205634 

 At row:123, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:123, column:161,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:161,the value of plot_cost is         : 6.144507714451659 

 At row:123, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:123, column:162,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:162,the value of plot_cost is         : 6.233997518100193 

 At row:123, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:123, column:163,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:163,the value of plot_cost is         : 6.324295382151246 

 At row:123, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:123, column:164,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:164,the value of plot_cost is         : 6.415401306604812 

 At row:123, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:123, column:165,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:165,the value of plot_cost is         : 6.507315291460895 

 At row:123, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:123, column:166,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:166,the value of plot_cost is         : 6.600037336719493 

 At row:123, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:123, column:167,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:167,the value of plot_cost is         : 6.693567442380605 

 At row:123, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:123, column:168,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:168,the value of plot_cost is         : 6.787905608444234 

 At row:123, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:123, column:169,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:169,the value of plot_cost is         : 6.883051834910376 

 At row:123, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:123, column:170,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:170,the value of plot_cost is         : 6.979006121779032 

 At row:123, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:123, column:171,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:171,the value of plot_cost is         : 7.075768469050208 

 At row:123, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:123, column:172,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:172,the value of plot_cost is         : 7.173338876723894 

 At row:123, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:123, column:173,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:173,the value of plot_cost is         : 7.271717344800098 

 At row:123, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:123, column:174,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:174,the value of plot_cost is         : 7.370903873278814 

 At row:123, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:123, column:175,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:175,the value of plot_cost is         : 7.470898462160047 

 At row:123, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:123, column:176,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:176,the value of plot_cost is         : 7.571701111443796 

 At row:123, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:123, column:177,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:177,the value of plot_cost is         : 7.673311821130058 

 At row:123, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:123, column:178,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:178,the value of plot_cost is         : 7.7757305912188395 

 At row:123, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:123, column:179,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:179,the value of plot_cost is         : 7.878957421710133 

 At row:123, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:123, column:180,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:180,the value of plot_cost is         : 7.982992312603939 

 At row:123, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:123, column:181,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:181,the value of plot_cost is         : 8.087835263900265 

 At row:123, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:123, column:182,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:182,the value of plot_cost is         : 8.193486275599103 

 At row:123, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:123, column:183,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:183,the value of plot_cost is         : 8.299945347700458 

 At row:123, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:123, column:184,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:184,the value of plot_cost is         : 8.407212480204324 

 At row:123, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:123, column:185,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:185,the value of plot_cost is         : 8.51528767311071 

 At row:123, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:123, column:186,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:186,the value of plot_cost is         : 8.62417092641961 

 At row:123, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:123, column:187,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:187,the value of plot_cost is         : 8.73386224013102 

 At row:123, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:123, column:188,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:188,the value of plot_cost is         : 8.844361614244953 

 At row:123, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:123, column:189,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:189,the value of plot_cost is         : 8.955669048761397 

 At row:123, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:123, column:190,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:190,the value of plot_cost is         : 9.067784543680354 

 At row:123, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:123, column:191,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:191,the value of plot_cost is         : 9.180708099001833 

 At row:123, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:123, column:192,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:192,the value of plot_cost is         : 9.294439714725819 

 At row:123, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:123, column:193,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:193,the value of plot_cost is         : 9.408979390852325 

 At row:123, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:123, column:194,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:194,the value of plot_cost is         : 9.524327127381342 

 At row:123, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:123, column:195,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:195,the value of plot_cost is         : 9.64048292431288 

 At row:123, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:123, column:196,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:196,the value of plot_cost is         : 9.757446781646928 

 At row:123, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:123, column:197,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:197,the value of plot_cost is         : 9.875218699383497 

 At row:123, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:123, column:198,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:198,the value of plot_cost is         : 9.993798677522577 

 At row:123, column:199,the value of plot_t0 is           : 3.0
 At row:123, column:199,the value of plot_t1 is           : 1.4723618090452262
 At row:123, column:199,the value of plot_cost is         : 10.113186716064172 

 At row:124, column:0,the value of plot_t0 is           : -1.0
 At row:124, column:0,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:0,the value of plot_cost is         : 2.1909636841782487 

 At row:124, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:124, column:1,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:1,the value of plot_cost is         : 2.1530339060701924 

 At row:124, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:124, column:2,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:2,the value of plot_cost is         : 2.1159121883646512 

 At row:124, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:124, column:3,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:3,the value of plot_cost is         : 2.0795985310616247 

 At row:124, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:124, column:4,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:4,the value of plot_cost is         : 2.044092934161114 

 At row:124, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:124, column:5,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:5,the value of plot_cost is         : 2.0093953976631176 

 At row:124, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:124, column:6,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:6,the value of plot_cost is         : 1.9755059215676367 

 At row:124, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:124, column:7,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:7,the value of plot_cost is         : 1.942424505874671 

 At row:124, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:124, column:8,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:8,the value of plot_cost is         : 1.9101511505842197 

 At row:124, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:124, column:9,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:9,the value of plot_cost is         : 1.8786858556962844 

 At row:124, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:124, column:10,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:10,the value of plot_cost is         : 1.8480286212108636 

 At row:124, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:124, column:11,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:11,the value of plot_cost is         : 1.818179447127958 

 At row:124, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:124, column:12,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:12,the value of plot_cost is         : 1.789138333447568 

 At row:124, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:124, column:13,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:13,the value of plot_cost is         : 1.7609052801696925 

 At row:124, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:124, column:14,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:14,the value of plot_cost is         : 1.733480287294332 

 At row:124, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:124, column:15,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:15,the value of plot_cost is         : 1.7068633548214869 

 At row:124, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:124, column:16,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:16,the value of plot_cost is         : 1.6810544827511569 

 At row:124, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:124, column:17,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:17,the value of plot_cost is         : 1.6560536710833422 

 At row:124, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:124, column:18,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:18,the value of plot_cost is         : 1.631860919818042 

 At row:124, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:124, column:19,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:19,the value of plot_cost is         : 1.608476228955257 

 At row:124, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:124, column:20,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:20,the value of plot_cost is         : 1.585899598494987 

 At row:124, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:124, column:21,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:21,the value of plot_cost is         : 1.564131028437233 

 At row:124, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:124, column:22,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:22,the value of plot_cost is         : 1.5431705187819929 

 At row:124, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:124, column:23,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:23,the value of plot_cost is         : 1.5230180695292685 

 At row:124, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:124, column:24,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:24,the value of plot_cost is         : 1.5036736806790594 

 At row:124, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:124, column:25,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:25,the value of plot_cost is         : 1.485137352231365 

 At row:124, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:124, column:26,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:26,the value of plot_cost is         : 1.4674090841861858 

 At row:124, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:124, column:27,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:27,the value of plot_cost is         : 1.4504888765435215 

 At row:124, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:124, column:28,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:28,the value of plot_cost is         : 1.4343767293033725 

 At row:124, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:124, column:29,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:29,the value of plot_cost is         : 1.419072642465739 

 At row:124, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:124, column:30,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:30,the value of plot_cost is         : 1.4045766160306197 

 At row:124, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:124, column:31,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:31,the value of plot_cost is         : 1.3908886499980164 

 At row:124, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:124, column:32,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:32,the value of plot_cost is         : 1.3780087443679272 

 At row:124, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:124, column:33,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:33,the value of plot_cost is         : 1.3659368991403538 

 At row:124, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:124, column:34,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:34,the value of plot_cost is         : 1.3546731143152955 

 At row:124, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:124, column:35,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:35,the value of plot_cost is         : 1.3442173898927519 

 At row:124, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:124, column:36,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:36,the value of plot_cost is         : 1.3345697258727238 

 At row:124, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:124, column:37,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:37,the value of plot_cost is         : 1.3257301222552103 

 At row:124, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:124, column:38,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:38,the value of plot_cost is         : 1.3176985790402118 

 At row:124, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:124, column:39,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:39,the value of plot_cost is         : 1.310475096227729 

 At row:124, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:124, column:40,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:40,the value of plot_cost is         : 1.304059673817761 

 At row:124, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:124, column:41,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:41,the value of plot_cost is         : 1.2984523118103084 

 At row:124, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:124, column:42,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:42,the value of plot_cost is         : 1.2936530102053703 

 At row:124, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:124, column:43,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:43,the value of plot_cost is         : 1.2896617690029475 

 At row:124, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:124, column:44,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:44,the value of plot_cost is         : 1.28647858820304 

 At row:124, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:124, column:45,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:45,the value of plot_cost is         : 1.2841034678056473 

 At row:124, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:124, column:46,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:46,the value of plot_cost is         : 1.2825364078107702 

 At row:124, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:124, column:47,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:47,the value of plot_cost is         : 1.2817774082184075 

 At row:124, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:124, column:48,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:48,the value of plot_cost is         : 1.2818264690285603 

 At row:124, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:124, column:49,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:49,the value of plot_cost is         : 1.2826835902412281 

 At row:124, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:124, column:50,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:50,the value of plot_cost is         : 1.284348771856411 

 At row:124, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:124, column:51,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:51,the value of plot_cost is         : 1.2868220138741089 

 At row:124, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:124, column:52,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:52,the value of plot_cost is         : 1.2901033162943218 

 At row:124, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:124, column:53,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:53,the value of plot_cost is         : 1.29419267911705 

 At row:124, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:124, column:54,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:54,the value of plot_cost is         : 1.2990901023422936 

 At row:124, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:124, column:55,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:55,the value of plot_cost is         : 1.3047955859700517 

 At row:124, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:124, column:56,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:56,the value of plot_cost is         : 1.3113091300003252 

 At row:124, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:124, column:57,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:57,the value of plot_cost is         : 1.318630734433114 

 At row:124, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:124, column:58,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:58,the value of plot_cost is         : 1.3267603992684174 

 At row:124, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:124, column:59,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:59,the value of plot_cost is         : 1.335698124506236 

 At row:124, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:124, column:60,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:60,the value of plot_cost is         : 1.3454439101465698 

 At row:124, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:124, column:61,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:61,the value of plot_cost is         : 1.3559977561894188 

 At row:124, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:124, column:62,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:62,the value of plot_cost is         : 1.3673596626347824 

 At row:124, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:124, column:63,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:63,the value of plot_cost is         : 1.3795296294826618 

 At row:124, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:124, column:64,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:64,the value of plot_cost is         : 1.392507656733056 

 At row:124, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:124, column:65,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:65,the value of plot_cost is         : 1.4062937443859649 

 At row:124, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:124, column:66,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:66,the value of plot_cost is         : 1.4208878924413892 

 At row:124, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:124, column:67,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:67,the value of plot_cost is         : 1.436290100899329 

 At row:124, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:124, column:68,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:68,the value of plot_cost is         : 1.4525003697597834 

 At row:124, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:124, column:69,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:69,the value of plot_cost is         : 1.4695186990227527 

 At row:124, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:124, column:70,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:70,the value of plot_cost is         : 1.4873450886882373 

 At row:124, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:124, column:71,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:71,the value of plot_cost is         : 1.505979538756237 

 At row:124, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:124, column:72,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:72,the value of plot_cost is         : 1.5254220492267518 

 At row:124, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:124, column:73,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:73,the value of plot_cost is         : 1.5456726200997817 

 At row:124, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:124, column:74,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:74,the value of plot_cost is         : 1.566731251375327 

 At row:124, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:124, column:75,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:75,the value of plot_cost is         : 1.588597943053387 

 At row:124, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:124, column:76,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:76,the value of plot_cost is         : 1.611272695133962 

 At row:124, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:124, column:77,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:77,the value of plot_cost is         : 1.634755507617053 

 At row:124, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:124, column:78,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:78,the value of plot_cost is         : 1.659046380502658 

 At row:124, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:124, column:79,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:79,the value of plot_cost is         : 1.6841453137907785 

 At row:124, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:124, column:80,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:80,the value of plot_cost is         : 1.7100523074814133 

 At row:124, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:124, column:81,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:81,the value of plot_cost is         : 1.7367673615745645 

 At row:124, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:124, column:82,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:82,the value of plot_cost is         : 1.7642904760702298 

 At row:124, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:124, column:83,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:83,the value of plot_cost is         : 1.7926216509684112 

 At row:124, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:124, column:84,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:84,the value of plot_cost is         : 1.8217608862691073 

 At row:124, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:124, column:85,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:85,the value of plot_cost is         : 1.8517081819723176 

 At row:124, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:124, column:86,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:86,the value of plot_cost is         : 1.882463538078044 

 At row:124, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:124, column:87,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:87,the value of plot_cost is         : 1.9140269545862856 

 At row:124, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:124, column:88,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:88,the value of plot_cost is         : 1.9463984314970415 

 At row:124, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:124, column:89,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:89,the value of plot_cost is         : 1.979577968810313 

 At row:124, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:124, column:90,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:90,the value of plot_cost is         : 2.0135655665260987 

 At row:124, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:124, column:91,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:91,the value of plot_cost is         : 2.0483612246444003 

 At row:124, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:124, column:92,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:92,the value of plot_cost is         : 2.083964943165217 

 At row:124, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:124, column:93,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:93,the value of plot_cost is         : 2.120376722088549 

 At row:124, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:124, column:94,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:94,the value of plot_cost is         : 2.1575965614143957 

 At row:124, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:124, column:95,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:95,the value of plot_cost is         : 2.1956244611427573 

 At row:124, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:124, column:96,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:96,the value of plot_cost is         : 2.2344604212736345 

 At row:124, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:124, column:97,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:97,the value of plot_cost is         : 2.2741044418070273 

 At row:124, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:124, column:98,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:98,the value of plot_cost is         : 2.314556522742934 

 At row:124, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:124, column:99,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:99,the value of plot_cost is         : 2.355816664081356 

 At row:124, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:124, column:100,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:100,the value of plot_cost is         : 2.3978848658222924 

 At row:124, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:124, column:101,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:101,the value of plot_cost is         : 2.440761127965745 

 At row:124, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:124, column:102,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:102,the value of plot_cost is         : 2.484445450511712 

 At row:124, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:124, column:103,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:103,the value of plot_cost is         : 2.528937833460196 

 At row:124, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:124, column:104,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:104,the value of plot_cost is         : 2.5742382768111933 

 At row:124, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:124, column:105,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:105,the value of plot_cost is         : 2.6203467805647054 

 At row:124, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:124, column:106,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:106,the value of plot_cost is         : 2.6672633447207335 

 At row:124, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:124, column:107,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:107,the value of plot_cost is         : 2.714987969279278 

 At row:124, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:124, column:108,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:108,the value of plot_cost is         : 2.763520654240335 

 At row:124, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:124, column:109,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:109,the value of plot_cost is         : 2.812861399603908 

 At row:124, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:124, column:110,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:110,the value of plot_cost is         : 2.863010205369996 

 At row:124, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:124, column:111,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:111,the value of plot_cost is         : 2.913967071538599 

 At row:124, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:124, column:112,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:112,the value of plot_cost is         : 2.9657319981097165 

 At row:124, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:124, column:113,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:113,the value of plot_cost is         : 3.018304985083351 

 At row:124, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:124, column:114,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:114,the value of plot_cost is         : 3.0716860324594997 

 At row:124, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:124, column:115,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:115,the value of plot_cost is         : 3.1258751402381635 

 At row:124, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:124, column:116,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:116,the value of plot_cost is         : 3.180872308419341 

 At row:124, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:124, column:117,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:117,the value of plot_cost is         : 3.2366775370030365 

 At row:124, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:124, column:118,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:118,the value of plot_cost is         : 3.2932908259892444 

 At row:124, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:124, column:119,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:119,the value of plot_cost is         : 3.3507121753779683 

 At row:124, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:124, column:120,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:120,the value of plot_cost is         : 3.408941585169208 

 At row:124, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:124, column:121,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:121,the value of plot_cost is         : 3.467979055362961 

 At row:124, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:124, column:122,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:122,the value of plot_cost is         : 3.5278245859592303 

 At row:124, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:124, column:123,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:123,the value of plot_cost is         : 3.5884781769580156 

 At row:124, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:124, column:124,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:124,the value of plot_cost is         : 3.6499398283593143 

 At row:124, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:124, column:125,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:125,the value of plot_cost is         : 3.71220954016313 

 At row:124, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:124, column:126,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:126,the value of plot_cost is         : 3.775287312369458 

 At row:124, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:124, column:127,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:127,the value of plot_cost is         : 3.839173144978304 

 At row:124, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:124, column:128,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:128,the value of plot_cost is         : 3.903867037989664 

 At row:124, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:124, column:129,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:129,the value of plot_cost is         : 3.969368991403538 

 At row:124, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:124, column:130,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:130,the value of plot_cost is         : 4.0356790052199285 

 At row:124, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:124, column:131,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:131,the value of plot_cost is         : 4.102797079438832 

 At row:124, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:124, column:132,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:132,the value of plot_cost is         : 4.170723214060252 

 At row:124, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:124, column:133,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:133,the value of plot_cost is         : 4.2394574090841886 

 At row:124, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:124, column:134,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:134,the value of plot_cost is         : 4.3089996645106385 

 At row:124, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:124, column:135,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:135,the value of plot_cost is         : 4.379349980339604 

 At row:124, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:124, column:136,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:136,the value of plot_cost is         : 4.450508356571084 

 At row:124, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:124, column:137,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:137,the value of plot_cost is         : 4.52247479320508 

 At row:124, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:124, column:138,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:138,the value of plot_cost is         : 4.595249290241592 

 At row:124, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:124, column:139,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:139,the value of plot_cost is         : 4.668831847680615 

 At row:124, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:124, column:140,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:140,the value of plot_cost is         : 4.743222465522158 

 At row:124, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:124, column:141,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:141,the value of plot_cost is         : 4.818421143766211 

 At row:124, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:124, column:142,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:142,the value of plot_cost is         : 4.894427882412782 

 At row:124, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:124, column:143,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:143,the value of plot_cost is         : 4.971242681461869 

 At row:124, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:124, column:144,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:144,the value of plot_cost is         : 5.048865540913471 

 At row:124, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:124, column:145,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:145,the value of plot_cost is         : 5.127296460767588 

 At row:124, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:124, column:146,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:146,the value of plot_cost is         : 5.206535441024218 

 At row:124, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:124, column:147,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:147,the value of plot_cost is         : 5.286582481683367 

 At row:124, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:124, column:148,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:148,the value of plot_cost is         : 5.367437582745027 

 At row:124, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:124, column:149,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:149,the value of plot_cost is         : 5.449100744209203 

 At row:124, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:124, column:150,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:150,the value of plot_cost is         : 5.531571966075895 

 At row:124, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:124, column:151,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:151,the value of plot_cost is         : 5.614851248345101 

 At row:124, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:124, column:152,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:152,the value of plot_cost is         : 5.698938591016822 

 At row:124, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:124, column:153,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:153,the value of plot_cost is         : 5.7838339940910615 

 At row:124, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:124, column:154,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:154,the value of plot_cost is         : 5.869537457567812 

 At row:124, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:124, column:155,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:155,the value of plot_cost is         : 5.95604898144708 

 At row:124, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:124, column:156,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:156,the value of plot_cost is         : 6.043368565728865 

 At row:124, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:124, column:157,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:157,the value of plot_cost is         : 6.131496210413161 

 At row:124, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:124, column:158,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:158,the value of plot_cost is         : 6.220431915499972 

 At row:124, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:124, column:159,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:159,the value of plot_cost is         : 6.310175680989299 

 At row:124, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:124, column:160,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:160,the value of plot_cost is         : 6.400727506881142 

 At row:124, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:124, column:161,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:161,the value of plot_cost is         : 6.492087393175498 

 At row:124, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:124, column:162,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:162,the value of plot_cost is         : 6.584255339872371 

 At row:124, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:124, column:163,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:163,the value of plot_cost is         : 6.67723134697176 

 At row:124, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:124, column:164,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:164,the value of plot_cost is         : 6.771015414473662 

 At row:124, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:124, column:165,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:165,the value of plot_cost is         : 6.865607542378082 

 At row:124, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:124, column:166,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:166,the value of plot_cost is         : 6.961007730685017 

 At row:124, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:124, column:167,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:167,the value of plot_cost is         : 7.057215979394464 

 At row:124, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:124, column:168,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:168,the value of plot_cost is         : 7.154232288506426 

 At row:124, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:124, column:169,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:169,the value of plot_cost is         : 7.252056658020903 

 At row:124, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:124, column:170,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:170,the value of plot_cost is         : 7.350689087937898 

 At row:124, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:124, column:171,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:171,the value of plot_cost is         : 7.450129578257405 

 At row:124, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:124, column:172,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:172,the value of plot_cost is         : 7.550378128979427 

 At row:124, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:124, column:173,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:173,the value of plot_cost is         : 7.6514347401039675 

 At row:124, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:124, column:174,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:174,the value of plot_cost is         : 7.753299411631022 

 At row:124, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:124, column:175,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:175,the value of plot_cost is         : 7.855972143560592 

 At row:124, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:124, column:176,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:176,the value of plot_cost is         : 7.959452935892679 

 At row:124, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:124, column:177,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:177,the value of plot_cost is         : 8.063741788627276 

 At row:124, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:124, column:178,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:178,the value of plot_cost is         : 8.168838701764388 

 At row:124, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:124, column:179,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:179,the value of plot_cost is         : 8.274743675304016 

 At row:124, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:124, column:180,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:180,the value of plot_cost is         : 8.38145670924616 

 At row:124, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:124, column:181,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:181,the value of plot_cost is         : 8.48897780359082 

 At row:124, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:124, column:182,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:182,the value of plot_cost is         : 8.597306958337994 

 At row:124, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:124, column:183,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:183,the value of plot_cost is         : 8.706444173487686 

 At row:124, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:124, column:184,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:184,the value of plot_cost is         : 8.816389449039889 

 At row:124, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:124, column:185,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:185,the value of plot_cost is         : 8.92714278499461 

 At row:124, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:124, column:186,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:186,the value of plot_cost is         : 9.038704181351848 

 At row:124, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:124, column:187,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:187,the value of plot_cost is         : 9.151073638111598 

 At row:124, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:124, column:188,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:188,the value of plot_cost is         : 9.26425115527386 

 At row:124, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:124, column:189,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:189,the value of plot_cost is         : 9.378236732838637 

 At row:124, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:124, column:190,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:190,the value of plot_cost is         : 9.493030370805934 

 At row:124, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:124, column:191,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:191,the value of plot_cost is         : 9.608632069175744 

 At row:124, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:124, column:192,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:192,the value of plot_cost is         : 9.725041827948067 

 At row:124, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:124, column:193,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:193,the value of plot_cost is         : 9.84225964712291 

 At row:124, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:124, column:194,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:194,the value of plot_cost is         : 9.960285526700265 

 At row:124, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:124, column:195,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:195,the value of plot_cost is         : 10.079119466680135 

 At row:124, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:124, column:196,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:196,the value of plot_cost is         : 10.198761467062527 

 At row:124, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:124, column:197,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:197,the value of plot_cost is         : 10.319211527847427 

 At row:124, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:124, column:198,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:198,the value of plot_cost is         : 10.44046964903484 

 At row:124, column:199,the value of plot_t0 is           : 3.0
 At row:124, column:199,the value of plot_t1 is           : 1.492462311557789
 At row:124, column:199,the value of plot_cost is         : 10.562535830624771 

 At row:125, column:0,the value of plot_t0 is           : -1.0
 At row:125, column:0,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:0,the value of plot_cost is         : 2.1199449869592026 

 At row:125, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:125, column:1,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:1,the value of plot_cost is         : 2.0846933518994826 

 At row:125, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:125, column:2,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:2,the value of plot_cost is         : 2.0502497772422767 

 At row:125, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:125, column:3,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:3,the value of plot_cost is         : 2.016614262987586 

 At row:125, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:125, column:4,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:4,the value of plot_cost is         : 1.98378680913541 

 At row:125, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:125, column:5,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:5,the value of plot_cost is         : 1.9517674156857503 

 At row:125, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:125, column:6,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:6,the value of plot_cost is         : 1.9205560826386054 

 At row:125, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:125, column:7,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:7,the value of plot_cost is         : 1.8901528099939748 

 At row:125, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:125, column:8,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:8,the value of plot_cost is         : 1.86055759775186 

 At row:125, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:125, column:9,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:9,the value of plot_cost is         : 1.83177044591226 

 At row:125, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:125, column:10,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:10,the value of plot_cost is         : 1.8037913544751751 

 At row:125, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:125, column:11,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:11,the value of plot_cost is         : 1.7766203234406053 

 At row:125, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:125, column:12,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:12,the value of plot_cost is         : 1.7502573528085505 

 At row:125, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:125, column:13,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:13,the value of plot_cost is         : 1.724702442579011 

 At row:125, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:125, column:14,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:14,the value of plot_cost is         : 1.6999555927519863 

 At row:125, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:125, column:15,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:15,the value of plot_cost is         : 1.6760168033274767 

 At row:125, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:125, column:16,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:16,the value of plot_cost is         : 1.6528860743054825 

 At row:125, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:125, column:17,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:17,the value of plot_cost is         : 1.6305634056860032 

 At row:125, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:125, column:18,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:18,the value of plot_cost is         : 1.6090487974690393 

 At row:125, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:125, column:19,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:19,the value of plot_cost is         : 1.58834224965459 

 At row:125, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:125, column:20,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:20,the value of plot_cost is         : 1.5684437622426561 

 At row:125, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:125, column:21,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:21,the value of plot_cost is         : 1.5493533352332371 

 At row:125, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:125, column:22,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:22,the value of plot_cost is         : 1.531070968626333 

 At row:125, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:125, column:23,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:23,the value of plot_cost is         : 1.5135966624219441 

 At row:125, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:125, column:24,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:24,the value of plot_cost is         : 1.4969304166200712 

 At row:125, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:125, column:25,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:25,the value of plot_cost is         : 1.4810722312207123 

 At row:125, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:125, column:26,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:26,the value of plot_cost is         : 1.466022106223869 

 At row:125, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:125, column:27,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:27,the value of plot_cost is         : 1.4517800416295406 

 At row:125, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:125, column:28,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:28,the value of plot_cost is         : 1.438346037437727 

 At row:125, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:125, column:29,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:29,the value of plot_cost is         : 1.4257200936484289 

 At row:125, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:125, column:30,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:30,the value of plot_cost is         : 1.4139022102616456 

 At row:125, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:125, column:31,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:31,the value of plot_cost is         : 1.402892387277378 

 At row:125, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:125, column:32,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:32,the value of plot_cost is         : 1.392690624695625 

 At row:125, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:125, column:33,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:33,the value of plot_cost is         : 1.383296922516387 

 At row:125, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:125, column:34,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:34,the value of plot_cost is         : 1.3747112807396642 

 At row:125, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:125, column:35,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:35,the value of plot_cost is         : 1.3669336993654564 

 At row:125, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:125, column:36,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:36,the value of plot_cost is         : 1.359964178393764 

 At row:125, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:125, column:37,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:37,the value of plot_cost is         : 1.3538027178245864 

 At row:125, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:125, column:38,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:38,the value of plot_cost is         : 1.3484493176579238 

 At row:125, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:125, column:39,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:39,the value of plot_cost is         : 1.3439039778937767 

 At row:125, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:125, column:40,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:40,the value of plot_cost is         : 1.3401666985321445 

 At row:125, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:125, column:41,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:41,the value of plot_cost is         : 1.3372374795730273 

 At row:125, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:125, column:42,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:42,the value of plot_cost is         : 1.3351163210164252 

 At row:125, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:125, column:43,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:43,the value of plot_cost is         : 1.3338032228623382 

 At row:125, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:125, column:44,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:44,the value of plot_cost is         : 1.3332981851107666 

 At row:125, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:125, column:45,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:45,the value of plot_cost is         : 1.3336012077617092 

 At row:125, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:125, column:46,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:46,the value of plot_cost is         : 1.3347122908151678 

 At row:125, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:125, column:47,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:47,the value of plot_cost is         : 1.336631434271141 

 At row:125, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:125, column:48,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:48,the value of plot_cost is         : 1.3393586381296296 

 At row:125, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:125, column:49,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:49,the value of plot_cost is         : 1.3428939023906332 

 At row:125, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:125, column:50,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:50,the value of plot_cost is         : 1.3472372270541517 

 At row:125, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:125, column:51,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:51,the value of plot_cost is         : 1.3523886121201856 

 At row:125, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:125, column:52,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:52,the value of plot_cost is         : 1.358348057588734 

 At row:125, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:125, column:53,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:53,the value of plot_cost is         : 1.365115563459798 

 At row:125, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:125, column:54,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:54,the value of plot_cost is         : 1.3726911297333773 

 At row:125, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:125, column:55,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:55,the value of plot_cost is         : 1.3810747564094712 

 At row:125, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:125, column:56,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:56,the value of plot_cost is         : 1.3902664434880803 

 At row:125, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:125, column:57,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:57,the value of plot_cost is         : 1.4002661909692051 

 At row:125, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:125, column:58,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:58,the value of plot_cost is         : 1.4110739988528442 

 At row:125, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:125, column:59,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:59,the value of plot_cost is         : 1.4226898671389987 

 At row:125, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:125, column:60,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:60,the value of plot_cost is         : 1.435113795827668 

 At row:125, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:125, column:61,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:61,the value of plot_cost is         : 1.4483457849188524 

 At row:125, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:125, column:62,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:62,the value of plot_cost is         : 1.4623858344125518 

 At row:125, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:125, column:63,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:63,the value of plot_cost is         : 1.477233944308767 

 At row:125, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:125, column:64,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:64,the value of plot_cost is         : 1.492890114607497 

 At row:125, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:125, column:65,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:65,the value of plot_cost is         : 1.509354345308742 

 At row:125, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:125, column:66,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:66,the value of plot_cost is         : 1.5266266364125018 

 At row:125, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:125, column:67,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:67,the value of plot_cost is         : 1.5447069879187771 

 At row:125, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:125, column:68,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:68,the value of plot_cost is         : 1.5635953998275671 

 At row:125, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:125, column:69,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:69,the value of plot_cost is         : 1.5832918721388727 

 At row:125, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:125, column:70,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:70,the value of plot_cost is         : 1.603796404852693 

 At row:125, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:125, column:71,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:71,the value of plot_cost is         : 1.625108997969028 

 At row:125, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:125, column:72,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:72,the value of plot_cost is         : 1.6472296514878786 

 At row:125, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:125, column:73,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:73,the value of plot_cost is         : 1.670158365409245 

 At row:125, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:125, column:74,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:74,the value of plot_cost is         : 1.6938951397331252 

 At row:125, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:125, column:75,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:75,the value of plot_cost is         : 1.7184399744595211 

 At row:125, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:125, column:76,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:76,the value of plot_cost is         : 1.7437928695884317 

 At row:125, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:125, column:77,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:77,the value of plot_cost is         : 1.7699538251198585 

 At row:125, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:125, column:78,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:78,the value of plot_cost is         : 1.7969228410537996 

 At row:125, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:125, column:79,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:79,the value of plot_cost is         : 1.8246999173902556 

 At row:125, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:125, column:80,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:80,the value of plot_cost is         : 1.8532850541292263 

 At row:125, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:125, column:81,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:81,the value of plot_cost is         : 1.882678251270713 

 At row:125, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:125, column:82,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:82,the value of plot_cost is         : 1.912879508814714 

 At row:125, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:125, column:83,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:83,the value of plot_cost is         : 1.9438888267612313 

 At row:125, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:125, column:84,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:84,the value of plot_cost is         : 1.9757062051102627 

 At row:125, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:125, column:85,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:85,the value of plot_cost is         : 2.0083316438618093 

 At row:125, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:125, column:86,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:86,the value of plot_cost is         : 2.0417651430158705 

 At row:125, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:125, column:87,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:87,the value of plot_cost is         : 2.0760067025724482 

 At row:125, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:125, column:88,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:88,the value of plot_cost is         : 2.11105632253154 

 At row:125, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:125, column:89,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:89,the value of plot_cost is         : 2.1469140028931477 

 At row:125, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:125, column:90,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:90,the value of plot_cost is         : 2.183579743657269 

 At row:125, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:125, column:91,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:91,the value of plot_cost is         : 2.2210535448239064 

 At row:125, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:125, column:92,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:92,the value of plot_cost is         : 2.259335406393058 

 At row:125, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:125, column:93,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:93,the value of plot_cost is         : 2.2984253283647265 

 At row:125, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:125, column:94,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:94,the value of plot_cost is         : 2.338323310738909 

 At row:125, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:125, column:95,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:95,the value of plot_cost is         : 2.379029353515606 

 At row:125, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:125, column:96,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:96,the value of plot_cost is         : 2.4205434566948187 

 At row:125, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:125, column:97,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:97,the value of plot_cost is         : 2.4628656202765473 

 At row:125, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:125, column:98,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:98,the value of plot_cost is         : 2.5059958442607897 

 At row:125, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:125, column:99,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:99,the value of plot_cost is         : 2.5499341286475476 

 At row:125, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:125, column:100,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:100,the value of plot_cost is         : 2.5946804734368203 

 At row:125, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:125, column:101,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:101,the value of plot_cost is         : 2.640234878628608 

 At row:125, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:125, column:102,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:102,the value of plot_cost is         : 2.686597344222911 

 At row:125, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:125, column:103,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:103,the value of plot_cost is         : 2.7337678702197303 

 At row:125, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:125, column:104,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:104,the value of plot_cost is         : 2.781746456619064 

 At row:125, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:125, column:105,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:105,the value of plot_cost is         : 2.830533103420912 

 At row:125, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:125, column:106,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:106,the value of plot_cost is         : 2.8801278106252752 

 At row:125, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:125, column:107,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:107,the value of plot_cost is         : 2.930530578232155 

 At row:125, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:125, column:108,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:108,the value of plot_cost is         : 2.9817414062415484 

 At row:125, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:125, column:109,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:109,the value of plot_cost is         : 3.033760294653457 

 At row:125, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:125, column:110,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:110,the value of plot_cost is         : 3.0865872434678807 

 At row:125, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:125, column:111,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:111,the value of plot_cost is         : 3.1402222526848194 

 At row:125, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:125, column:112,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:112,the value of plot_cost is         : 3.1946653223042727 

 At row:125, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:125, column:113,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:113,the value of plot_cost is         : 3.2499164523262434 

 At row:125, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:125, column:114,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:114,the value of plot_cost is         : 3.305975642750728 

 At row:125, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:125, column:115,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:115,the value of plot_cost is         : 3.362842893577727 

 At row:125, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:125, column:116,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:116,the value of plot_cost is         : 3.42051820480724 

 At row:125, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:125, column:117,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:117,the value of plot_cost is         : 3.479001576439271 

 At row:125, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:125, column:118,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:118,the value of plot_cost is         : 3.538293008473816 

 At row:125, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:125, column:119,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:119,the value of plot_cost is         : 3.598392500910876 

 At row:125, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:125, column:120,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:120,the value of plot_cost is         : 3.6593000537504503 

 At row:125, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:125, column:121,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:121,the value of plot_cost is         : 3.721015666992538 

 At row:125, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:125, column:122,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:122,the value of plot_cost is         : 3.7835393406371427 

 At row:125, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:125, column:123,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:123,the value of plot_cost is         : 3.8468710746842647 

 At row:125, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:125, column:124,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:124,the value of plot_cost is         : 3.9110108691339005 

 At row:125, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:125, column:125,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:125,the value of plot_cost is         : 3.9759587239860505 

 At row:125, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:125, column:126,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:126,the value of plot_cost is         : 4.041714639240715 

 At row:125, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:125, column:127,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:127,the value of plot_cost is         : 4.1082786148978965 

 At row:125, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:125, column:128,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:128,the value of plot_cost is         : 4.175650650957592 

 At row:125, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:125, column:129,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:129,the value of plot_cost is         : 4.2438307474198025 

 At row:125, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:125, column:130,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:130,the value of plot_cost is         : 4.312818904284527 

 At row:125, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:125, column:131,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:131,the value of plot_cost is         : 4.382615121551767 

 At row:125, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:125, column:132,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:132,the value of plot_cost is         : 4.453219399221523 

 At row:125, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:125, column:133,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:133,the value of plot_cost is         : 4.524631737293795 

 At row:125, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:125, column:134,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:134,the value of plot_cost is         : 4.596852135768581 

 At row:125, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:125, column:135,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:135,the value of plot_cost is         : 4.669880594645883 

 At row:125, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:125, column:136,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:136,the value of plot_cost is         : 4.7437171139256975 

 At row:125, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:125, column:137,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:137,the value of plot_cost is         : 4.81836169360803 

 At row:125, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:125, column:138,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:138,the value of plot_cost is         : 4.893814333692876 

 At row:125, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:125, column:139,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:139,the value of plot_cost is         : 4.970075034180238 

 At row:125, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:125, column:140,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:140,the value of plot_cost is         : 5.047143795070114 

 At row:125, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:125, column:141,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:141,the value of plot_cost is         : 5.125020616362504 

 At row:125, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:125, column:142,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:142,the value of plot_cost is         : 5.20370549805741 

 At row:125, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:125, column:143,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:143,the value of plot_cost is         : 5.283198440154835 

 At row:125, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:125, column:144,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:144,the value of plot_cost is         : 5.3634994426547715 

 At row:125, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:125, column:145,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:145,the value of plot_cost is         : 5.444608505557223 

 At row:125, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:125, column:146,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:146,the value of plot_cost is         : 5.5265256288621885 

 At row:125, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:125, column:147,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:147,the value of plot_cost is         : 5.609250812569673 

 At row:125, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:125, column:148,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:148,the value of plot_cost is         : 5.69278405667967 

 At row:125, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:125, column:149,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:149,the value of plot_cost is         : 5.777125361192182 

 At row:125, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:125, column:150,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:150,the value of plot_cost is         : 5.86227472610721 

 At row:125, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:125, column:151,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:151,the value of plot_cost is         : 5.948232151424751 

 At row:125, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:125, column:152,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:152,the value of plot_cost is         : 6.034997637144807 

 At row:125, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:125, column:153,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:153,the value of plot_cost is         : 6.122571183267382 

 At row:125, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:125, column:154,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:154,the value of plot_cost is         : 6.2109527897924695 

 At row:125, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:125, column:155,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:155,the value of plot_cost is         : 6.300142456720073 

 At row:125, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:125, column:156,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:156,the value of plot_cost is         : 6.3901401840501935 

 At row:125, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:125, column:157,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:157,the value of plot_cost is         : 6.480945971782825 

 At row:125, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:125, column:158,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:158,the value of plot_cost is         : 6.572559819917972 

 At row:125, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:125, column:159,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:159,the value of plot_cost is         : 6.664981728455636 

 At row:125, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:125, column:160,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:160,the value of plot_cost is         : 6.758211697395813 

 At row:125, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:125, column:161,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:161,the value of plot_cost is         : 6.852249726738506 

 At row:125, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:125, column:162,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:162,the value of plot_cost is         : 6.947095816483713 

 At row:125, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:125, column:163,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:163,the value of plot_cost is         : 7.042749966631439 

 At row:125, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:125, column:164,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:164,the value of plot_cost is         : 7.139212177181678 

 At row:125, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:125, column:165,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:165,the value of plot_cost is         : 7.23648244813443 

 At row:125, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:125, column:166,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:166,the value of plot_cost is         : 7.334560779489703 

 At row:125, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:125, column:167,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:167,the value of plot_cost is         : 7.433447171247485 

 At row:125, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:125, column:168,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:168,the value of plot_cost is         : 7.533141623407784 

 At row:125, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:125, column:169,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:169,the value of plot_cost is         : 7.633644135970599 

 At row:125, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:125, column:170,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:170,the value of plot_cost is         : 7.734954708935926 

 At row:125, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:125, column:171,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:171,the value of plot_cost is         : 7.8370733423037695 

 At row:125, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:125, column:172,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:172,the value of plot_cost is         : 7.940000036074126 

 At row:125, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:125, column:173,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:173,the value of plot_cost is         : 8.043734790247004 

 At row:125, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:125, column:174,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:174,the value of plot_cost is         : 8.148277604822395 

 At row:125, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:125, column:175,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:175,the value of plot_cost is         : 8.253628479800298 

 At row:125, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:125, column:176,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:176,the value of plot_cost is         : 8.35978741518072 

 At row:125, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:125, column:177,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:177,the value of plot_cost is         : 8.466754410963654 

 At row:125, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:125, column:178,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:178,the value of plot_cost is         : 8.574529467149103 

 At row:125, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:125, column:179,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:179,the value of plot_cost is         : 8.683112583737069 

 At row:125, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:125, column:180,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:180,the value of plot_cost is         : 8.792503760727547 

 At row:125, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:125, column:181,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:181,the value of plot_cost is         : 8.90270299812054 

 At row:125, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:125, column:182,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:182,the value of plot_cost is         : 9.01371029591605 

 At row:125, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:125, column:183,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:183,the value of plot_cost is         : 9.125525654114078 

 At row:125, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:125, column:184,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:184,the value of plot_cost is         : 9.23814907271462 

 At row:125, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:125, column:185,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:185,the value of plot_cost is         : 9.351580551717676 

 At row:125, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:125, column:186,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:186,the value of plot_cost is         : 9.465820091123248 

 At row:125, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:125, column:187,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:187,the value of plot_cost is         : 9.580867690931331 

 At row:125, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:125, column:188,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:188,the value of plot_cost is         : 9.696723351141932 

 At row:125, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:125, column:189,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:189,the value of plot_cost is         : 9.813387071755047 

 At row:125, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:125, column:190,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:190,the value of plot_cost is         : 9.930858852770678 

 At row:125, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:125, column:191,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:191,the value of plot_cost is         : 10.049138694188821 

 At row:125, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:125, column:192,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:192,the value of plot_cost is         : 10.168226596009482 

 At row:125, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:125, column:193,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:193,the value of plot_cost is         : 10.288122558232661 

 At row:125, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:125, column:194,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:194,the value of plot_cost is         : 10.408826580858353 

 At row:125, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:125, column:195,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:195,the value of plot_cost is         : 10.530338663886559 

 At row:125, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:125, column:196,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:196,the value of plot_cost is         : 10.652658807317284 

 At row:125, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:125, column:197,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:197,the value of plot_cost is         : 10.775787011150518 

 At row:125, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:125, column:198,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:198,the value of plot_cost is         : 10.899723275386268 

 At row:125, column:199,the value of plot_t0 is           : 3.0
 At row:125, column:199,the value of plot_t1 is           : 1.512562814070352
 At row:125, column:199,the value of plot_cost is         : 11.024467600024536 

 At row:126, column:0,the value of plot_t0 is           : -1.0
 At row:126, column:0,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:0,the value of plot_cost is         : 2.0615089445793227 

 At row:126, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:126, column:1,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:1,the value of plot_cost is         : 2.0289354525679375 

 At row:126, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:126, column:2,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:2,the value of plot_cost is         : 1.9971700209590673 

 At row:126, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:126, column:3,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:3,the value of plot_cost is         : 1.9662126497527126 

 At row:126, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:126, column:4,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:4,the value of plot_cost is         : 1.9360633389488726 

 At row:126, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:126, column:5,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:5,the value of plot_cost is         : 1.9067220885475482 

 At row:126, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:126, column:6,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:6,the value of plot_cost is         : 1.8781888985487383 

 At row:126, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:126, column:7,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:7,the value of plot_cost is         : 1.8504637689524437 

 At row:126, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:126, column:8,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:8,the value of plot_cost is         : 1.823546699758665 

 At row:126, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:126, column:9,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:9,the value of plot_cost is         : 1.7974376909674004 

 At row:126, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:126, column:10,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:10,the value of plot_cost is         : 1.7721367425786516 

 At row:126, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:126, column:11,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:11,the value of plot_cost is         : 1.7476438545924171 

 At row:126, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:126, column:12,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:12,the value of plot_cost is         : 1.7239590270086977 

 At row:126, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:126, column:13,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:13,the value of plot_cost is         : 1.7010822598274944 

 At row:126, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:126, column:14,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:14,the value of plot_cost is         : 1.679013553048805 

 At row:126, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:126, column:15,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:15,the value of plot_cost is         : 1.6577529066726315 

 At row:126, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:126, column:16,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:16,the value of plot_cost is         : 1.6373003206989725 

 At row:126, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:126, column:17,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:17,the value of plot_cost is         : 1.617655795127829 

 At row:126, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:126, column:18,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:18,the value of plot_cost is         : 1.5988193299592006 

 At row:126, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:126, column:19,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:19,the value of plot_cost is         : 1.5807909251930874 

 At row:126, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:126, column:20,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:20,the value of plot_cost is         : 1.5635705808294884 

 At row:126, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:126, column:21,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:21,the value of plot_cost is         : 1.5471582968684052 

 At row:126, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:126, column:22,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:22,the value of plot_cost is         : 1.5315540733098374 

 At row:126, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:126, column:23,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:23,the value of plot_cost is         : 1.5167579101537843 

 At row:126, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:126, column:24,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:24,the value of plot_cost is         : 1.5027698074002465 

 At row:126, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:126, column:25,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:25,the value of plot_cost is         : 1.4895897650492234 

 At row:126, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:126, column:26,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:26,the value of plot_cost is         : 1.4772177831007152 

 At row:126, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:126, column:27,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:27,the value of plot_cost is         : 1.4656538615547228 

 At row:126, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:126, column:28,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:28,the value of plot_cost is         : 1.4548980004112455 

 At row:126, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:126, column:29,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:29,the value of plot_cost is         : 1.4449501996702827 

 At row:126, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:126, column:30,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:30,the value of plot_cost is         : 1.4358104593318353 

 At row:126, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:126, column:31,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:31,the value of plot_cost is         : 1.4274787793959025 

 At row:126, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:126, column:32,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:32,the value of plot_cost is         : 1.4199551598624855 

 At row:126, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:126, column:33,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:33,the value of plot_cost is         : 1.4132396007315835 

 At row:126, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:126, column:34,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:34,the value of plot_cost is         : 1.4073321020031964 

 At row:126, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:126, column:35,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:35,the value of plot_cost is         : 1.4022326636773244 

 At row:126, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:126, column:36,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:36,the value of plot_cost is         : 1.3979412857539673 

 At row:126, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:126, column:37,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:37,the value of plot_cost is         : 1.3944579682331253 

 At row:126, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:126, column:38,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:38,the value of plot_cost is         : 1.391782711114799 

 At row:126, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:126, column:39,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:39,the value of plot_cost is         : 1.3899155143989874 

 At row:126, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:126, column:40,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:40,the value of plot_cost is         : 1.3888563780856904 

 At row:126, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:126, column:41,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:41,the value of plot_cost is         : 1.3886053021749085 

 At row:126, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:126, column:42,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:42,the value of plot_cost is         : 1.3891622866666424 

 At row:126, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:126, column:43,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:43,the value of plot_cost is         : 1.3905273315608913 

 At row:126, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:126, column:44,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:44,the value of plot_cost is         : 1.3927004368576552 

 At row:126, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:126, column:45,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:45,the value of plot_cost is         : 1.3956816025569336 

 At row:126, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:126, column:46,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:46,the value of plot_cost is         : 1.3994708286587274 

 At row:126, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:126, column:47,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:47,the value of plot_cost is         : 1.4040681151630368 

 At row:126, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:126, column:48,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:48,the value of plot_cost is         : 1.409473462069861 

 At row:126, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:126, column:49,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:49,the value of plot_cost is         : 1.4156868693792006 

 At row:126, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:126, column:50,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:50,the value of plot_cost is         : 1.4227083370910545 

 At row:126, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:126, column:51,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:51,the value of plot_cost is         : 1.4305378652054235 

 At row:126, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:126, column:52,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:52,the value of plot_cost is         : 1.4391754537223083 

 At row:126, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:126, column:53,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:53,the value of plot_cost is         : 1.4486211026417082 

 At row:126, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:126, column:54,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:54,the value of plot_cost is         : 1.4588748119636228 

 At row:126, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:126, column:55,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:55,the value of plot_cost is         : 1.469936581688052 

 At row:126, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:126, column:56,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:56,the value of plot_cost is         : 1.4818064118149965 

 At row:126, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:126, column:57,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:57,the value of plot_cost is         : 1.4944843023444574 

 At row:126, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:126, column:58,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:58,the value of plot_cost is         : 1.507970253276432 

 At row:126, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:126, column:59,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:59,the value of plot_cost is         : 1.5222642646109223 

 At row:126, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:126, column:60,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:60,the value of plot_cost is         : 1.537366336347927 

 At row:126, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:126, column:61,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:61,the value of plot_cost is         : 1.5532764684874472 

 At row:126, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:126, column:62,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:62,the value of plot_cost is         : 1.5699946610294824 

 At row:126, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:126, column:63,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:63,the value of plot_cost is         : 1.5875209139740334 

 At row:126, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:126, column:64,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:64,the value of plot_cost is         : 1.605855227321099 

 At row:126, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:126, column:65,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:65,the value of plot_cost is         : 1.6249976010706793 

 At row:126, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:126, column:66,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:66,the value of plot_cost is         : 1.6449480352227746 

 At row:126, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:126, column:67,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:67,the value of plot_cost is         : 1.6657065297773868 

 At row:126, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:126, column:68,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:68,the value of plot_cost is         : 1.6872730847345117 

 At row:126, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:126, column:69,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:69,the value of plot_cost is         : 1.709647700094153 

 At row:126, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:126, column:70,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:70,the value of plot_cost is         : 1.7328303758563086 

 At row:126, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:126, column:71,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:71,the value of plot_cost is         : 1.7568211120209796 

 At row:126, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:126, column:72,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:72,the value of plot_cost is         : 1.781619908588166 

 At row:126, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:126, column:73,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:73,the value of plot_cost is         : 1.8072267655578678 

 At row:126, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:126, column:74,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:74,the value of plot_cost is         : 1.8336416829300846 

 At row:126, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:126, column:75,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:75,the value of plot_cost is         : 1.8608646607048154 

 At row:126, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:126, column:76,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:76,the value of plot_cost is         : 1.8888956988820615 

 At row:126, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:126, column:77,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:77,the value of plot_cost is         : 1.9177347974618242 

 At row:126, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:126, column:78,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:78,the value of plot_cost is         : 1.9473819564441017 

 At row:126, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:126, column:79,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:79,the value of plot_cost is         : 1.9778371758288928 

 At row:126, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:126, column:80,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:80,the value of plot_cost is         : 2.009100455616199 

 At row:126, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:126, column:81,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:81,the value of plot_cost is         : 2.0411717958060205 

 At row:126, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:126, column:82,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:82,the value of plot_cost is         : 2.074051196398358 

 At row:126, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:126, column:83,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:83,the value of plot_cost is         : 2.1077386573932113 

 At row:126, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:126, column:84,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:84,the value of plot_cost is         : 2.142234178790578 

 At row:126, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:126, column:85,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:85,the value of plot_cost is         : 2.17753776059046 

 At row:126, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:126, column:86,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:86,the value of plot_cost is         : 2.213649402792857 

 At row:126, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:126, column:87,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:87,the value of plot_cost is         : 2.250569105397771 

 At row:126, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:126, column:88,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:88,the value of plot_cost is         : 2.2882968684051987 

 At row:126, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:126, column:89,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:89,the value of plot_cost is         : 2.326832691815141 

 At row:126, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:126, column:90,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:90,the value of plot_cost is         : 2.3661765756275983 

 At row:126, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:126, column:91,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:91,the value of plot_cost is         : 2.406328519842571 

 At row:126, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:126, column:92,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:92,the value of plot_cost is         : 2.4472885244600593 

 At row:126, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:126, column:93,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:93,the value of plot_cost is         : 2.489056589480063 

 At row:126, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:126, column:94,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:94,the value of plot_cost is         : 2.5316327149025812 

 At row:126, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:126, column:95,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:95,the value of plot_cost is         : 2.5750169007276136 

 At row:126, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:126, column:96,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:96,the value of plot_cost is         : 2.619209146955161 

 At row:126, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:126, column:97,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:97,the value of plot_cost is         : 2.6642094535852263 

 At row:126, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:126, column:98,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:98,the value of plot_cost is         : 2.710017820617805 

 At row:126, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:126, column:99,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:99,the value of plot_cost is         : 2.7566342480528983 

 At row:126, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:126, column:100,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:100,the value of plot_cost is         : 2.804058735890506 

 At row:126, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:126, column:101,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:101,the value of plot_cost is         : 2.8522912841306294 

 At row:126, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:126, column:102,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:102,the value of plot_cost is         : 2.9013318927732685 

 At row:126, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:126, column:103,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:103,the value of plot_cost is         : 2.951180561818424 

 At row:126, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:126, column:104,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:104,the value of plot_cost is         : 3.0018372912660927 

 At row:126, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:126, column:105,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:105,the value of plot_cost is         : 3.0533020811162763 

 At row:126, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:126, column:106,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:106,the value of plot_cost is         : 3.1055749313689747 

 At row:126, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:126, column:107,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:107,the value of plot_cost is         : 3.1586558420241913 

 At row:126, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:126, column:108,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:108,the value of plot_cost is         : 3.2125448130819203 

 At row:126, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:126, column:109,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:109,the value of plot_cost is         : 3.2672418445421645 

 At row:126, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:126, column:110,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:110,the value of plot_cost is         : 3.3227469364049234 

 At row:126, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:126, column:111,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:111,the value of plot_cost is         : 3.3790600886701974 

 At row:126, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:126, column:112,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:112,the value of plot_cost is         : 3.4361813013379865 

 At row:126, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:126, column:113,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:113,the value of plot_cost is         : 3.494110574408294 

 At row:126, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:126, column:114,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:114,the value of plot_cost is         : 3.552847907881113 

 At row:126, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:126, column:115,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:115,the value of plot_cost is         : 3.612393301756447 

 At row:126, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:126, column:116,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:116,the value of plot_cost is         : 3.6727467560342966 

 At row:126, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:126, column:117,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:117,the value of plot_cost is         : 3.7339082707146636 

 At row:126, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:126, column:118,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:118,the value of plot_cost is         : 3.795877845797544 

 At row:126, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:126, column:119,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:119,the value of plot_cost is         : 3.8586554812829394 

 At row:126, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:126, column:120,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:120,the value of plot_cost is         : 3.9222411771708487 

 At row:126, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:126, column:121,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:121,the value of plot_cost is         : 3.986634933461273 

 At row:126, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:126, column:122,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:122,the value of plot_cost is         : 4.051836750154215 

 At row:126, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:126, column:123,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:123,the value of plot_cost is         : 4.117846627249672 

 At row:126, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:126, column:124,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:124,the value of plot_cost is         : 4.184664564747642 

 At row:126, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:126, column:125,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:125,the value of plot_cost is         : 4.2522905626481275 

 At row:126, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:126, column:126,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:126,the value of plot_cost is         : 4.320724620951127 

 At row:126, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:126, column:127,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:127,the value of plot_cost is         : 4.3899667396566455 

 At row:126, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:126, column:128,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:128,the value of plot_cost is         : 4.460016918764677 

 At row:126, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:126, column:129,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:129,the value of plot_cost is         : 4.530875158275222 

 At row:126, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:126, column:130,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:130,the value of plot_cost is         : 4.602541458188283 

 At row:126, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:126, column:131,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:131,the value of plot_cost is         : 4.675015818503859 

 At row:126, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:126, column:132,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:132,the value of plot_cost is         : 4.74829823922195 

 At row:126, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:126, column:133,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:133,the value of plot_cost is         : 4.822388720342559 

 At row:126, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:126, column:134,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:134,the value of plot_cost is         : 4.89728726186568 

 At row:126, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:126, column:135,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:135,the value of plot_cost is         : 4.9729938637913165 

 At row:126, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:126, column:136,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:136,the value of plot_cost is         : 5.049508526119467 

 At row:126, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:126, column:137,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:137,the value of plot_cost is         : 5.126831248850135 

 At row:126, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:126, column:138,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:138,the value of plot_cost is         : 5.204962031983318 

 At row:126, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:126, column:139,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:139,the value of plot_cost is         : 5.283900875519014 

 At row:126, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:126, column:140,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:140,the value of plot_cost is         : 5.363647779457226 

 At row:126, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:126, column:141,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:141,the value of plot_cost is         : 5.444202743797953 

 At row:126, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:126, column:142,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:142,the value of plot_cost is         : 5.525565768541195 

 At row:126, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:126, column:143,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:143,the value of plot_cost is         : 5.607736853686956 

 At row:126, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:126, column:144,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:144,the value of plot_cost is         : 5.690715999235226 

 At row:126, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:126, column:145,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:145,the value of plot_cost is         : 5.774503205186013 

 At row:126, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:126, column:146,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:146,the value of plot_cost is         : 5.8590984715393155 

 At row:126, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:126, column:147,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:147,the value of plot_cost is         : 5.944501798295136 

 At row:126, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:126, column:148,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:148,the value of plot_cost is         : 6.030713185453469 

 At row:126, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:126, column:149,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:149,the value of plot_cost is         : 6.117732633014316 

 At row:126, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:126, column:150,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:150,the value of plot_cost is         : 6.205560140977678 

 At row:126, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:126, column:151,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:151,the value of plot_cost is         : 6.2941957093435565 

 At row:126, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:126, column:152,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:152,the value of plot_cost is         : 6.38363933811195 

 At row:126, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:126, column:153,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:153,the value of plot_cost is         : 6.4738910272828605 

 At row:126, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:126, column:154,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:154,the value of plot_cost is         : 6.564950776856282 

 At row:126, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:126, column:155,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:155,the value of plot_cost is         : 6.65681858683222 

 At row:126, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:126, column:156,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:156,the value of plot_cost is         : 6.749494457210676 

 At row:126, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:126, column:157,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:157,the value of plot_cost is         : 6.842978387991643 

 At row:126, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:126, column:158,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:158,the value of plot_cost is         : 6.937270379175127 

 At row:126, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:126, column:159,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:159,the value of plot_cost is         : 7.032370430761125 

 At row:126, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:126, column:160,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:160,the value of plot_cost is         : 7.128278542749638 

 At row:126, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:126, column:161,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:161,the value of plot_cost is         : 7.224994715140669 

 At row:126, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:126, column:162,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:162,the value of plot_cost is         : 7.322518947934212 

 At row:126, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:126, column:163,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:163,the value of plot_cost is         : 7.420851241130273 

 At row:126, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:126, column:164,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:164,the value of plot_cost is         : 7.519991594728846 

 At row:126, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:126, column:165,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:165,the value of plot_cost is         : 7.619940008729936 

 At row:126, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:126, column:166,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:166,the value of plot_cost is         : 7.720696483133542 

 At row:126, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:126, column:167,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:167,the value of plot_cost is         : 7.8222610179396606 

 At row:126, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:126, column:168,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:168,the value of plot_cost is         : 7.924633613148296 

 At row:126, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:126, column:169,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:169,the value of plot_cost is         : 8.027814268759444 

 At row:126, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:126, column:170,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:170,the value of plot_cost is         : 8.131802984773108 

 At row:126, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:126, column:171,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:171,the value of plot_cost is         : 8.23659976118929 

 At row:126, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:126, column:172,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:172,the value of plot_cost is         : 8.342204598007982 

 At row:126, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:126, column:173,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:173,the value of plot_cost is         : 8.448617495229195 

 At row:126, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:126, column:174,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:174,the value of plot_cost is         : 8.55583845285292 

 At row:126, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:126, column:175,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:175,the value of plot_cost is         : 8.66386747087916 

 At row:126, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:126, column:176,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:176,the value of plot_cost is         : 8.772704549307917 

 At row:126, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:126, column:177,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:177,the value of plot_cost is         : 8.882349688139186 

 At row:126, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:126, column:178,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:178,the value of plot_cost is         : 8.992802887372973 

 At row:126, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:126, column:179,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:179,the value of plot_cost is         : 9.104064147009272 

 At row:126, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:126, column:180,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:180,the value of plot_cost is         : 9.216133467048087 

 At row:126, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:126, column:181,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:181,the value of plot_cost is         : 9.329010847489418 

 At row:126, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:126, column:182,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:182,the value of plot_cost is         : 9.442696288333261 

 At row:126, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:126, column:183,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:183,the value of plot_cost is         : 9.557189789579626 

 At row:126, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:126, column:184,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:184,the value of plot_cost is         : 9.672491351228501 

 At row:126, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:126, column:185,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:185,the value of plot_cost is         : 9.788600973279891 

 At row:126, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:126, column:186,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:186,the value of plot_cost is         : 9.905518655733802 

 At row:126, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:126, column:187,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:187,the value of plot_cost is         : 10.02324439859022 

 At row:126, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:126, column:188,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:188,the value of plot_cost is         : 10.141778201849156 

 At row:126, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:126, column:189,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:189,the value of plot_cost is         : 10.261120065510609 

 At row:126, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:126, column:190,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:190,the value of plot_cost is         : 10.381269989574571 

 At row:126, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:126, column:191,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:191,the value of plot_cost is         : 10.502227974041057 

 At row:126, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:126, column:192,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:192,the value of plot_cost is         : 10.623994018910054 

 At row:126, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:126, column:193,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:193,the value of plot_cost is         : 10.746568124181566 

 At row:126, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:126, column:194,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:194,the value of plot_cost is         : 10.869950289855593 

 At row:126, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:126, column:195,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:195,the value of plot_cost is         : 10.994140515932132 

 At row:126, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:126, column:196,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:196,the value of plot_cost is         : 11.119138802411193 

 At row:126, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:126, column:197,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:197,the value of plot_cost is         : 11.244945149292764 

 At row:126, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:126, column:198,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:198,the value of plot_cost is         : 11.37155955657685 

 At row:126, column:199,the value of plot_t0 is           : 3.0
 At row:126, column:199,the value of plot_t1 is           : 1.5326633165829144
 At row:126, column:199,the value of plot_cost is         : 11.498982024263452 

 At row:127, column:0,the value of plot_t0 is           : -1.0
 At row:127, column:0,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:0,the value of plot_cost is         : 2.0156555570386026 

 At row:127, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:127, column:1,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:1,the value of plot_cost is         : 1.9857602080755545 

 At row:127, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:127, column:2,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:2,the value of plot_cost is         : 1.9566729195150192 

 At row:127, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:127, column:3,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:3,the value of plot_cost is         : 1.9283936913570008 

 At row:127, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:127, column:4,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:4,the value of plot_cost is         : 1.9009225236014968 

 At row:127, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:127, column:5,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:5,the value of plot_cost is         : 1.8742594162485071 

 At row:127, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:127, column:6,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:6,the value of plot_cost is         : 1.8484043692980339 

 At row:127, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:127, column:7,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:7,the value of plot_cost is         : 1.823357382750075 

 At row:127, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:127, column:8,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:8,the value of plot_cost is         : 1.7991184566046314 

 At row:127, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:127, column:9,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:9,the value of plot_cost is         : 1.7756875908617027 

 At row:127, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:127, column:10,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:10,the value of plot_cost is         : 1.7530647855212895 

 At row:127, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:127, column:11,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:11,the value of plot_cost is         : 1.7312500405833908 

 At row:127, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:127, column:12,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:12,the value of plot_cost is         : 1.7102433560480077 

 At row:127, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:127, column:13,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:13,the value of plot_cost is         : 1.6900447319151393 

 At row:127, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:127, column:14,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:14,the value of plot_cost is         : 1.6706541681847864 

 At row:127, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:127, column:15,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:15,the value of plot_cost is         : 1.6520716648569482 

 At row:127, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:127, column:16,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:16,the value of plot_cost is         : 1.6342972219316252 

 At row:127, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:127, column:17,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:17,the value of plot_cost is         : 1.6173308394088175 

 At row:127, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:127, column:18,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:18,the value of plot_cost is         : 1.6011725172885245 

 At row:127, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:127, column:19,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:19,the value of plot_cost is         : 1.5858222555707473 

 At row:127, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:127, column:20,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:20,the value of plot_cost is         : 1.5712800542554843 

 At row:127, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:127, column:21,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:21,the value of plot_cost is         : 1.5575459133427365 

 At row:127, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:127, column:22,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:22,the value of plot_cost is         : 1.5446198328325045 

 At row:127, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:127, column:23,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:23,the value of plot_cost is         : 1.5325018127247871 

 At row:127, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:127, column:24,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:24,the value of plot_cost is         : 1.5211918530195847 

 At row:127, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:127, column:25,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:25,the value of plot_cost is         : 1.5106899537168974 

 At row:127, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:127, column:26,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:26,the value of plot_cost is         : 1.5009961148167257 

 At row:127, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:127, column:27,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:27,the value of plot_cost is         : 1.4921103363190684 

 At row:127, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:127, column:28,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:28,the value of plot_cost is         : 1.4840326182239267 

 At row:127, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:127, column:29,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:29,the value of plot_cost is         : 1.4767629605313002 

 At row:127, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:127, column:30,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:30,the value of plot_cost is         : 1.4703013632411879 

 At row:127, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:127, column:31,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:31,the value of plot_cost is         : 1.4646478263535916 

 At row:127, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:127, column:32,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:32,the value of plot_cost is         : 1.45980234986851 

 At row:127, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:127, column:33,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:33,the value of plot_cost is         : 1.4557649337859435 

 At row:127, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:127, column:34,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:34,the value of plot_cost is         : 1.4525355781058922 

 At row:127, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:127, column:35,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:35,the value of plot_cost is         : 1.450114282828356 

 At row:127, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:127, column:36,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:36,the value of plot_cost is         : 1.4485010479533345 

 At row:127, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:127, column:37,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:37,the value of plot_cost is         : 1.4476958734808285 

 At row:127, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:127, column:38,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:38,the value of plot_cost is         : 1.4476987594108377 

 At row:127, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:127, column:39,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:39,the value of plot_cost is         : 1.448509705743362 

 At row:127, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:127, column:40,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:40,the value of plot_cost is         : 1.4501287124784006 

 At row:127, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:127, column:41,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:41,the value of plot_cost is         : 1.452555779615955 

 At row:127, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:127, column:42,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:42,the value of plot_cost is         : 1.4557909071560242 

 At row:127, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:127, column:43,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:43,the value of plot_cost is         : 1.459834095098609 

 At row:127, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:127, column:44,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:44,the value of plot_cost is         : 1.4646853434437088 

 At row:127, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:127, column:45,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:45,the value of plot_cost is         : 1.470344652191323 

 At row:127, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:127, column:46,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:46,the value of plot_cost is         : 1.4768120213414524 

 At row:127, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:127, column:47,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:47,the value of plot_cost is         : 1.484087450894097 

 At row:127, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:127, column:48,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:48,the value of plot_cost is         : 1.4921709408492574 

 At row:127, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:127, column:49,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:49,the value of plot_cost is         : 1.5010624912069326 

 At row:127, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:127, column:50,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:50,the value of plot_cost is         : 1.5107621019671225 

 At row:127, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:127, column:51,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:51,the value of plot_cost is         : 1.521269773129827 

 At row:127, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:127, column:52,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:52,the value of plot_cost is         : 1.5325855046950472 

 At row:127, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:127, column:53,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:53,the value of plot_cost is         : 1.544709296662783 

 At row:127, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:127, column:54,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:54,the value of plot_cost is         : 1.5576411490330337 

 At row:127, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:127, column:55,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:55,the value of plot_cost is         : 1.5713810618057988 

 At row:127, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:127, column:56,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:56,the value of plot_cost is         : 1.5859290349810788 

 At row:127, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:127, column:57,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:57,the value of plot_cost is         : 1.6012850685588755 

 At row:127, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:127, column:58,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:58,the value of plot_cost is         : 1.6174491625391858 

 At row:127, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:127, column:59,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:59,the value of plot_cost is         : 1.634421316922012 

 At row:127, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:127, column:60,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:60,the value of plot_cost is         : 1.6522015317073522 

 At row:127, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:127, column:61,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:61,the value of plot_cost is         : 1.670789806895208 

 At row:127, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:127, column:62,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:62,the value of plot_cost is         : 1.6901861424855789 

 At row:127, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:127, column:63,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:63,the value of plot_cost is         : 1.710390538478466 

 At row:127, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:127, column:64,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:64,the value of plot_cost is         : 1.7314029948738674 

 At row:127, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:127, column:65,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:65,the value of plot_cost is         : 1.7532235116717831 

 At row:127, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:127, column:66,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:66,the value of plot_cost is         : 1.775852088872214 

 At row:127, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:127, column:67,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:67,the value of plot_cost is         : 1.799288726475162 

 At row:127, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:127, column:68,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:68,the value of plot_cost is         : 1.8235334244806232 

 At row:127, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:127, column:69,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:69,the value of plot_cost is         : 1.8485861828886003 

 At row:127, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:127, column:70,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:70,the value of plot_cost is         : 1.8744470016990913 

 At row:127, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:127, column:71,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:71,the value of plot_cost is         : 1.901115880912098 

 At row:127, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:127, column:72,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:72,the value of plot_cost is         : 1.9285928205276202 

 At row:127, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:127, column:73,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:73,the value of plot_cost is         : 1.9568778205456576 

 At row:127, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:127, column:74,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:74,the value of plot_cost is         : 1.9859708809662102 

 At row:127, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:127, column:75,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:75,the value of plot_cost is         : 2.0158720017892766 

 At row:127, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:127, column:76,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:76,the value of plot_cost is         : 2.0465811830148586 

 At row:127, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:127, column:77,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:77,the value of plot_cost is         : 2.078098424642957 

 At row:127, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:127, column:78,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:78,the value of plot_cost is         : 2.1104237266735697 

 At row:127, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:127, column:79,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:79,the value of plot_cost is         : 2.143557089106697 

 At row:127, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:127, column:80,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:80,the value of plot_cost is         : 2.177498511942339 

 At row:127, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:127, column:81,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:81,the value of plot_cost is         : 2.2122479951804963 

 At row:127, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:127, column:82,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:82,the value of plot_cost is         : 2.247805538821169 

 At row:127, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:127, column:83,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:83,the value of plot_cost is         : 2.2841711428643587 

 At row:127, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:127, column:84,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:84,the value of plot_cost is         : 2.3213448073100618 

 At row:127, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:127, column:85,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:85,the value of plot_cost is         : 2.3593265321582786 

 At row:127, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:127, column:86,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:86,the value of plot_cost is         : 2.3981163174090114 

 At row:127, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:127, column:87,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:87,the value of plot_cost is         : 2.437714163062261 

 At row:127, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:127, column:88,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:88,the value of plot_cost is         : 2.478120069118025 

 At row:127, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:127, column:89,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:89,the value of plot_cost is         : 2.5193340355763034 

 At row:127, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:127, column:90,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:90,the value of plot_cost is         : 2.5613560624370955 

 At row:127, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:127, column:91,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:91,the value of plot_cost is         : 2.604186149700404 

 At row:127, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:127, column:92,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:92,the value of plot_cost is         : 2.6478242973662276 

 At row:127, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:127, column:93,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:93,the value of plot_cost is         : 2.692270505434568 

 At row:127, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:127, column:94,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:94,the value of plot_cost is         : 2.7375247739054216 

 At row:127, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:127, column:95,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:95,the value of plot_cost is         : 2.7835871027787897 

 At row:127, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:127, column:96,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:96,the value of plot_cost is         : 2.8304574920546735 

 At row:127, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:127, column:97,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:97,the value of plot_cost is         : 2.878135941733074 

 At row:127, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:127, column:98,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:98,the value of plot_cost is         : 2.9266224518139885 

 At row:127, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:127, column:99,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:99,the value of plot_cost is         : 2.975917022297417 

 At row:127, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:127, column:100,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:100,the value of plot_cost is         : 3.0260196531833605 

 At row:127, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:127, column:101,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:101,the value of plot_cost is         : 3.07693034447182 

 At row:127, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:127, column:102,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:102,the value of plot_cost is         : 3.1286490961627944 

 At row:127, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:127, column:103,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:103,the value of plot_cost is         : 3.1811759082562867 

 At row:127, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:127, column:104,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:104,the value of plot_cost is         : 3.2345107807522906 

 At row:127, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:127, column:105,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:105,the value of plot_cost is         : 3.2886537136508096 

 At row:127, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:127, column:106,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:106,the value of plot_cost is         : 3.3436047069518438 

 At row:127, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:127, column:107,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:107,the value of plot_cost is         : 3.3993637606553953 

 At row:127, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:127, column:108,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:108,the value of plot_cost is         : 3.4559308747614614 

 At row:127, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:127, column:109,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:109,the value of plot_cost is         : 3.513306049270041 

 At row:127, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:127, column:110,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:110,the value of plot_cost is         : 3.571489284181135 

 At row:127, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:127, column:111,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:111,the value of plot_cost is         : 3.630480579494745 

 At row:127, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:127, column:112,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:112,the value of plot_cost is         : 3.690279935210871 

 At row:127, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:127, column:113,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:113,the value of plot_cost is         : 3.7508873513295127 

 At row:127, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:127, column:114,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:114,the value of plot_cost is         : 3.8123028278506688 

 At row:127, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:127, column:115,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:115,the value of plot_cost is         : 3.874526364774338 

 At row:127, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:127, column:116,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:116,the value of plot_cost is         : 3.937557962100523 

 At row:127, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:127, column:117,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:117,the value of plot_cost is         : 4.001397619829226 

 At row:127, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:127, column:118,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:118,the value of plot_cost is         : 4.066045337960443 

 At row:127, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:127, column:119,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:119,the value of plot_cost is         : 4.131501116494173 

 At row:127, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:127, column:120,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:120,the value of plot_cost is         : 4.197764955430418 

 At row:127, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:127, column:121,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:121,the value of plot_cost is         : 4.264836854769179 

 At row:127, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:127, column:122,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:122,the value of plot_cost is         : 4.332716814510455 

 At row:127, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:127, column:123,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:123,the value of plot_cost is         : 4.401404834654248 

 At row:127, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:127, column:124,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:124,the value of plot_cost is         : 4.470900915200555 

 At row:127, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:127, column:125,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:125,the value of plot_cost is         : 4.5412050561493755 

 At row:127, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:127, column:126,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:126,the value of plot_cost is         : 4.6123172575007105 

 At row:127, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:127, column:127,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:127,the value of plot_cost is         : 4.684237519254566 

 At row:127, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:127, column:128,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:128,the value of plot_cost is         : 4.756965841410933 

 At row:127, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:127, column:129,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:129,the value of plot_cost is         : 4.830502223969813 

 At row:127, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:127, column:130,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:130,the value of plot_cost is         : 4.90484666693121 

 At row:127, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:127, column:131,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:131,the value of plot_cost is         : 4.9799991702951205 

 At row:127, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:127, column:132,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:132,the value of plot_cost is         : 5.055959734061549 

 At row:127, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:127, column:133,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:133,the value of plot_cost is         : 5.1327283582304934 

 At row:127, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:127, column:134,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:134,the value of plot_cost is         : 5.2103050428019495 

 At row:127, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:127, column:135,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:135,the value of plot_cost is         : 5.2886897877759225 

 At row:127, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:127, column:136,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:136,the value of plot_cost is         : 5.367882593152409 

 At row:127, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:127, column:137,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:137,the value of plot_cost is         : 5.447883458931414 

 At row:127, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:127, column:138,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:138,the value of plot_cost is         : 5.52869238511293 

 At row:127, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:127, column:139,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:139,the value of plot_cost is         : 5.610309371696964 

 At row:127, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:127, column:140,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:140,the value of plot_cost is         : 5.69273441868351 

 At row:127, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:127, column:141,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:141,the value of plot_cost is         : 5.775967526072572 

 At row:127, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:127, column:142,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:142,the value of plot_cost is         : 5.86000869386415 

 At row:127, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:127, column:143,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:143,the value of plot_cost is         : 5.944857922058247 

 At row:127, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:127, column:144,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:144,the value of plot_cost is         : 6.030515210654855 

 At row:127, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:127, column:145,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:145,the value of plot_cost is         : 6.116980559653977 

 At row:127, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:127, column:146,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:146,the value of plot_cost is         : 6.204253969055614 

 At row:127, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:127, column:147,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:147,the value of plot_cost is         : 6.292335438859769 

 At row:127, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:127, column:148,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:148,the value of plot_cost is         : 6.381224969066439 

 At row:127, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:127, column:149,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:149,the value of plot_cost is         : 6.470922559675622 

 At row:127, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:127, column:150,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:150,the value of plot_cost is         : 6.56142821068732 

 At row:127, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:127, column:151,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:151,the value of plot_cost is         : 6.6527419221015345 

 At row:127, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:127, column:152,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:152,the value of plot_cost is         : 6.744863693918262 

 At row:127, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:127, column:153,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:153,the value of plot_cost is         : 6.837793526137508 

 At row:127, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:127, column:154,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:154,the value of plot_cost is         : 6.931531418759266 

 At row:127, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:127, column:155,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:155,the value of plot_cost is         : 7.026077371783541 

 At row:127, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:127, column:156,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:156,the value of plot_cost is         : 7.121431385210332 

 At row:127, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:127, column:157,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:157,the value of plot_cost is         : 7.217593459039636 

 At row:127, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:127, column:158,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:158,the value of plot_cost is         : 7.314563593271456 

 At row:127, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:127, column:159,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:159,the value of plot_cost is         : 7.41234178790579 

 At row:127, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:127, column:160,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:160,the value of plot_cost is         : 7.510928042942638 

 At row:127, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:127, column:161,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:161,the value of plot_cost is         : 7.610322358382003 

 At row:127, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:127, column:162,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:162,the value of plot_cost is         : 7.710524734223882 

 At row:127, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:127, column:163,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:163,the value of plot_cost is         : 7.81153517046828 

 At row:127, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:127, column:164,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:164,the value of plot_cost is         : 7.913353667115189 

 At row:127, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:127, column:165,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:165,the value of plot_cost is         : 8.015980224164613 

 At row:127, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:127, column:166,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:166,the value of plot_cost is         : 8.119414841616555 

 At row:127, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:127, column:167,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:167,the value of plot_cost is         : 8.223657519471011 

 At row:127, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:127, column:168,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:168,the value of plot_cost is         : 8.328708257727982 

 At row:127, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:127, column:169,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:169,the value of plot_cost is         : 8.434567056387467 

 At row:127, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:127, column:170,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:170,the value of plot_cost is         : 8.541233915449466 

 At row:127, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:127, column:171,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:171,the value of plot_cost is         : 8.64870883491398 

 At row:127, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:127, column:172,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:172,the value of plot_cost is         : 8.75699181478101 

 At row:127, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:127, column:173,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:173,the value of plot_cost is         : 8.866082855050559 

 At row:127, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:127, column:174,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:174,the value of plot_cost is         : 8.975981955722618 

 At row:127, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:127, column:175,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:175,the value of plot_cost is         : 9.086689116797194 

 At row:127, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:127, column:176,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:176,the value of plot_cost is         : 9.198204338274287 

 At row:127, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:127, column:177,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:177,the value of plot_cost is         : 9.310527620153891 

 At row:127, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:127, column:178,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:178,the value of plot_cost is         : 9.423658962436015 

 At row:127, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:127, column:179,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:179,the value of plot_cost is         : 9.537598365120651 

 At row:127, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:127, column:180,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:180,the value of plot_cost is         : 9.652345828207801 

 At row:127, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:127, column:181,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:181,the value of plot_cost is         : 9.767901351697468 

 At row:127, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:127, column:182,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:182,the value of plot_cost is         : 9.884264935589647 

 At row:127, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:127, column:183,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:183,the value of plot_cost is         : 10.001436579884347 

 At row:127, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:127, column:184,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:184,the value of plot_cost is         : 10.11941628458156 

 At row:127, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:127, column:185,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:185,the value of plot_cost is         : 10.238204049681285 

 At row:127, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:127, column:186,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:186,the value of plot_cost is         : 10.357799875183531 

 At row:127, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:127, column:187,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:187,the value of plot_cost is         : 10.478203761088285 

 At row:127, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:127, column:188,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:188,the value of plot_cost is         : 10.599415707395558 

 At row:127, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:127, column:189,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:189,the value of plot_cost is         : 10.721435714105345 

 At row:127, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:127, column:190,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:190,the value of plot_cost is         : 10.844263781217647 

 At row:127, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:127, column:191,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:191,the value of plot_cost is         : 10.967899908732464 

 At row:127, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:127, column:192,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:192,the value of plot_cost is         : 11.092344096649791 

 At row:127, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:127, column:193,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:193,the value of plot_cost is         : 11.217596344969644 

 At row:127, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:127, column:194,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:194,the value of plot_cost is         : 11.343656653692006 

 At row:127, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:127, column:195,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:195,the value of plot_cost is         : 11.470525022816883 

 At row:127, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:127, column:196,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:196,the value of plot_cost is         : 11.598201452344279 

 At row:127, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:127, column:197,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:197,the value of plot_cost is         : 11.72668594227419 

 At row:127, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:127, column:198,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:198,the value of plot_cost is         : 11.85597849260661 

 At row:127, column:199,the value of plot_t0 is           : 3.0
 At row:127, column:199,the value of plot_t1 is           : 1.5527638190954773
 At row:127, column:199,the value of plot_cost is         : 11.986079103341547 

 At row:128, column:0,the value of plot_t0 is           : -1.0
 At row:128, column:0,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:0,the value of plot_cost is         : 1.982384824337048 

 At row:128, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:128, column:1,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:1,the value of plot_cost is         : 1.9551676184223343 

 At row:128, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:128, column:2,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:2,the value of plot_cost is         : 1.9287584729101357 

 At row:128, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:128, column:3,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:3,the value of plot_cost is         : 1.9031573878004522 

 At row:128, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:128, column:4,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:4,the value of plot_cost is         : 1.878364363093284 

 At row:128, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:128, column:5,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:5,the value of plot_cost is         : 1.854379398788631 

 At row:128, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:128, column:6,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:6,the value of plot_cost is         : 1.8312024948864927 

 At row:128, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:128, column:7,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:7,the value of plot_cost is         : 1.8088336513868701 

 At row:128, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:128, column:8,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:8,the value of plot_cost is         : 1.787272868289762 

 At row:128, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:128, column:9,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:9,the value of plot_cost is         : 1.766520145595169 

 At row:128, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:128, column:10,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:10,the value of plot_cost is         : 1.7465754833030913 

 At row:128, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:128, column:11,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:11,the value of plot_cost is         : 1.7274388814135286 

 At row:128, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:128, column:12,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:12,the value of plot_cost is         : 1.7091103399264813 

 At row:128, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:128, column:13,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:13,the value of plot_cost is         : 1.6915898588419482 

 At row:128, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:128, column:14,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:14,the value of plot_cost is         : 1.674877438159931 

 At row:128, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:128, column:15,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:15,the value of plot_cost is         : 1.658973077880429 

 At row:128, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:128, column:16,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:16,the value of plot_cost is         : 1.6438767780034413 

 At row:128, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:128, column:17,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:17,the value of plot_cost is         : 1.62958853852897 

 At row:128, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:128, column:18,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:18,the value of plot_cost is         : 1.6161083594570123 

 At row:128, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:128, column:19,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:19,the value of plot_cost is         : 1.6034362407875704 

 At row:128, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:128, column:20,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:20,the value of plot_cost is         : 1.5915721825206437 

 At row:128, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:128, column:21,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:21,the value of plot_cost is         : 1.5805161846562317 

 At row:128, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:128, column:22,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:22,the value of plot_cost is         : 1.5702682471943352 

 At row:128, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:128, column:23,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:23,the value of plot_cost is         : 1.5608283701349537 

 At row:128, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:128, column:24,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:24,the value of plot_cost is         : 1.5521965534780868 

 At row:128, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:128, column:25,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:25,the value of plot_cost is         : 1.5443727972237355 

 At row:128, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:128, column:26,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:26,the value of plot_cost is         : 1.5373571013718987 

 At row:128, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:128, column:27,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:27,the value of plot_cost is         : 1.531149465922578 

 At row:128, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:128, column:28,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:28,the value of plot_cost is         : 1.5257498908757718 

 At row:128, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:128, column:29,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:29,the value of plot_cost is         : 1.5211583762314806 

 At row:128, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:128, column:30,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:30,the value of plot_cost is         : 1.5173749219897046 

 At row:128, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:128, column:31,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:31,the value of plot_cost is         : 1.5143995281504439 

 At row:128, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:128, column:32,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:32,the value of plot_cost is         : 1.5122321947136976 

 At row:128, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:128, column:33,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:33,the value of plot_cost is         : 1.5108729216794672 

 At row:128, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:128, column:34,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:34,the value of plot_cost is         : 1.5103217090477519 

 At row:128, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:128, column:35,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:35,the value of plot_cost is         : 1.510578556818551 

 At row:128, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:128, column:36,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:36,the value of plot_cost is         : 1.5116434649918657 

 At row:128, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:128, column:37,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:37,the value of plot_cost is         : 1.513516433567695 

 At row:128, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:128, column:38,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:38,the value of plot_cost is         : 1.5161974625460397 

 At row:128, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:128, column:39,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:39,the value of plot_cost is         : 1.5196865519268998 

 At row:128, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:128, column:40,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:40,the value of plot_cost is         : 1.5239837017102744 

 At row:128, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:128, column:41,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:41,the value of plot_cost is         : 1.5290889118961646 

 At row:128, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:128, column:42,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:42,the value of plot_cost is         : 1.5350021824845694 

 At row:128, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:128, column:43,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:43,the value of plot_cost is         : 1.5417235134754899 

 At row:128, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:128, column:44,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:44,the value of plot_cost is         : 1.549252904868925 

 At row:128, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:128, column:45,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:45,the value of plot_cost is         : 1.5575903566648752 

 At row:128, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:128, column:46,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:46,the value of plot_cost is         : 1.5667358688633408 

 At row:128, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:128, column:47,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:47,the value of plot_cost is         : 1.576689441464321 

 At row:128, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:128, column:48,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:48,the value of plot_cost is         : 1.587451074467817 

 At row:128, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:128, column:49,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:49,the value of plot_cost is         : 1.599020767873828 

 At row:128, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:128, column:50,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:50,the value of plot_cost is         : 1.611398521682353 

 At row:128, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:128, column:51,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:51,the value of plot_cost is         : 1.6245843358933942 

 At row:128, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:128, column:52,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:52,the value of plot_cost is         : 1.6385782105069506 

 At row:128, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:128, column:53,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:53,the value of plot_cost is         : 1.653380145523021 

 At row:128, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:128, column:54,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:54,the value of plot_cost is         : 1.6689901409416072 

 At row:128, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:128, column:55,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:55,the value of plot_cost is         : 1.6854081967627081 

 At row:128, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:128, column:56,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:56,the value of plot_cost is         : 1.7026343129863248 

 At row:128, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:128, column:57,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:57,the value of plot_cost is         : 1.7206684896124556 

 At row:128, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:128, column:58,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:58,the value of plot_cost is         : 1.7395107266411027 

 At row:128, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:128, column:59,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:59,the value of plot_cost is         : 1.7591610240722642 

 At row:128, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:128, column:60,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:60,the value of plot_cost is         : 1.7796193819059405 

 At row:128, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:128, column:61,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:61,the value of plot_cost is         : 1.8008858001421324 

 At row:128, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:128, column:62,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:62,the value of plot_cost is         : 1.8229602787808397 

 At row:128, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:128, column:63,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:63,the value of plot_cost is         : 1.8458428178220614 

 At row:128, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:128, column:64,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:64,the value of plot_cost is         : 1.8695334172657982 

 At row:128, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:128, column:65,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:65,the value of plot_cost is         : 1.89403207711205 

 At row:128, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:128, column:66,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:66,the value of plot_cost is         : 1.9193387973608176 

 At row:128, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:128, column:67,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:67,the value of plot_cost is         : 1.9454535780120992 

 At row:128, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:128, column:68,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:68,the value of plot_cost is         : 1.9723764190658974 

 At row:128, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:128, column:69,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:69,the value of plot_cost is         : 2.0001073205222095 

 At row:128, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:128, column:70,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:70,the value of plot_cost is         : 2.028646282381037 

 At row:128, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:128, column:71,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:71,the value of plot_cost is         : 2.0579933046423795 

 At row:128, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:128, column:72,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:72,the value of plot_cost is         : 2.088148387306238 

 At row:128, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:128, column:73,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:73,the value of plot_cost is         : 2.11911153037261 

 At row:128, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:128, column:74,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:74,the value of plot_cost is         : 2.1508827338414984 

 At row:128, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:128, column:75,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:75,the value of plot_cost is         : 2.1834619977129006 

 At row:128, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:128, column:76,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:76,the value of plot_cost is         : 2.216849321986819 

 At row:128, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:128, column:77,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:77,the value of plot_cost is         : 2.2510447066632517 

 At row:128, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:128, column:78,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:78,the value of plot_cost is         : 2.2860481517422 

 At row:128, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:128, column:79,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:79,the value of plot_cost is         : 2.321859657223664 

 At row:128, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:128, column:80,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:80,the value of plot_cost is         : 2.3584792231076417 

 At row:128, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:128, column:81,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:81,the value of plot_cost is         : 2.3959068493941356 

 At row:128, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:128, column:82,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:82,the value of plot_cost is         : 2.434142536083145 

 At row:128, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:128, column:83,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:83,the value of plot_cost is         : 2.473186283174668 

 At row:128, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:128, column:84,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:84,the value of plot_cost is         : 2.5130380906687066 

 At row:128, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:128, column:85,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:85,the value of plot_cost is         : 2.5536979585652597 

 At row:128, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:128, column:86,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:86,the value of plot_cost is         : 2.5951658868643293 

 At row:128, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:128, column:87,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:87,the value of plot_cost is         : 2.637441875565913 

 At row:128, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:128, column:88,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:88,the value of plot_cost is         : 2.6805259246700124 

 At row:128, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:128, column:89,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:89,the value of plot_cost is         : 2.7244180341766273 

 At row:128, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:128, column:90,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:90,the value of plot_cost is         : 2.7691182040857556 

 At row:128, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:128, column:91,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:91,the value of plot_cost is         : 2.8146264343974003 

 At row:128, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:128, column:92,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:92,the value of plot_cost is         : 2.8609427251115607 

 At row:128, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:128, column:93,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:93,the value of plot_cost is         : 2.908067076228234 

 At row:128, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:128, column:94,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:94,the value of plot_cost is         : 2.9559994877474245 

 At row:128, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:128, column:95,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:95,the value of plot_cost is         : 3.0047399596691284 

 At row:128, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:128, column:96,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:96,the value of plot_cost is         : 3.0542884919933484 

 At row:128, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:128, column:97,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:97,the value of plot_cost is         : 3.104645084720083 

 At row:128, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:128, column:98,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:98,the value of plot_cost is         : 3.1558097378493333 

 At row:128, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:128, column:99,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:99,the value of plot_cost is         : 3.2077824513810986 

 At row:128, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:128, column:100,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:100,the value of plot_cost is         : 3.260563225315378 

 At row:128, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:128, column:101,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:101,the value of plot_cost is         : 3.314152059652174 

 At row:128, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:128, column:102,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:102,the value of plot_cost is         : 3.3685489543914846 

 At row:128, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:128, column:103,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:103,the value of plot_cost is         : 3.4237539095333105 

 At row:128, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:128, column:104,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:104,the value of plot_cost is         : 3.47976692507765 

 At row:128, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:128, column:105,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:105,the value of plot_cost is         : 3.5365880010245054 

 At row:128, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:128, column:106,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:106,the value of plot_cost is         : 3.5942171373738763 

 At row:128, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:128, column:107,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:107,the value of plot_cost is         : 3.6526543341257613 

 At row:128, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:128, column:108,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:108,the value of plot_cost is         : 3.711899591280163 

 At row:128, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:128, column:109,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:109,the value of plot_cost is         : 3.7719529088370796 

 At row:128, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:128, column:110,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:110,the value of plot_cost is         : 3.8328142867965105 

 At row:128, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:128, column:111,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:111,the value of plot_cost is         : 3.8944837251584556 

 At row:128, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:128, column:112,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:112,the value of plot_cost is         : 3.956961223922918 

 At row:128, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:128, column:113,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:113,the value of plot_cost is         : 4.020246783089894 

 At row:128, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:128, column:114,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:114,the value of plot_cost is         : 4.084340402659385 

 At row:128, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:128, column:115,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:115,the value of plot_cost is         : 4.1492420826313925 

 At row:128, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:128, column:116,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:116,the value of plot_cost is         : 4.214951823005912 

 At row:128, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:128, column:117,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:117,the value of plot_cost is         : 4.281469623782949 

 At row:128, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:128, column:118,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:118,the value of plot_cost is         : 4.348795484962501 

 At row:128, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:128, column:119,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:119,the value of plot_cost is         : 4.416929406544568 

 At row:128, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:128, column:120,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:120,the value of plot_cost is         : 4.485871388529151 

 At row:128, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:128, column:121,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:121,the value of plot_cost is         : 4.555621430916247 

 At row:128, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:128, column:122,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:122,the value of plot_cost is         : 4.6261795337058595 

 At row:128, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:128, column:123,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:123,the value of plot_cost is         : 4.697545696897986 

 At row:128, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:128, column:124,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:124,the value of plot_cost is         : 4.769719920492628 

 At row:128, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:128, column:125,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:125,the value of plot_cost is         : 4.842702204489787 

 At row:128, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:128, column:126,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:126,the value of plot_cost is         : 4.916492548889458 

 At row:128, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:128, column:127,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:127,the value of plot_cost is         : 4.9910909536916455 

 At row:128, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:128, column:128,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:128,the value of plot_cost is         : 5.066497418896349 

 At row:128, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:128, column:129,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:129,the value of plot_cost is         : 5.142711944503568 

 At row:128, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:128, column:130,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:130,the value of plot_cost is         : 5.219734530513301 

 At row:128, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:128, column:131,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:131,the value of plot_cost is         : 5.297565176925547 

 At row:128, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:128, column:132,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:132,the value of plot_cost is         : 5.3762038837403106 

 At row:128, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:128, column:133,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:133,the value of plot_cost is         : 5.455650650957588 

 At row:128, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:128, column:134,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:134,the value of plot_cost is         : 5.535905478577381 

 At row:128, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:128, column:135,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:135,the value of plot_cost is         : 5.61696836659969 

 At row:128, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:128, column:136,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:136,the value of plot_cost is         : 5.698839315024512 

 At row:128, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:128, column:137,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:137,the value of plot_cost is         : 5.78151832385185 

 At row:128, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:128, column:138,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:138,the value of plot_cost is         : 5.865005393081705 

 At row:128, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:128, column:139,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:139,the value of plot_cost is         : 5.949300522714074 

 At row:128, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:128, column:140,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:140,the value of plot_cost is         : 6.034403712748958 

 At row:128, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:128, column:141,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:141,the value of plot_cost is         : 6.120314963186355 

 At row:128, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:128, column:142,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:142,the value of plot_cost is         : 6.20703427402627 

 At row:128, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:128, column:143,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:143,the value of plot_cost is         : 6.294561645268698 

 At row:128, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:128, column:144,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:144,the value of plot_cost is         : 6.3828970769136415 

 At row:128, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:128, column:145,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:145,the value of plot_cost is         : 6.472040568961102 

 At row:128, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:128, column:146,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:146,the value of plot_cost is         : 6.561992121411076 

 At row:128, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:128, column:147,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:147,the value of plot_cost is         : 6.652751734263564 

 At row:128, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:128, column:148,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:148,the value of plot_cost is         : 6.74431940751857 

 At row:128, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:128, column:149,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:149,the value of plot_cost is         : 6.836695141176089 

 At row:128, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:128, column:150,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:150,the value of plot_cost is         : 6.929878935236126 

 At row:128, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:128, column:151,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:151,the value of plot_cost is         : 7.023870789698675 

 At row:128, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:128, column:152,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:152,the value of plot_cost is         : 7.118670704563738 

 At row:128, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:128, column:153,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:153,the value of plot_cost is         : 7.214278679831318 

 At row:128, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:128, column:154,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:154,the value of plot_cost is         : 7.310694715501413 

 At row:128, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:128, column:155,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:155,the value of plot_cost is         : 7.407918811574024 

 At row:128, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:128, column:156,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:156,the value of plot_cost is         : 7.50595096804915 

 At row:128, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:128, column:157,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:157,the value of plot_cost is         : 7.604791184926787 

 At row:128, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:128, column:158,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:158,the value of plot_cost is         : 7.704439462206943 

 At row:128, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:128, column:159,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:159,the value of plot_cost is         : 7.804895799889614 

 At row:128, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:128, column:160,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:160,the value of plot_cost is         : 7.9061601979748 

 At row:128, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:128, column:161,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:161,the value of plot_cost is         : 8.008232656462502 

 At row:128, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:128, column:162,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:162,the value of plot_cost is         : 8.111113175352715 

 At row:128, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:128, column:163,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:163,the value of plot_cost is         : 8.214801754645448 

 At row:128, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:128, column:164,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:164,the value of plot_cost is         : 8.319298394340692 

 At row:128, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:128, column:165,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:165,the value of plot_cost is         : 8.424603094438455 

 At row:128, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:128, column:166,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:166,the value of plot_cost is         : 8.530715854938729 

 At row:128, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:128, column:167,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:167,the value of plot_cost is         : 8.63763667584152 

 At row:128, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:128, column:168,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:168,the value of plot_cost is         : 8.745365557146826 

 At row:128, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:128, column:169,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:169,the value of plot_cost is         : 8.853902498854648 

 At row:128, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:128, column:170,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:170,the value of plot_cost is         : 8.963247500964984 

 At row:128, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:128, column:171,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:171,the value of plot_cost is         : 9.073400563477836 

 At row:128, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:128, column:172,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:172,the value of plot_cost is         : 9.184361686393203 

 At row:128, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:128, column:173,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:173,the value of plot_cost is         : 9.296130869711083 

 At row:128, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:128, column:174,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:174,the value of plot_cost is         : 9.408708113431478 

 At row:128, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:128, column:175,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:175,the value of plot_cost is         : 9.522093417554393 

 At row:128, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:128, column:176,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:176,the value of plot_cost is         : 9.636286782079821 

 At row:128, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:128, column:177,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:177,the value of plot_cost is         : 9.75128820700776 

 At row:128, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:128, column:178,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:178,the value of plot_cost is         : 9.867097692338218 

 At row:128, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:128, column:179,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:179,the value of plot_cost is         : 9.98371523807119 

 At row:128, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:128, column:180,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:180,the value of plot_cost is         : 10.101140844206677 

 At row:128, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:128, column:181,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:181,the value of plot_cost is         : 10.21937451074468 

 At row:128, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:128, column:182,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:182,the value of plot_cost is         : 10.338416237685196 

 At row:128, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:128, column:183,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:183,the value of plot_cost is         : 10.458266025028227 

 At row:128, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:128, column:184,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:184,the value of plot_cost is         : 10.578923872773775 

 At row:128, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:128, column:185,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:185,the value of plot_cost is         : 10.70038978092184 

 At row:128, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:128, column:186,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:186,the value of plot_cost is         : 10.822663749472417 

 At row:128, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:128, column:187,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:187,the value of plot_cost is         : 10.945745778425508 

 At row:128, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:128, column:188,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:188,the value of plot_cost is         : 11.069635867781116 

 At row:128, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:128, column:189,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:189,the value of plot_cost is         : 11.19433401753924 

 At row:128, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:128, column:190,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:190,the value of plot_cost is         : 11.319840227699878 

 At row:128, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:128, column:191,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:191,the value of plot_cost is         : 11.446154498263033 

 At row:128, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:128, column:192,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:192,the value of plot_cost is         : 11.573276829228698 

 At row:128, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:128, column:193,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:193,the value of plot_cost is         : 11.701207220596881 

 At row:128, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:128, column:194,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:194,the value of plot_cost is         : 11.82994567236758 

 At row:128, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:128, column:195,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:195,the value of plot_cost is         : 11.959492184540798 

 At row:128, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:128, column:196,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:196,the value of plot_cost is         : 12.089846757116524 

 At row:128, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:128, column:197,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:197,the value of plot_cost is         : 12.22100939009477 

 At row:128, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:128, column:198,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:198,the value of plot_cost is         : 12.352980083475524 

 At row:128, column:199,the value of plot_t0 is           : 3.0
 At row:128, column:199,the value of plot_t1 is           : 1.5728643216080402
 At row:128, column:199,the value of plot_cost is         : 12.485758837258802 

 At row:129, column:0,the value of plot_t0 is           : -1.0
 At row:129, column:0,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:0,the value of plot_cost is         : 1.9616967464746562 

 At row:129, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:129, column:1,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:1,the value of plot_cost is         : 1.937157683608278 

 At row:129, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:129, column:2,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:2,the value of plot_cost is         : 1.9134266811444154 

 At row:129, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:129, column:3,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:3,the value of plot_cost is         : 1.8905037390830677 

 At row:129, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:129, column:4,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:4,the value of plot_cost is         : 1.8683888574242353 

 At row:129, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:129, column:5,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:5,the value of plot_cost is         : 1.8470820361679179 

 At row:129, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:129, column:6,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:6,the value of plot_cost is         : 1.8265832753141158 

 At row:129, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:129, column:7,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:7,the value of plot_cost is         : 1.8068925748628282 

 At row:129, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:129, column:8,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:8,the value of plot_cost is         : 1.7880099348140561 

 At row:129, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:129, column:9,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:9,the value of plot_cost is         : 1.769935355167799 

 At row:129, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:129, column:10,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:10,the value of plot_cost is         : 1.7526688359240565 

 At row:129, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:129, column:11,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:11,the value of plot_cost is         : 1.7362103770828299 

 At row:129, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:129, column:12,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:12,the value of plot_cost is         : 1.7205599786441184 

 At row:129, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:129, column:13,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:13,the value of plot_cost is         : 1.7057176406079213 

 At row:129, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:129, column:14,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:14,the value of plot_cost is         : 1.6916833629742398 

 At row:129, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:129, column:15,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:15,the value of plot_cost is         : 1.6784571457430733 

 At row:129, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:129, column:16,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:16,the value of plot_cost is         : 1.6660389889144216 

 At row:129, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:129, column:17,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:17,the value of plot_cost is         : 1.6544288924882853 

 At row:129, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:129, column:18,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:18,the value of plot_cost is         : 1.6436268564646639 

 At row:129, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:129, column:19,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:19,the value of plot_cost is         : 1.6336328808435578 

 At row:129, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:129, column:20,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:20,the value of plot_cost is         : 1.6244469656249665 

 At row:129, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:129, column:21,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:21,the value of plot_cost is         : 1.6160691108088907 

 At row:129, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:129, column:22,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:22,the value of plot_cost is         : 1.6084993163953292 

 At row:129, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:129, column:23,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:23,the value of plot_cost is         : 1.6017375823842837 

 At row:129, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:129, column:24,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:24,the value of plot_cost is         : 1.595783908775753 

 At row:129, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:129, column:25,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:25,the value of plot_cost is         : 1.5906382955697371 

 At row:129, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:129, column:26,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:26,the value of plot_cost is         : 1.5863007427662368 

 At row:129, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:129, column:27,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:27,the value of plot_cost is         : 1.582771250365251 

 At row:129, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:129, column:28,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:28,the value of plot_cost is         : 1.5800498183667806 

 At row:129, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:129, column:29,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:29,the value of plot_cost is         : 1.5781364467708254 

 At row:129, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:129, column:30,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:30,the value of plot_cost is         : 1.5770311355773847 

 At row:129, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:129, column:31,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:31,the value of plot_cost is         : 1.5767338847864596 

 At row:129, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:129, column:32,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:32,the value of plot_cost is         : 1.5772446943980496 

 At row:129, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:129, column:33,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:33,the value of plot_cost is         : 1.5785635644121547 

 At row:129, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:129, column:34,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:34,the value of plot_cost is         : 1.580690494828775 

 At row:129, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:129, column:35,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:35,the value of plot_cost is         : 1.58362548564791 

 At row:129, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:129, column:36,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:36,the value of plot_cost is         : 1.5873685368695603 

 At row:129, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:129, column:37,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:37,the value of plot_cost is         : 1.5919196484937257 

 At row:129, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:129, column:38,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:38,the value of plot_cost is         : 1.597278820520406 

 At row:129, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:129, column:39,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:39,the value of plot_cost is         : 1.603446052949602 

 At row:129, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:129, column:40,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:40,the value of plot_cost is         : 1.6104213457813124 

 At row:129, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:129, column:41,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:41,the value of plot_cost is         : 1.6182046990155379 

 At row:129, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:129, column:42,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:42,the value of plot_cost is         : 1.6267961126522785 

 At row:129, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:129, column:43,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:43,the value of plot_cost is         : 1.6361955866915345 

 At row:129, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:129, column:44,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:44,the value of plot_cost is         : 1.6464031211333061 

 At row:129, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:129, column:45,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:45,the value of plot_cost is         : 1.6574187159775917 

 At row:129, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:129, column:46,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:46,the value of plot_cost is         : 1.669242371224393 

 At row:129, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:129, column:47,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:47,the value of plot_cost is         : 1.6818740868737088 

 At row:129, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:129, column:48,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:48,the value of plot_cost is         : 1.6953138629255402 

 At row:129, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:129, column:49,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:49,the value of plot_cost is         : 1.709561699379887 

 At row:129, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:129, column:50,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:50,the value of plot_cost is         : 1.7246175962367483 

 At row:129, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:129, column:51,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:51,the value of plot_cost is         : 1.7404815534961249 

 At row:129, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:129, column:52,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:52,the value of plot_cost is         : 1.7571535711580175 

 At row:129, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:129, column:53,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:53,the value of plot_cost is         : 1.7746336492224235 

 At row:129, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:129, column:54,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:54,the value of plot_cost is         : 1.7929217876893455 

 At row:129, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:129, column:55,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:55,the value of plot_cost is         : 1.8120179865587822 

 At row:129, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:129, column:56,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:56,the value of plot_cost is         : 1.8319222458307343 

 At row:129, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:129, column:57,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:57,the value of plot_cost is         : 1.8526345655052008 

 At row:129, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:129, column:58,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:58,the value of plot_cost is         : 1.874154945582184 

 At row:129, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:129, column:59,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:59,the value of plot_cost is         : 1.8964833860616812 

 At row:129, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:129, column:60,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:60,the value of plot_cost is         : 1.9196198869436931 

 At row:129, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:129, column:61,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:61,the value of plot_cost is         : 1.9435644482282206 

 At row:129, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:129, column:62,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:62,the value of plot_cost is         : 1.968317069915264 

 At row:129, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:129, column:63,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:63,the value of plot_cost is         : 1.993877752004821 

 At row:129, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:129, column:64,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:64,the value of plot_cost is         : 2.020246494496894 

 At row:129, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:129, column:65,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:65,the value of plot_cost is         : 2.047423297391481 

 At row:129, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:129, column:66,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:66,the value of plot_cost is         : 2.075408160688584 

 At row:129, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:129, column:67,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:67,the value of plot_cost is         : 2.104201084388202 

 At row:129, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:129, column:68,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:68,the value of plot_cost is         : 2.133802068490336 

 At row:129, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:129, column:69,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:69,the value of plot_cost is         : 2.164211112994984 

 At row:129, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:129, column:70,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:70,the value of plot_cost is         : 2.195428217902147 

 At row:129, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:129, column:71,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:71,the value of plot_cost is         : 2.2274533832118255 

 At row:129, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:129, column:72,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:72,the value of plot_cost is         : 2.2602866089240194 

 At row:129, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:129, column:73,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:73,the value of plot_cost is         : 2.2939278950387276 

 At row:129, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:129, column:74,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:74,the value of plot_cost is         : 2.3283772415559514 

 At row:129, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:129, column:75,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:75,the value of plot_cost is         : 2.3636346484756894 

 At row:129, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:129, column:76,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:76,the value of plot_cost is         : 2.399700115797943 

 At row:129, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:129, column:77,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:77,the value of plot_cost is         : 2.436573643522711 

 At row:129, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:129, column:78,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:78,the value of plot_cost is         : 2.4742552316499964 

 At row:129, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:129, column:79,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:79,the value of plot_cost is         : 2.512744880179796 

 At row:129, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:129, column:80,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:80,the value of plot_cost is         : 2.5520425891121095 

 At row:129, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:129, column:81,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:81,the value of plot_cost is         : 2.5921483584469382 

 At row:129, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:129, column:82,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:82,the value of plot_cost is         : 2.6330621881842835 

 At row:129, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:129, column:83,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:83,the value of plot_cost is         : 2.674784078324143 

 At row:129, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:129, column:84,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:84,the value of plot_cost is         : 2.7173140288665167 

 At row:129, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:129, column:85,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:85,the value of plot_cost is         : 2.760652039811406 

 At row:129, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:129, column:86,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:86,the value of plot_cost is         : 2.804798111158811 

 At row:129, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:129, column:87,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:87,the value of plot_cost is         : 2.84975224290873 

 At row:129, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:129, column:88,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:88,the value of plot_cost is         : 2.895514435061166 

 At row:129, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:129, column:89,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:89,the value of plot_cost is         : 2.9420846876161164 

 At row:129, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:129, column:90,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:90,the value of plot_cost is         : 2.9894630005735805 

 At row:129, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:129, column:91,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:91,the value of plot_cost is         : 3.03764937393356 

 At row:129, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:129, column:92,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:92,the value of plot_cost is         : 3.0866438076960567 

 At row:129, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:129, column:93,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:93,the value of plot_cost is         : 3.136446301861067 

 At row:129, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:129, column:94,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:94,the value of plot_cost is         : 3.187056856428592 

 At row:129, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:129, column:95,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:95,the value of plot_cost is         : 3.2384754713986315 

 At row:129, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:129, column:96,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:96,the value of plot_cost is         : 3.290702146771187 

 At row:129, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:129, column:97,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:97,the value of plot_cost is         : 3.3437368825462577 

 At row:129, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:129, column:98,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:98,the value of plot_cost is         : 3.3975796787238446 

 At row:129, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:129, column:99,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:99,the value of plot_cost is         : 3.452230535303945 

 At row:129, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:129, column:100,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:100,the value of plot_cost is         : 3.5076894522865607 

 At row:129, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:129, column:101,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:101,the value of plot_cost is         : 3.5639564296716912 

 At row:129, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:129, column:102,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:102,the value of plot_cost is         : 3.6210314674593382 

 At row:129, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:129, column:103,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:103,the value of plot_cost is         : 3.6789145656494995 

 At row:129, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:129, column:104,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:104,the value of plot_cost is         : 3.7376057242421763 

 At row:129, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:129, column:105,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:105,the value of plot_cost is         : 3.7971049432373665 

 At row:129, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:129, column:106,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:106,the value of plot_cost is         : 3.857412222635072 

 At row:129, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:129, column:107,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:107,the value of plot_cost is         : 3.918527562435294 

 At row:129, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:129, column:108,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:108,the value of plot_cost is         : 3.9804509626380318 

 At row:129, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:129, column:109,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:109,the value of plot_cost is         : 4.043182423243284 

 At row:129, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:129, column:110,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:110,the value of plot_cost is         : 4.10672194425105 

 At row:129, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:129, column:111,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:111,the value of plot_cost is         : 4.171069525661331 

 At row:129, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:129, column:112,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:112,the value of plot_cost is         : 4.236225167474129 

 At row:129, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:129, column:113,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:113,the value of plot_cost is         : 4.302188869689441 

 At row:129, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:129, column:114,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:114,the value of plot_cost is         : 4.368960632307268 

 At row:129, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:129, column:115,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:115,the value of plot_cost is         : 4.43654045532761 

 At row:129, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:129, column:116,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:116,the value of plot_cost is         : 4.504928338750466 

 At row:129, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:129, column:117,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:117,the value of plot_cost is         : 4.574124282575839 

 At row:129, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:129, column:118,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:118,the value of plot_cost is         : 4.644128286803728 

 At row:129, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:129, column:119,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:119,the value of plot_cost is         : 4.714940351434131 

 At row:129, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:129, column:120,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:120,the value of plot_cost is         : 4.786560476467047 

 At row:129, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:129, column:121,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:121,the value of plot_cost is         : 4.858988661902479 

 At row:129, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:129, column:122,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:122,the value of plot_cost is         : 4.932224907740427 

 At row:129, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:129, column:123,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:123,the value of plot_cost is         : 5.006269213980892 

 At row:129, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:129, column:124,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:124,the value of plot_cost is         : 5.0811215806238685 

 At row:129, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:129, column:125,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:125,the value of plot_cost is         : 5.156782007669363 

 At row:129, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:129, column:126,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:126,the value of plot_cost is         : 5.233250495117369 

 At row:129, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:129, column:127,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:127,the value of plot_cost is         : 5.310527042967893 

 At row:129, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:129, column:128,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:128,the value of plot_cost is         : 5.388611651220933 

 At row:129, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:129, column:129,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:129,the value of plot_cost is         : 5.467504319876486 

 At row:129, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:129, column:130,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:130,the value of plot_cost is         : 5.547205048934553 

 At row:129, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:129, column:131,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:131,the value of plot_cost is         : 5.6277138383951355 

 At row:129, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:129, column:132,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:132,the value of plot_cost is         : 5.709030688258236 

 At row:129, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:129, column:133,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:133,the value of plot_cost is         : 5.791155598523849 

 At row:129, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:129, column:134,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:134,the value of plot_cost is         : 5.874088569191979 

 At row:129, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:129, column:135,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:135,the value of plot_cost is         : 5.957829600262623 

 At row:129, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:129, column:136,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:136,the value of plot_cost is         : 6.04237869173578 

 At row:129, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:129, column:137,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:137,the value of plot_cost is         : 6.127735843611456 

 At row:129, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:129, column:138,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:138,the value of plot_cost is         : 6.213901055889646 

 At row:129, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:129, column:139,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:139,the value of plot_cost is         : 6.30087432857035 

 At row:129, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:129, column:140,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:140,the value of plot_cost is         : 6.388655661653569 

 At row:129, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:129, column:141,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:141,the value of plot_cost is         : 6.477245055139302 

 At row:129, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:129, column:142,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:142,the value of plot_cost is         : 6.566642509027553 

 At row:129, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:129, column:143,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:143,the value of plot_cost is         : 6.656848023318318 

 At row:129, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:129, column:144,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:144,the value of plot_cost is         : 6.747861598011599 

 At row:129, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:129, column:145,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:145,the value of plot_cost is         : 6.839683233107392 

 At row:129, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:129, column:146,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:146,the value of plot_cost is         : 6.9323129286057 

 At row:129, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:129, column:147,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:147,the value of plot_cost is         : 7.025750684506527 

 At row:129, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:129, column:148,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:148,the value of plot_cost is         : 7.119996500809867 

 At row:129, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:129, column:149,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:149,the value of plot_cost is         : 7.215050377515724 

 At row:129, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:129, column:150,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:150,the value of plot_cost is         : 7.310912314624093 

 At row:129, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:129, column:151,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:151,the value of plot_cost is         : 7.40758231213498 

 At row:129, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:129, column:152,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:152,the value of plot_cost is         : 7.505060370048379 

 At row:129, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:129, column:153,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:153,the value of plot_cost is         : 7.603346488364296 

 At row:129, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:129, column:154,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:154,the value of plot_cost is         : 7.702440667082726 

 At row:129, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:129, column:155,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:155,the value of plot_cost is         : 7.802342906203671 

 At row:129, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:129, column:156,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:156,the value of plot_cost is         : 7.903053205727133 

 At row:129, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:129, column:157,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:157,the value of plot_cost is         : 8.004571565653107 

 At row:129, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:129, column:158,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:158,the value of plot_cost is         : 8.106897985981599 

 At row:129, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:129, column:159,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:159,the value of plot_cost is         : 8.210032466712605 

 At row:129, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:129, column:160,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:160,the value of plot_cost is         : 8.313975007846127 

 At row:129, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:129, column:161,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:161,the value of plot_cost is         : 8.418725609382165 

 At row:129, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:129, column:162,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:162,the value of plot_cost is         : 8.524284271320713 

 At row:129, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:129, column:163,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:163,the value of plot_cost is         : 8.63065099366178 

 At row:129, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:129, column:164,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:164,the value of plot_cost is         : 8.737825776405362 

 At row:129, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:129, column:165,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:165,the value of plot_cost is         : 8.845808619551457 

 At row:129, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:129, column:166,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:166,the value of plot_cost is         : 8.954599523100072 

 At row:129, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:129, column:167,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:167,the value of plot_cost is         : 9.064198487051195 

 At row:129, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:129, column:168,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:168,the value of plot_cost is         : 9.17460551140484 

 At row:129, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:129, column:169,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:169,the value of plot_cost is         : 9.285820596160995 

 At row:129, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:129, column:170,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:170,the value of plot_cost is         : 9.397843741319667 

 At row:129, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:129, column:171,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:171,the value of plot_cost is         : 9.510674946880856 

 At row:129, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:129, column:172,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:172,the value of plot_cost is         : 9.624314212844556 

 At row:129, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:129, column:173,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:173,the value of plot_cost is         : 9.738761539210774 

 At row:129, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:129, column:174,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:174,the value of plot_cost is         : 9.854016925979506 

 At row:129, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:129, column:175,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:175,the value of plot_cost is         : 9.970080373150754 

 At row:129, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:129, column:176,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:176,the value of plot_cost is         : 10.086951880724516 

 At row:129, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:129, column:177,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:177,the value of plot_cost is         : 10.204631448700795 

 At row:129, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:129, column:178,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:178,the value of plot_cost is         : 10.323119077079587 

 At row:129, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:129, column:179,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:179,the value of plot_cost is         : 10.442414765860896 

 At row:129, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:129, column:180,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:180,the value of plot_cost is         : 10.562518515044719 

 At row:129, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:129, column:181,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:181,the value of plot_cost is         : 10.683430324631056 

 At row:129, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:129, column:182,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:182,the value of plot_cost is         : 10.805150194619907 

 At row:129, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:129, column:183,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:183,the value of plot_cost is         : 10.927678125011276 

 At row:129, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:129, column:184,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:184,the value of plot_cost is         : 11.051014115805161 

 At row:129, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:129, column:185,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:185,the value of plot_cost is         : 11.175158167001559 

 At row:129, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:129, column:186,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:186,the value of plot_cost is         : 11.300110278600474 

 At row:129, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:129, column:187,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:187,the value of plot_cost is         : 11.425870450601899 

 At row:129, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:129, column:188,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:188,the value of plot_cost is         : 11.552438683005846 

 At row:129, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:129, column:189,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:189,the value of plot_cost is         : 11.679814975812302 

 At row:129, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:129, column:190,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:190,the value of plot_cost is         : 11.807999329021278 

 At row:129, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:129, column:191,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:191,the value of plot_cost is         : 11.936991742632767 

 At row:129, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:129, column:192,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:192,the value of plot_cost is         : 12.066792216646768 

 At row:129, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:129, column:193,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:193,the value of plot_cost is         : 12.19740075106329 

 At row:129, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:129, column:194,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:194,the value of plot_cost is         : 12.328817345882323 

 At row:129, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:129, column:195,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:195,the value of plot_cost is         : 12.461042001103872 

 At row:129, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:129, column:196,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:196,the value of plot_cost is         : 12.594074716727938 

 At row:129, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:129, column:197,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:197,the value of plot_cost is         : 12.72791549275452 

 At row:129, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:129, column:198,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:198,the value of plot_cost is         : 12.86256432918361 

 At row:129, column:199,the value of plot_t0 is           : 3.0
 At row:129, column:199,the value of plot_t1 is           : 1.5929648241206031
 At row:129, column:199,the value of plot_cost is         : 12.998021226015219 

 At row:130, column:0,the value of plot_t0 is           : -1.0
 At row:130, column:0,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:0,the value of plot_cost is         : 1.953591323451429 

 At row:130, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:130, column:1,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:1,the value of plot_cost is         : 1.9317304036333869 

 At row:130, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:130, column:2,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:2,the value of plot_cost is         : 1.91067754421786 

 At row:130, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:130, column:3,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:3,the value of plot_cost is         : 1.8904327452048482 

 At row:130, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:130, column:4,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:4,the value of plot_cost is         : 1.8709960065943512 

 At row:130, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:130, column:5,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:5,the value of plot_cost is         : 1.8523673283863697 

 At row:130, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:130, column:6,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:6,the value of plot_cost is         : 1.8345467105809028 

 At row:130, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:130, column:7,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:7,the value of plot_cost is         : 1.8175341531779514 

 At row:130, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:130, column:8,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:8,the value of plot_cost is         : 1.801329656177515 

 At row:130, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:130, column:9,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:9,the value of plot_cost is         : 1.7859332195795936 

 At row:130, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:130, column:10,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:10,the value of plot_cost is         : 1.7713448433841872 

 At row:130, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:130, column:11,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:11,the value of plot_cost is         : 1.7575645275912959 

 At row:130, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:130, column:12,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:12,the value of plot_cost is         : 1.7445922722009195 

 At row:130, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:130, column:13,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:13,the value of plot_cost is         : 1.732428077213059 

 At row:130, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:130, column:14,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:14,the value of plot_cost is         : 1.7210719426277132 

 At row:130, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:130, column:15,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:15,the value of plot_cost is         : 1.710523868444882 

 At row:130, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:130, column:16,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:16,the value of plot_cost is         : 1.7007838546645662 

 At row:130, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:130, column:17,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:17,the value of plot_cost is         : 1.6918519012867654 

 At row:130, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:130, column:18,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:18,the value of plot_cost is         : 1.6837280083114803 

 At row:130, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:130, column:19,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:19,the value of plot_cost is         : 1.6764121757387094 

 At row:130, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:130, column:20,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:20,the value of plot_cost is         : 1.6699044035684543 

 At row:130, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:130, column:21,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:21,the value of plot_cost is         : 1.6642046918007134 

 At row:130, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:130, column:22,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:22,the value of plot_cost is         : 1.659313040435488 

 At row:130, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:130, column:23,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:23,the value of plot_cost is         : 1.6552294494727784 

 At row:130, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:130, column:24,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:24,the value of plot_cost is         : 1.6519539189125834 

 At row:130, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:130, column:25,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:25,the value of plot_cost is         : 1.6494864487549035 

 At row:130, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:130, column:26,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:26,the value of plot_cost is         : 1.6478270389997383 

 At row:130, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:130, column:27,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:27,the value of plot_cost is         : 1.6469756896470884 

 At row:130, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:130, column:28,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:28,the value of plot_cost is         : 1.646932400696954 

 At row:130, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:130, column:29,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:29,the value of plot_cost is         : 1.6476971721493348 

 At row:130, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:130, column:30,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:30,the value of plot_cost is         : 1.6492700040042299 

 At row:130, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:130, column:31,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:31,the value of plot_cost is         : 1.65165089626164 

 At row:130, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:130, column:32,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:32,the value of plot_cost is         : 1.6548398489215657 

 At row:130, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:130, column:33,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:33,the value of plot_cost is         : 1.6588368619840068 

 At row:130, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:130, column:34,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:34,the value of plot_cost is         : 1.663641935448963 

 At row:130, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:130, column:35,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:35,the value of plot_cost is         : 1.6692550693164334 

 At row:130, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:130, column:36,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:36,the value of plot_cost is         : 1.675676263586419 

 At row:130, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:130, column:37,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:37,the value of plot_cost is         : 1.6829055182589203 

 At row:130, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:130, column:38,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:38,the value of plot_cost is         : 1.690942833333937 

 At row:130, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:130, column:39,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:39,the value of plot_cost is         : 1.6997882088114682 

 At row:130, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:130, column:40,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:40,the value of plot_cost is         : 1.7094416446915144 

 At row:130, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:130, column:41,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:41,the value of plot_cost is         : 1.7199031409740755 

 At row:130, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:130, column:42,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:42,the value of plot_cost is         : 1.731172697659152 

 At row:130, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:130, column:43,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:43,the value of plot_cost is         : 1.743250314746744 

 At row:130, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:130, column:44,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:44,the value of plot_cost is         : 1.7561359922368507 

 At row:130, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:130, column:45,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:45,the value of plot_cost is         : 1.7698297301294723 

 At row:130, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:130, column:46,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:46,the value of plot_cost is         : 1.7843315284246088 

 At row:130, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:130, column:47,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:47,the value of plot_cost is         : 1.7996413871222612 

 At row:130, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:130, column:48,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:48,the value of plot_cost is         : 1.8157593062224286 

 At row:130, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:130, column:49,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:49,the value of plot_cost is         : 1.8326852857251108 

 At row:130, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:130, column:50,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:50,the value of plot_cost is         : 1.8504193256303076 

 At row:130, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:130, column:51,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:51,the value of plot_cost is         : 1.8689614259380192 

 At row:130, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:130, column:52,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:52,the value of plot_cost is         : 1.8883115866482483 

 At row:130, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:130, column:53,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:53,the value of plot_cost is         : 1.90846980776099 

 At row:130, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:130, column:54,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:54,the value of plot_cost is         : 1.9294360892762477 

 At row:130, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:130, column:55,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:55,the value of plot_cost is         : 1.95121043119402 

 At row:130, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:130, column:56,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:56,the value of plot_cost is         : 1.9737928335143071 

 At row:130, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:130, column:57,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:57,the value of plot_cost is         : 1.9971832962371103 

 At row:130, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:130, column:58,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:58,the value of plot_cost is         : 2.021381819362429 

 At row:130, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:130, column:59,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:59,the value of plot_cost is         : 2.046388402890262 

 At row:130, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:130, column:60,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:60,the value of plot_cost is         : 2.0722030468206096 

 At row:130, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:130, column:61,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:61,the value of plot_cost is         : 2.098825751153472 

 At row:130, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:130, column:62,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:62,the value of plot_cost is         : 2.1262565158888522 

 At row:130, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:130, column:63,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:63,the value of plot_cost is         : 2.154495341026745 

 At row:130, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:130, column:64,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:64,the value of plot_cost is         : 2.1835422265671536 

 At row:130, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:130, column:65,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:65,the value of plot_cost is         : 2.213397172510076 

 At row:130, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:130, column:66,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:66,the value of plot_cost is         : 2.2440601788555146 

 At row:130, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:130, column:67,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:67,the value of plot_cost is         : 2.275531245603468 

 At row:130, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:130, column:68,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:68,the value of plot_cost is         : 2.3078103727539383 

 At row:130, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:130, column:69,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:69,the value of plot_cost is         : 2.340897560306922 

 At row:130, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:130, column:70,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:70,the value of plot_cost is         : 2.374792808262421 

 At row:130, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:130, column:71,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:71,the value of plot_cost is         : 2.4094961166204336 

 At row:130, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:130, column:72,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:72,the value of plot_cost is         : 2.4450074853809656 

 At row:130, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:130, column:73,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:73,the value of plot_cost is         : 2.481326914544008 

 At row:130, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:130, column:74,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:74,the value of plot_cost is         : 2.518454404109568 

 At row:130, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:130, column:75,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:75,the value of plot_cost is         : 2.5563899540776416 

 At row:130, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:130, column:76,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:76,the value of plot_cost is         : 2.5951335644482305 

 At row:130, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:130, column:77,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:77,the value of plot_cost is         : 2.634685235221335 

 At row:130, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:130, column:78,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:78,the value of plot_cost is         : 2.6750449663969573 

 At row:130, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:130, column:79,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:79,the value of plot_cost is         : 2.7162127579750908 

 At row:130, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:130, column:80,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:80,the value of plot_cost is         : 2.75818860995574 

 At row:130, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:130, column:81,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:81,the value of plot_cost is         : 2.8009725223389044 

 At row:130, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:130, column:82,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:82,the value of plot_cost is         : 2.8445644951245868 

 At row:130, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:130, column:83,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:83,the value of plot_cost is         : 2.888964528312782 

 At row:130, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:130, column:84,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:84,the value of plot_cost is         : 2.934172621903491 

 At row:130, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:130, column:85,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:85,the value of plot_cost is         : 2.980188775896716 

 At row:130, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:130, column:86,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:86,the value of plot_cost is         : 3.027012990292455 

 At row:130, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:130, column:87,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:87,the value of plot_cost is         : 3.074645265090711 

 At row:130, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:130, column:88,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:88,the value of plot_cost is         : 3.1230856002914837 

 At row:130, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:130, column:89,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:89,the value of plot_cost is         : 3.1723339958947685 

 At row:130, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:130, column:90,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:90,the value of plot_cost is         : 3.2223904519005684 

 At row:130, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:130, column:91,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:91,the value of plot_cost is         : 3.2732549683088834 

 At row:130, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:130, column:92,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:92,the value of plot_cost is         : 3.324927545119716 

 At row:130, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:130, column:93,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:93,the value of plot_cost is         : 3.3774081823330633 

 At row:130, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:130, column:94,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:94,the value of plot_cost is         : 3.4306968799489233 

 At row:130, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:130, column:95,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:95,the value of plot_cost is         : 3.484793637967299 

 At row:130, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:130, column:96,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:96,the value of plot_cost is         : 3.539698456388189 

 At row:130, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:130, column:97,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:97,the value of plot_cost is         : 3.5954113352115957 

 At row:130, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:130, column:98,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:98,the value of plot_cost is         : 3.65193227443752 

 At row:130, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:130, column:99,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:99,the value of plot_cost is         : 3.709261274065956 

 At row:130, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:130, column:100,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:100,the value of plot_cost is         : 3.7673983340969053 

 At row:130, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:130, column:101,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:101,the value of plot_cost is         : 3.8263434545303716 

 At row:130, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:130, column:102,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:102,the value of plot_cost is         : 3.8860966353663557 

 At row:130, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:130, column:103,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:103,the value of plot_cost is         : 3.9466578766048537 

 At row:130, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:130, column:104,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:104,the value of plot_cost is         : 4.0080271782458645 

 At row:130, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:130, column:105,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:105,the value of plot_cost is         : 4.0702045402893905 

 At row:130, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:130, column:106,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:106,the value of plot_cost is         : 4.133189962735432 

 At row:130, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:130, column:107,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:107,the value of plot_cost is         : 4.196983445583989 

 At row:130, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:130, column:108,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:108,the value of plot_cost is         : 4.2615849888350645 

 At row:130, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:130, column:109,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:109,the value of plot_cost is         : 4.32699459248865 

 At row:130, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:130, column:110,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:110,the value of plot_cost is         : 4.393212256544752 

 At row:130, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:130, column:111,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:111,the value of plot_cost is         : 4.460237981003368 

 At row:130, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:130, column:112,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:112,the value of plot_cost is         : 4.528071765864504 

 At row:130, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:130, column:113,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:113,the value of plot_cost is         : 4.596713611128152 

 At row:130, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:130, column:114,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:114,the value of plot_cost is         : 4.666163516794314 

 At row:130, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:130, column:115,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:115,the value of plot_cost is         : 4.73642148286299 

 At row:130, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:130, column:116,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:116,the value of plot_cost is         : 4.807487509334183 

 At row:130, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:130, column:117,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:117,the value of plot_cost is         : 4.8793615962078905 

 At row:130, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:130, column:118,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:118,the value of plot_cost is         : 4.952043743484118 

 At row:130, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:130, column:119,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:119,the value of plot_cost is         : 5.025533951162854 

 At row:130, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:130, column:120,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:120,the value of plot_cost is         : 5.0998322192441075 

 At row:130, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:130, column:121,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:121,the value of plot_cost is         : 5.174938547727874 

 At row:130, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:130, column:122,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:122,the value of plot_cost is         : 5.25085293661416 

 At row:130, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:130, column:123,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:123,the value of plot_cost is         : 5.327575385902961 

 At row:130, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:130, column:124,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:124,the value of plot_cost is         : 5.405105895594272 

 At row:130, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:130, column:125,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:125,the value of plot_cost is         : 5.483444465688101 

 At row:130, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:130, column:126,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:126,the value of plot_cost is         : 5.562591096184442 

 At row:130, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:130, column:127,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:127,the value of plot_cost is         : 5.642545787083303 

 At row:130, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:130, column:128,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:128,the value of plot_cost is         : 5.723308538384679 

 At row:130, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:130, column:129,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:129,the value of plot_cost is         : 5.804879350088567 

 At row:130, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:130, column:130,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:130,the value of plot_cost is         : 5.88725822219497 

 At row:130, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:130, column:131,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:131,the value of plot_cost is         : 5.970445154703889 

 At row:130, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:130, column:132,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:132,the value of plot_cost is         : 6.054440147615326 

 At row:130, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:130, column:133,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:133,the value of plot_cost is         : 6.1392432009292754 

 At row:130, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:130, column:134,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:134,the value of plot_cost is         : 6.22485431464574 

 At row:130, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:130, column:135,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:135,the value of plot_cost is         : 6.3112734887647175 

 At row:130, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:130, column:136,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:136,the value of plot_cost is         : 6.39850072328621 

 At row:130, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:130, column:137,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:137,the value of plot_cost is         : 6.486536018210222 

 At row:130, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:130, column:138,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:138,the value of plot_cost is         : 6.57537937353675 

 At row:130, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:130, column:139,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:139,the value of plot_cost is         : 6.6650307892657885 

 At row:130, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:130, column:140,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:140,the value of plot_cost is         : 6.755490265397342 

 At row:130, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:130, column:141,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:141,the value of plot_cost is         : 6.846757801931411 

 At row:130, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:130, column:142,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:142,the value of plot_cost is         : 6.938833398868001 

 At row:130, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:130, column:143,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:143,the value of plot_cost is         : 7.031717056207102 

 At row:130, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:130, column:144,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:144,the value of plot_cost is         : 7.125408773948716 

 At row:130, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:130, column:145,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:145,the value of plot_cost is         : 7.219908552092844 

 At row:130, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:130, column:146,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:146,the value of plot_cost is         : 7.315216390639487 

 At row:130, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:130, column:147,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:147,the value of plot_cost is         : 7.411332289588651 

 At row:130, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:130, column:148,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:148,the value of plot_cost is         : 7.508256248940331 

 At row:130, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:130, column:149,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:149,the value of plot_cost is         : 7.605988268694519 

 At row:130, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:130, column:150,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:150,the value of plot_cost is         : 7.704528348851224 

 At row:130, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:130, column:151,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:151,the value of plot_cost is         : 7.803876489410447 

 At row:130, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:130, column:152,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:152,the value of plot_cost is         : 7.904032690372182 

 At row:130, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:130, column:153,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:153,the value of plot_cost is         : 8.004996951736436 

 At row:130, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:130, column:154,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:154,the value of plot_cost is         : 8.106769273503199 

 At row:130, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:130, column:155,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:155,the value of plot_cost is         : 8.209349655672481 

 At row:130, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:130, column:156,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:156,the value of plot_cost is         : 8.31273809824428 

 At row:130, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:130, column:157,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:157,the value of plot_cost is         : 8.416934601218587 

 At row:130, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:130, column:158,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:158,the value of plot_cost is         : 8.521939164595418 

 At row:130, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:130, column:159,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:159,the value of plot_cost is         : 8.62775178837476 

 At row:130, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:130, column:160,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:160,the value of plot_cost is         : 8.734372472556615 

 At row:130, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:130, column:161,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:161,the value of plot_cost is         : 8.84180121714099 

 At row:130, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:130, column:162,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:162,the value of plot_cost is         : 8.950038022127874 

 At row:130, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:130, column:163,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:163,the value of plot_cost is         : 9.05908288751728 

 At row:130, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:130, column:164,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:164,the value of plot_cost is         : 9.168935813309194 

 At row:130, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:130, column:165,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:165,the value of plot_cost is         : 9.279596799503624 

 At row:130, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:130, column:166,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:166,the value of plot_cost is         : 9.391065846100574 

 At row:130, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:130, column:167,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:167,the value of plot_cost is         : 9.503342953100034 

 At row:130, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:130, column:168,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:168,the value of plot_cost is         : 9.616428120502015 

 At row:130, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:130, column:169,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:169,the value of plot_cost is         : 9.730321348306505 

 At row:130, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:130, column:170,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:170,the value of plot_cost is         : 9.845022636513512 

 At row:130, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:130, column:171,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:171,the value of plot_cost is         : 9.960531985123039 

 At row:130, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:130, column:172,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:172,the value of plot_cost is         : 10.076849394135076 

 At row:130, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:130, column:173,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:173,the value of plot_cost is         : 10.19397486354963 

 At row:130, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:130, column:174,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:174,the value of plot_cost is         : 10.311908393366696 

 At row:130, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:130, column:175,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:175,the value of plot_cost is         : 10.430649983586278 

 At row:130, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:130, column:176,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:176,the value of plot_cost is         : 10.550199634208377 

 At row:130, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:130, column:177,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:177,the value of plot_cost is         : 10.670557345232991 

 At row:130, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:130, column:178,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:178,the value of plot_cost is         : 10.791723116660123 

 At row:130, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:130, column:179,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:179,the value of plot_cost is         : 10.913696948489763 

 At row:130, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:130, column:180,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:180,the value of plot_cost is         : 11.03647884072192 

 At row:130, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:130, column:181,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:181,the value of plot_cost is         : 11.160068793356599 

 At row:130, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:130, column:182,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:182,the value of plot_cost is         : 11.284466806393786 

 At row:130, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:130, column:183,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:183,the value of plot_cost is         : 11.409672879833488 

 At row:130, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:130, column:184,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:184,the value of plot_cost is         : 11.535687013675707 

 At row:130, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:130, column:185,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:185,the value of plot_cost is         : 11.66250920792044 

 At row:130, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:130, column:186,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:186,the value of plot_cost is         : 11.79013946256769 

 At row:130, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:130, column:187,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:187,the value of plot_cost is         : 11.918577777617452 

 At row:130, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:130, column:188,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:188,the value of plot_cost is         : 12.047824153069737 

 At row:130, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:130, column:189,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:189,the value of plot_cost is         : 12.17787858892453 

 At row:130, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:130, column:190,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:190,the value of plot_cost is         : 12.308741085181836 

 At row:130, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:130, column:191,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:191,the value of plot_cost is         : 12.440411641841665 

 At row:130, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:130, column:192,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:192,the value of plot_cost is         : 12.572890258904001 

 At row:130, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:130, column:193,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:193,the value of plot_cost is         : 12.706176936368859 

 At row:130, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:130, column:194,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:194,the value of plot_cost is         : 12.840271674236227 

 At row:130, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:130, column:195,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:195,the value of plot_cost is         : 12.975174472506112 

 At row:130, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:130, column:196,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:196,the value of plot_cost is         : 13.110885331178514 

 At row:130, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:130, column:197,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:197,the value of plot_cost is         : 13.247404250253432 

 At row:130, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:130, column:198,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:198,the value of plot_cost is         : 13.38473122973086 

 At row:130, column:199,the value of plot_t0 is           : 3.0
 At row:130, column:199,the value of plot_t1 is           : 1.613065326633166
 At row:130, column:199,the value of plot_cost is         : 13.522866269610804 

 At row:131, column:0,the value of plot_t0 is           : -1.0
 At row:131, column:0,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:0,the value of plot_cost is         : 1.9580685552673636 

 At row:131, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:131, column:1,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:1,the value of plot_cost is         : 1.938885778497657 

 At row:131, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:131, column:2,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:2,the value of plot_cost is         : 1.9205110621304657 

 At row:131, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:131, column:3,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:3,the value of plot_cost is         : 1.9029444061657894 

 At row:131, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:131, column:4,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:4,the value of plot_cost is         : 1.886185810603629 

 At row:131, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:131, column:5,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:5,the value of plot_cost is         : 1.8702352754439824 

 At row:131, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:131, column:6,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:6,the value of plot_cost is         : 1.8550928006868512 

 At row:131, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:131, column:7,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:7,the value of plot_cost is         : 1.8407583863322357 

 At row:131, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:131, column:8,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:8,the value of plot_cost is         : 1.8272320323801348 

 At row:131, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:131, column:9,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:9,the value of plot_cost is         : 1.8145137388305494 

 At row:131, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:131, column:10,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:10,the value of plot_cost is         : 1.8026035056834786 

 At row:131, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:131, column:11,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:11,the value of plot_cost is         : 1.7915013329389229 

 At row:131, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:131, column:12,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:12,the value of plot_cost is         : 1.7812072205968825 

 At row:131, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:131, column:13,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:13,the value of plot_cost is         : 1.7717211686573568 

 At row:131, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:131, column:14,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:14,the value of plot_cost is         : 1.7630431771203472 

 At row:131, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:131, column:15,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:15,the value of plot_cost is         : 1.7551732459858518 

 At row:131, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:131, column:16,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:16,the value of plot_cost is         : 1.7481113752538713 

 At row:131, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:131, column:17,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:17,the value of plot_cost is         : 1.7418575649244068 

 At row:131, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:131, column:18,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:18,the value of plot_cost is         : 1.7364118149974568 

 At row:131, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:131, column:19,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:19,the value of plot_cost is         : 1.7317741254730223 

 At row:131, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:131, column:20,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:20,the value of plot_cost is         : 1.7279444963511021 

 At row:131, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:131, column:21,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:21,the value of plot_cost is         : 1.7249229276316975 

 At row:131, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:131, column:22,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:22,the value of plot_cost is         : 1.7227094193148078 

 At row:131, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:131, column:23,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:23,the value of plot_cost is         : 1.7213039714004335 

 At row:131, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:131, column:24,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:24,the value of plot_cost is         : 1.720706583888575 

 At row:131, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:131, column:25,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:25,the value of plot_cost is         : 1.7209172567792297 

 At row:131, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:131, column:26,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:26,the value of plot_cost is         : 1.7219359900724003 

 At row:131, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:131, column:27,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:27,the value of plot_cost is         : 1.7237627837680862 

 At row:131, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:131, column:28,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:28,the value of plot_cost is         : 1.7263976378662877 

 At row:131, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:131, column:29,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:29,the value of plot_cost is         : 1.729840552367004 

 At row:131, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:131, column:30,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:30,the value of plot_cost is         : 1.7340915272702349 

 At row:131, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:131, column:31,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:31,the value of plot_cost is         : 1.739150562575981 

 At row:131, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:131, column:32,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:32,the value of plot_cost is         : 1.7450176582842423 

 At row:131, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:131, column:33,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:33,the value of plot_cost is         : 1.7516928143950188 

 At row:131, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:131, column:34,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:34,the value of plot_cost is         : 1.7591760309083109 

 At row:131, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:131, column:35,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:35,the value of plot_cost is         : 1.7674673078241168 

 At row:131, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:131, column:36,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:36,the value of plot_cost is         : 1.776566645142438 

 At row:131, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:131, column:37,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:37,the value of plot_cost is         : 1.786474042863275 

 At row:131, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:131, column:38,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:38,the value of plot_cost is         : 1.7971895009866272 

 At row:131, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:131, column:39,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:39,the value of plot_cost is         : 1.8087130195124945 

 At row:131, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:131, column:40,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:40,the value of plot_cost is         : 1.8210445984408763 

 At row:131, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:131, column:41,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:41,the value of plot_cost is         : 1.834184237771773 

 At row:131, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:131, column:42,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:42,the value of plot_cost is         : 1.8481319375051852 

 At row:131, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:131, column:43,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:43,the value of plot_cost is         : 1.862887697641113 

 At row:131, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:131, column:44,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:44,the value of plot_cost is         : 1.8784515181795556 

 At row:131, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:131, column:45,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:45,the value of plot_cost is         : 1.8948233991205128 

 At row:131, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:131, column:46,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:46,the value of plot_cost is         : 1.9120033404639847 

 At row:131, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:131, column:47,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:47,the value of plot_cost is         : 1.9299913422099724 

 At row:131, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:131, column:48,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:48,the value of plot_cost is         : 1.9487874043584756 

 At row:131, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:131, column:49,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:49,the value of plot_cost is         : 1.9683915269094938 

 At row:131, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:131, column:50,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:50,the value of plot_cost is         : 1.9888037098630262 

 At row:131, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:131, column:51,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:51,the value of plot_cost is         : 2.010023953219074 

 At row:131, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:131, column:52,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:52,the value of plot_cost is         : 2.032052256977638 

 At row:131, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:131, column:53,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:53,the value of plot_cost is         : 2.054888621138716 

 At row:131, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:131, column:54,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:54,the value of plot_cost is         : 2.0785330457023092 

 At row:131, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:131, column:55,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:55,the value of plot_cost is         : 2.1029855306684166 

 At row:131, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:131, column:56,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:56,the value of plot_cost is         : 2.12824607603704 

 At row:131, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:131, column:57,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:57,the value of plot_cost is         : 2.1543146818081786 

 At row:131, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:131, column:58,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:58,the value of plot_cost is         : 2.181191347981833 

 At row:131, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:131, column:59,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:59,the value of plot_cost is         : 2.208876074558002 

 At row:131, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:131, column:60,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:60,the value of plot_cost is         : 2.237368861536685 

 At row:131, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:131, column:61,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:61,the value of plot_cost is         : 2.2666697089178833 

 At row:131, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:131, column:62,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:62,the value of plot_cost is         : 2.2967786167015984 

 At row:131, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:131, column:63,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:63,the value of plot_cost is         : 2.3276955848878274 

 At row:131, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:131, column:64,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:64,the value of plot_cost is         : 2.3594206134765714 

 At row:131, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:131, column:65,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:65,the value of plot_cost is         : 2.3919537024678306 

 At row:131, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:131, column:66,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:66,the value of plot_cost is         : 2.425294851861604 

 At row:131, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:131, column:67,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:67,the value of plot_cost is         : 2.4594440616578943 

 At row:131, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:131, column:68,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:68,the value of plot_cost is         : 2.494401331856699 

 At row:131, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:131, column:69,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:69,the value of plot_cost is         : 2.530166662458019 

 At row:131, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:131, column:70,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:70,the value of plot_cost is         : 2.566740053461853 

 At row:131, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:131, column:71,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:71,the value of plot_cost is         : 2.6041215048682016 

 At row:131, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:131, column:72,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:72,the value of plot_cost is         : 2.6423110166770685 

 At row:131, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:131, column:73,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:73,the value of plot_cost is         : 2.6813085888884474 

 At row:131, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:131, column:74,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:74,the value of plot_cost is         : 2.721114221502343 

 At row:131, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:131, column:75,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:75,the value of plot_cost is         : 2.761727914518752 

 At row:131, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:131, column:76,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:76,the value of plot_cost is         : 2.8031496679376775 

 At row:131, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:131, column:77,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:77,the value of plot_cost is         : 2.8453794817591174 

 At row:131, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:131, column:78,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:78,the value of plot_cost is         : 2.8884173559830746 

 At row:131, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:131, column:79,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:79,the value of plot_cost is         : 2.9322632906095447 

 At row:131, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:131, column:80,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:80,the value of plot_cost is         : 2.976917285638529 

 At row:131, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:131, column:81,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:81,the value of plot_cost is         : 3.022379341070029 

 At row:131, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:131, column:82,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:82,the value of plot_cost is         : 3.0686494569040463 

 At row:131, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:131, column:83,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:83,the value of plot_cost is         : 3.1157276331405774 

 At row:131, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:131, column:84,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:84,the value of plot_cost is         : 3.163613869779623 

 At row:131, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:131, column:85,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:85,the value of plot_cost is         : 3.2123081668211833 

 At row:131, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:131, column:86,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:86,the value of plot_cost is         : 3.261810524265259 

 At row:131, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:131, column:87,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:87,the value of plot_cost is         : 3.3121209421118505 

 At row:131, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:131, column:88,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:88,the value of plot_cost is         : 3.3632394203609577 

 At row:131, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:131, column:89,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:89,the value of plot_cost is         : 3.4151659590125787 

 At row:131, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:131, column:90,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:90,the value of plot_cost is         : 3.4679005580667144 

 At row:131, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:131, column:91,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:91,the value of plot_cost is         : 3.521443217523365 

 At row:131, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:131, column:92,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:92,the value of plot_cost is         : 3.5757939373825334 

 At row:131, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:131, column:93,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:93,the value of plot_cost is         : 3.630952717644216 

 At row:131, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:131, column:94,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:94,the value of plot_cost is         : 3.686919558308412 

 At row:131, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:131, column:95,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:95,the value of plot_cost is         : 3.743694459375123 

 At row:131, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:131, column:96,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:96,the value of plot_cost is         : 3.801277420844349 

 At row:131, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:131, column:97,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:97,the value of plot_cost is         : 3.8596684427160923 

 At row:131, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:131, column:98,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:98,the value of plot_cost is         : 3.918867524990351 

 At row:131, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:131, column:99,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:99,the value of plot_cost is         : 3.978874667667122 

 At row:131, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:131, column:100,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:100,the value of plot_cost is         : 4.039689870746408 

 At row:131, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:131, column:101,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:101,the value of plot_cost is         : 4.10131313422821 

 At row:131, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:131, column:102,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:102,the value of plot_cost is         : 4.16374445811253 

 At row:131, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:131, column:103,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:103,the value of plot_cost is         : 4.226983842399363 

 At row:131, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:131, column:104,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:104,the value of plot_cost is         : 4.2910312870887095 

 At row:131, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:131, column:105,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:105,the value of plot_cost is         : 4.355886792180572 

 At row:131, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:131, column:106,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:106,the value of plot_cost is         : 4.421550357674948 

 At row:131, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:131, column:107,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:107,the value of plot_cost is         : 4.488021983571842 

 At row:131, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:131, column:108,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:108,the value of plot_cost is         : 4.555301669871252 

 At row:131, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:131, column:109,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:109,the value of plot_cost is         : 4.6233894165731755 

 At row:131, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:131, column:110,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:110,the value of plot_cost is         : 4.692285223677612 

 At row:131, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:131, column:111,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:111,the value of plot_cost is         : 4.761989091184564 

 At row:131, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:131, column:112,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:112,the value of plot_cost is         : 4.832501019094034 

 At row:131, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:131, column:113,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:113,the value of plot_cost is         : 4.903821007406018 

 At row:131, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:131, column:114,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:114,the value of plot_cost is         : 4.975949056120516 

 At row:131, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:131, column:115,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:115,the value of plot_cost is         : 5.04888516523753 

 At row:131, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:131, column:116,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:116,the value of plot_cost is         : 5.122629334757057 

 At row:131, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:131, column:117,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:117,the value of plot_cost is         : 5.197181564679101 

 At row:131, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:131, column:118,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:118,the value of plot_cost is         : 5.272541855003661 

 At row:131, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:131, column:119,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:119,the value of plot_cost is         : 5.348710205730735 

 At row:131, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:131, column:120,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:120,the value of plot_cost is         : 5.425686616860323 

 At row:131, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:131, column:121,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:121,the value of plot_cost is         : 5.503471088392426 

 At row:131, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:131, column:122,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:122,the value of plot_cost is         : 5.582063620327048 

 At row:131, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:131, column:123,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:123,the value of plot_cost is         : 5.661464212664183 

 At row:131, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:131, column:124,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:124,the value of plot_cost is         : 5.741672865403831 

 At row:131, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:131, column:125,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:125,the value of plot_cost is         : 5.822689578545995 

 At row:131, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:131, column:126,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:126,the value of plot_cost is         : 5.904514352090674 

 At row:131, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:131, column:127,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:127,the value of plot_cost is         : 5.987147186037869 

 At row:131, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:131, column:128,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:128,the value of plot_cost is         : 6.070588080387581 

 At row:131, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:131, column:129,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:129,the value of plot_cost is         : 6.154837035139806 

 At row:131, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:131, column:130,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:130,the value of plot_cost is         : 6.239894050294543 

 At row:131, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:131, column:131,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:131,the value of plot_cost is         : 6.325759125851797 

 At row:131, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:131, column:132,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:132,the value of plot_cost is         : 6.41243226181157 

 At row:131, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:131, column:133,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:133,the value of plot_cost is         : 6.499913458173856 

 At row:131, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:131, column:134,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:134,the value of plot_cost is         : 6.588202714938656 

 At row:131, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:131, column:135,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:135,the value of plot_cost is         : 6.67730003210597 

 At row:131, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:131, column:136,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:136,the value of plot_cost is         : 6.7672054096758 

 At row:131, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:131, column:137,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:137,the value of plot_cost is         : 6.857918847648145 

 At row:131, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:131, column:138,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:138,the value of plot_cost is         : 6.949440346023008 

 At row:131, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:131, column:139,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:139,the value of plot_cost is         : 7.0417699048003835 

 At row:131, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:131, column:140,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:140,the value of plot_cost is         : 7.134907523980273 

 At row:131, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:131, column:141,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:141,the value of plot_cost is         : 7.228853203562676 

 At row:131, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:131, column:142,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:142,the value of plot_cost is         : 7.323606943547601 

 At row:131, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:131, column:143,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:143,the value of plot_cost is         : 7.419168743935037 

 At row:131, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:131, column:144,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:144,the value of plot_cost is         : 7.515538604724988 

 At row:131, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:131, column:145,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:145,the value of plot_cost is         : 7.612716525917454 

 At row:131, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:131, column:146,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:146,the value of plot_cost is         : 7.710702507512433 

 At row:131, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:131, column:147,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:147,the value of plot_cost is         : 7.809496549509931 

 At row:131, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:131, column:148,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:148,the value of plot_cost is         : 7.909098651909945 

 At row:131, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:131, column:149,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:149,the value of plot_cost is         : 8.00950881471247 

 At row:131, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:131, column:150,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:150,the value of plot_cost is         : 8.110727037917512 

 At row:131, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:131, column:151,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:151,the value of plot_cost is         : 8.21275332152507 

 At row:131, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:131, column:152,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:152,the value of plot_cost is         : 8.31558766553514 

 At row:131, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:131, column:153,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:153,the value of plot_cost is         : 8.419230069947728 

 At row:131, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:131, column:154,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:154,the value of plot_cost is         : 8.52368053476283 

 At row:131, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:131, column:155,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:155,the value of plot_cost is         : 8.628939059980445 

 At row:131, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:131, column:156,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:156,the value of plot_cost is         : 8.73500564560058 

 At row:131, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:131, column:157,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:157,the value of plot_cost is         : 8.841880291623225 

 At row:131, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:131, column:158,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:158,the value of plot_cost is         : 8.94956299804839 

 At row:131, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:131, column:159,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:159,the value of plot_cost is         : 9.058053764876066 

 At row:131, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:131, column:160,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:160,the value of plot_cost is         : 9.167352592106258 

 At row:131, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:131, column:161,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:161,the value of plot_cost is         : 9.277459479738967 

 At row:131, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:131, column:162,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:162,the value of plot_cost is         : 9.388374427774188 

 At row:131, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:131, column:163,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:163,the value of plot_cost is         : 9.500097436211929 

 At row:131, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:131, column:164,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:164,the value of plot_cost is         : 9.612628505052179 

 At row:131, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:131, column:165,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:165,the value of plot_cost is         : 9.725967634294948 

 At row:131, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:131, column:166,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:166,the value of plot_cost is         : 9.840114823940231 

 At row:131, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:131, column:167,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:167,the value of plot_cost is         : 9.95507007398803 

 At row:131, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:131, column:168,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:168,the value of plot_cost is         : 10.070833384438345 

 At row:131, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:131, column:169,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:169,the value of plot_cost is         : 10.187404755291173 

 At row:131, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:131, column:170,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:170,the value of plot_cost is         : 10.304784186546515 

 At row:131, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:131, column:171,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:171,the value of plot_cost is         : 10.422971678204375 

 At row:131, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:131, column:172,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:172,the value of plot_cost is         : 10.541967230264746 

 At row:131, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:131, column:173,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:173,the value of plot_cost is         : 10.661770842727638 

 At row:131, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:131, column:174,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:174,the value of plot_cost is         : 10.782382515593037 

 At row:131, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:131, column:175,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:175,the value of plot_cost is         : 10.90380224886096 

 At row:131, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:131, column:176,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:176,the value of plot_cost is         : 11.026030042531392 

 At row:131, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:131, column:177,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:177,the value of plot_cost is         : 11.14906589660434 

 At row:131, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:131, column:178,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:178,the value of plot_cost is         : 11.272909811079804 

 At row:131, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:131, column:179,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:179,the value of plot_cost is         : 11.397561785957784 

 At row:131, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:131, column:180,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:180,the value of plot_cost is         : 11.52302182123828 

 At row:131, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:131, column:181,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:181,the value of plot_cost is         : 11.64928991692129 

 At row:131, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:131, column:182,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:182,the value of plot_cost is         : 11.776366073006812 

 At row:131, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:131, column:183,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:183,the value of plot_cost is         : 11.90425028949485 

 At row:131, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:131, column:184,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:184,the value of plot_cost is         : 12.032942566385406 

 At row:131, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:131, column:185,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:185,the value of plot_cost is         : 12.162442903678476 

 At row:131, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:131, column:186,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:186,the value of plot_cost is         : 12.292751301374063 

 At row:131, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:131, column:187,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:187,the value of plot_cost is         : 12.42386775947216 

 At row:131, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:131, column:188,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:188,the value of plot_cost is         : 12.555792277972778 

 At row:131, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:131, column:189,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:189,the value of plot_cost is         : 12.688524856875908 

 At row:131, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:131, column:190,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:190,the value of plot_cost is         : 12.822065496181551 

 At row:131, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:131, column:191,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:191,the value of plot_cost is         : 12.956414195889712 

 At row:131, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:131, column:192,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:192,the value of plot_cost is         : 13.091570956000387 

 At row:131, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:131, column:193,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:193,the value of plot_cost is         : 13.22753577651358 

 At row:131, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:131, column:194,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:194,the value of plot_cost is         : 13.364308657429282 

 At row:131, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:131, column:195,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:195,the value of plot_cost is         : 13.501889598747503 

 At row:131, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:131, column:196,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:196,the value of plot_cost is         : 13.64027860046824 

 At row:131, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:131, column:197,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:197,the value of plot_cost is         : 13.779475662591496 

 At row:131, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:131, column:198,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:198,the value of plot_cost is         : 13.919480785117258 

 At row:131, column:199,the value of plot_t0 is           : 3.0
 At row:131, column:199,the value of plot_t1 is           : 1.6331658291457285
 At row:131, column:199,the value of plot_cost is         : 14.060293968045539 

 At row:132, column:0,the value of plot_t0 is           : -1.0
 At row:132, column:0,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:0,the value of plot_cost is         : 1.975128441922462 

 At row:132, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:132, column:1,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:1,the value of plot_cost is         : 1.9586238082010914 

 At row:132, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:132, column:2,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:2,the value of plot_cost is         : 1.942927234882236 

 At row:132, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:132, column:3,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:3,the value of plot_cost is         : 1.9280387219658959 

 At row:132, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:132, column:4,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:4,the value of plot_cost is         : 1.91395826945207 

 At row:132, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:132, column:5,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:5,the value of plot_cost is         : 1.90068587734076 

 At row:132, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:132, column:6,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:6,the value of plot_cost is         : 1.8882215456319644 

 At row:132, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:132, column:7,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:7,the value of plot_cost is         : 1.8765652743256844 

 At row:132, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:132, column:8,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:8,the value of plot_cost is         : 1.8657170634219193 

 At row:132, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:132, column:9,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:9,the value of plot_cost is         : 1.8556769129206696 

 At row:132, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:132, column:10,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:10,the value of plot_cost is         : 1.8464448228219346 

 At row:132, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:132, column:11,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:11,the value of plot_cost is         : 1.8380207931257149 

 At row:132, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:132, column:12,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:12,the value of plot_cost is         : 1.8304048238320099 

 At row:132, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:132, column:13,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:13,the value of plot_cost is         : 1.8235969149408207 

 At row:132, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:132, column:14,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:14,the value of plot_cost is         : 1.8175970664521461 

 At row:132, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:132, column:15,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:15,the value of plot_cost is         : 1.8124052783659865 

 At row:132, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:132, column:16,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:16,the value of plot_cost is         : 1.8080215506823418 

 At row:132, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:132, column:17,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:17,the value of plot_cost is         : 1.804445883401213 

 At row:132, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:132, column:18,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:18,the value of plot_cost is         : 1.8016782765225987 

 At row:132, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:132, column:19,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:19,the value of plot_cost is         : 1.7997187300465 

 At row:132, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:132, column:20,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:20,the value of plot_cost is         : 1.7985672439729155 

 At row:132, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:132, column:21,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:21,the value of plot_cost is         : 1.7982238183018466 

 At row:132, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:132, column:22,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:22,the value of plot_cost is         : 1.7986884530332925 

 At row:132, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:132, column:23,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:23,the value of plot_cost is         : 1.7999611481672544 

 At row:132, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:132, column:24,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:24,the value of plot_cost is         : 1.8020419037037305 

 At row:132, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:132, column:25,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:25,the value of plot_cost is         : 1.8049307196427218 

 At row:132, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:132, column:26,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:26,the value of plot_cost is         : 1.8086275959842286 

 At row:132, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:132, column:27,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:27,the value of plot_cost is         : 1.8131325327282495 

 At row:132, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:132, column:28,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:28,the value of plot_cost is         : 1.8184455298747868 

 At row:132, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:132, column:29,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:29,the value of plot_cost is         : 1.8245665874238388 

 At row:132, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:132, column:30,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:30,the value of plot_cost is         : 1.831495705375405 

 At row:132, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:132, column:31,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:31,the value of plot_cost is         : 1.8392328837294873 

 At row:132, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:132, column:32,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:32,the value of plot_cost is         : 1.8477781224860843 

 At row:132, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:132, column:33,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:33,the value of plot_cost is         : 1.8571314216451964 

 At row:132, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:132, column:34,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:34,the value of plot_cost is         : 1.8672927812068238 

 At row:132, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:132, column:35,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:35,the value of plot_cost is         : 1.878262201170966 

 At row:132, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:132, column:36,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:36,the value of plot_cost is         : 1.8900396815376235 

 At row:132, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:132, column:37,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:37,the value of plot_cost is         : 1.9026252223067959 

 At row:132, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:132, column:38,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:38,the value of plot_cost is         : 1.9160188234784836 

 At row:132, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:132, column:39,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:39,the value of plot_cost is         : 1.9302204850526867 

 At row:132, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:132, column:40,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:40,the value of plot_cost is         : 1.9452302070294039 

 At row:132, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:132, column:41,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:41,the value of plot_cost is         : 1.9610479894086368 

 At row:132, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:132, column:42,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:42,the value of plot_cost is         : 1.9776738321903842 

 At row:132, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:132, column:43,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:43,the value of plot_cost is         : 1.995107735374648 

 At row:132, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:132, column:44,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:44,the value of plot_cost is         : 2.013349698961426 

 At row:132, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:132, column:45,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:45,the value of plot_cost is         : 2.032399722950719 

 At row:132, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:132, column:46,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:46,the value of plot_cost is         : 2.0522578073425275 

 At row:132, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:132, column:47,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:47,the value of plot_cost is         : 2.0729239521368505 

 At row:132, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:132, column:48,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:48,the value of plot_cost is         : 2.094398157333689 

 At row:132, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:132, column:49,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:49,the value of plot_cost is         : 2.1166804229330434 

 At row:132, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:132, column:50,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:50,the value of plot_cost is         : 2.139770748934911 

 At row:132, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:132, column:51,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:51,the value of plot_cost is         : 2.163669135339295 

 At row:132, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:132, column:52,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:52,the value of plot_cost is         : 2.188375582146193 

 At row:132, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:132, column:53,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:53,the value of plot_cost is         : 2.213890089355608 

 At row:132, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:132, column:54,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:54,the value of plot_cost is         : 2.2402126569675374 

 At row:132, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:132, column:55,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:55,the value of plot_cost is         : 2.2673432849819806 

 At row:132, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:132, column:56,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:56,the value of plot_cost is         : 2.29528197339894 

 At row:132, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:132, column:57,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:57,the value of plot_cost is         : 2.324028722218415 

 At row:132, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:132, column:58,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:58,the value of plot_cost is         : 2.353583531440404 

 At row:132, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:132, column:59,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:59,the value of plot_cost is         : 2.3839464010649087 

 At row:132, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:132, column:60,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:60,the value of plot_cost is         : 2.4151173310919276 

 At row:132, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:132, column:61,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:61,the value of plot_cost is         : 2.447096321521462 

 At row:132, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:132, column:62,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:62,the value of plot_cost is         : 2.479883372353511 

 At row:132, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:132, column:63,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:63,the value of plot_cost is         : 2.5134784835880772 

 At row:132, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:132, column:64,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:64,the value of plot_cost is         : 2.5478816552251575 

 At row:132, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:132, column:65,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:65,the value of plot_cost is         : 2.5830928872647516 

 At row:132, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:132, column:66,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:66,the value of plot_cost is         : 2.6191121797068613 

 At row:132, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:132, column:67,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:67,the value of plot_cost is         : 2.6559395325514874 

 At row:132, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:132, column:68,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:68,the value of plot_cost is         : 2.6935749457986273 

 At row:132, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:132, column:69,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:69,the value of plot_cost is         : 2.7320184194482824 

 At row:132, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:132, column:70,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:70,the value of plot_cost is         : 2.771269953500452 

 At row:132, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:132, column:71,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:71,the value of plot_cost is         : 2.811329547955138 

 At row:132, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:132, column:72,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:72,the value of plot_cost is         : 2.8521972028123384 

 At row:132, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:132, column:73,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:73,the value of plot_cost is         : 2.8938729180720544 

 At row:132, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:132, column:74,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:74,the value of plot_cost is         : 2.936356693734285 

 At row:132, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:132, column:75,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:75,the value of plot_cost is         : 2.9796485297990305 

 At row:132, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:132, column:76,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:76,the value of plot_cost is         : 3.0237484262662915 

 At row:132, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:132, column:77,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:77,the value of plot_cost is         : 3.0686563831360685 

 At row:132, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:132, column:78,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:78,the value of plot_cost is         : 3.1143724004083593 

 At row:132, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:132, column:79,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:79,the value of plot_cost is         : 3.1608964780831657 

 At row:132, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:132, column:80,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:80,the value of plot_cost is         : 3.2082286161604863 

 At row:132, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:132, column:81,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:81,the value of plot_cost is         : 3.256368814640323 

 At row:132, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:132, column:82,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:82,the value of plot_cost is         : 3.305317073522674 

 At row:132, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:132, column:83,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:83,the value of plot_cost is         : 3.355073392807541 

 At row:132, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:132, column:84,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:84,the value of plot_cost is         : 3.4056377724949227 

 At row:132, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:132, column:85,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:85,the value of plot_cost is         : 3.457010212584818 

 At row:132, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:132, column:86,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:86,the value of plot_cost is         : 3.5091907130772313 

 At row:132, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:132, column:87,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:87,the value of plot_cost is         : 3.562179273972159 

 At row:132, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:132, column:88,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:88,the value of plot_cost is         : 3.6159758952696 

 At row:132, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:132, column:89,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:89,the value of plot_cost is         : 3.670580576969557 

 At row:132, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:132, column:90,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:90,the value of plot_cost is         : 3.7259933190720287 

 At row:132, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:132, column:91,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:91,the value of plot_cost is         : 3.7822141215770158 

 At row:132, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:132, column:92,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:92,the value of plot_cost is         : 3.839242984484518 

 At row:132, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:132, column:93,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:93,the value of plot_cost is         : 3.897079907794536 

 At row:132, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:132, column:94,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:94,the value of plot_cost is         : 3.9557248915070686 

 At row:132, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:132, column:95,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:95,the value of plot_cost is         : 4.015177935622116 

 At row:132, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:132, column:96,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:96,the value of plot_cost is         : 4.0754390401396785 

 At row:132, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:132, column:97,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:97,the value of plot_cost is         : 4.136508205059758 

 At row:132, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:132, column:98,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:98,the value of plot_cost is         : 4.198385430382349 

 At row:132, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:132, column:99,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:99,the value of plot_cost is         : 4.261070716107457 

 At row:132, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:132, column:100,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:100,the value of plot_cost is         : 4.324564062235079 

 At row:132, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:132, column:101,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:101,the value of plot_cost is         : 4.388865468765219 

 At row:132, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:132, column:102,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:102,the value of plot_cost is         : 4.453974935697871 

 At row:132, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:132, column:103,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:103,the value of plot_cost is         : 4.519892463033041 

 At row:132, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:132, column:104,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:104,the value of plot_cost is         : 4.586618050770724 

 At row:132, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:132, column:105,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:105,the value of plot_cost is         : 4.654151698910922 

 At row:132, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:132, column:106,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:106,the value of plot_cost is         : 4.722493407453634 

 At row:132, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:132, column:107,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:107,the value of plot_cost is         : 4.791643176398866 

 At row:132, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:132, column:108,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:108,the value of plot_cost is         : 4.861601005746609 

 At row:132, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:132, column:109,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:109,the value of plot_cost is         : 4.932366895496867 

 At row:132, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:132, column:110,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:110,the value of plot_cost is         : 5.003940845649641 

 At row:132, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:132, column:111,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:111,the value of plot_cost is         : 5.076322856204929 

 At row:132, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:132, column:112,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:112,the value of plot_cost is         : 5.149512927162732 

 At row:132, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:132, column:113,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:113,the value of plot_cost is         : 5.223511058523053 

 At row:132, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:132, column:114,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:114,the value of plot_cost is         : 5.298317250285886 

 At row:132, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:132, column:115,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:115,the value of plot_cost is         : 5.373931502451237 

 At row:132, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:132, column:116,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:116,the value of plot_cost is         : 5.450353815019101 

 At row:132, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:132, column:117,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:117,the value of plot_cost is         : 5.527584187989483 

 At row:132, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:132, column:118,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:118,the value of plot_cost is         : 5.605622621362375 

 At row:132, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:132, column:119,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:119,the value of plot_cost is         : 5.684469115137786 

 At row:132, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:132, column:120,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:120,the value of plot_cost is         : 5.764123669315711 

 At row:132, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:132, column:121,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:121,the value of plot_cost is         : 5.844586283896149 

 At row:132, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:132, column:122,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:122,the value of plot_cost is         : 5.925856958879103 

 At row:132, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:132, column:123,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:123,the value of plot_cost is         : 6.0079356942645745 

 At row:132, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:132, column:124,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:124,the value of plot_cost is         : 6.09082249005256 

 At row:132, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:132, column:125,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:125,the value of plot_cost is         : 6.174517346243061 

 At row:132, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:132, column:126,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:126,the value of plot_cost is         : 6.259020262836074 

 At row:132, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:132, column:127,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:127,the value of plot_cost is         : 6.3443312398316065 

 At row:132, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:132, column:128,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:128,the value of plot_cost is         : 6.43045027722965 

 At row:132, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:132, column:129,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:129,the value of plot_cost is         : 6.517377375030212 

 At row:132, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:132, column:130,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:130,the value of plot_cost is         : 6.605112533233287 

 At row:132, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:132, column:131,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:131,the value of plot_cost is         : 6.693655751838877 

 At row:132, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:132, column:132,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:132,the value of plot_cost is         : 6.783007030846982 

 At row:132, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:132, column:133,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:133,the value of plot_cost is         : 6.8731663702576045 

 At row:132, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:132, column:134,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:134,the value of plot_cost is         : 6.96413377007074 

 At row:132, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:132, column:135,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:135,the value of plot_cost is         : 7.055909230286392 

 At row:132, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:132, column:136,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:136,the value of plot_cost is         : 7.148492750904557 

 At row:132, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:132, column:137,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:137,the value of plot_cost is         : 7.24188433192524 

 At row:132, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:132, column:138,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:138,the value of plot_cost is         : 7.336083973348435 

 At row:132, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:132, column:139,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:139,the value of plot_cost is         : 7.431091675174148 

 At row:132, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:132, column:140,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:140,the value of plot_cost is         : 7.526907437402375 

 At row:132, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:132, column:141,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:141,the value of plot_cost is         : 7.623531260033114 

 At row:132, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:132, column:142,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:142,the value of plot_cost is         : 7.7209631430663705 

 At row:132, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:132, column:143,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:143,the value of plot_cost is         : 7.819203086502144 

 At row:132, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:132, column:144,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:144,the value of plot_cost is         : 7.918251090340431 

 At row:132, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:132, column:145,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:145,the value of plot_cost is         : 8.018107154581234 

 At row:132, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:132, column:146,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:146,the value of plot_cost is         : 8.11877127922455 

 At row:132, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:132, column:147,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:147,the value of plot_cost is         : 8.220243464270384 

 At row:132, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:132, column:148,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:148,the value of plot_cost is         : 8.322523709718729 

 At row:132, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:132, column:149,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:149,the value of plot_cost is         : 8.425612015569591 

 At row:132, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:132, column:150,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:150,the value of plot_cost is         : 8.52950838182297 

 At row:132, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:132, column:151,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:151,the value of plot_cost is         : 8.634212808478862 

 At row:132, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:132, column:152,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:152,the value of plot_cost is         : 8.739725295537268 

 At row:132, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:132, column:153,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:153,the value of plot_cost is         : 8.846045842998192 

 At row:132, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:132, column:154,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:154,the value of plot_cost is         : 8.95317445086163 

 At row:132, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:132, column:155,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:155,the value of plot_cost is         : 9.061111119127583 

 At row:132, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:132, column:156,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:156,the value of plot_cost is         : 9.169855847796052 

 At row:132, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:132, column:157,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:157,the value of plot_cost is         : 9.279408636867036 

 At row:132, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:132, column:158,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:158,the value of plot_cost is         : 9.389769486340533 

 At row:132, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:132, column:159,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:159,the value of plot_cost is         : 9.500938396216545 

 At row:132, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:132, column:160,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:160,the value of plot_cost is         : 9.612915366495073 

 At row:132, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:132, column:161,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:161,the value of plot_cost is         : 9.725700397176118 

 At row:132, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:132, column:162,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:162,the value of plot_cost is         : 9.839293488259674 

 At row:132, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:132, column:163,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:163,the value of plot_cost is         : 9.953694639745748 

 At row:132, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:132, column:164,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:164,the value of plot_cost is         : 10.068903851634337 

 At row:132, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:132, column:165,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:165,the value of plot_cost is         : 10.184921123925442 

 At row:132, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:132, column:166,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:166,the value of plot_cost is         : 10.301746456619062 

 At row:132, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:132, column:167,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:167,the value of plot_cost is         : 10.419379849715193 

 At row:132, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:132, column:168,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:168,the value of plot_cost is         : 10.537821303213844 

 At row:132, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:132, column:169,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:169,the value of plot_cost is         : 10.657070817115006 

 At row:132, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:132, column:170,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:170,the value of plot_cost is         : 10.777128391418687 

 At row:132, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:132, column:171,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:171,the value of plot_cost is         : 10.89799402612488 

 At row:132, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:132, column:172,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:172,the value of plot_cost is         : 11.019667721233589 

 At row:132, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:132, column:173,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:173,the value of plot_cost is         : 11.142149476744812 

 At row:132, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:132, column:174,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:174,the value of plot_cost is         : 11.26543929265855 

 At row:132, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:132, column:175,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:175,the value of plot_cost is         : 11.38953716897481 

 At row:132, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:132, column:176,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:176,the value of plot_cost is         : 11.51444310569358 

 At row:132, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:132, column:177,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:177,the value of plot_cost is         : 11.640157102814863 

 At row:132, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:132, column:178,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:178,the value of plot_cost is         : 11.766679160338661 

 At row:132, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:132, column:179,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:179,the value of plot_cost is         : 11.894009278264978 

 At row:132, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:132, column:180,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:180,the value of plot_cost is         : 12.022147456593807 

 At row:132, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:132, column:181,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:181,the value of plot_cost is         : 12.151093695325153 

 At row:132, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:132, column:182,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:182,the value of plot_cost is         : 12.28084799445901 

 At row:132, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:132, column:183,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:183,the value of plot_cost is         : 12.411410353995388 

 At row:132, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:132, column:184,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:184,the value of plot_cost is         : 12.542780773934277 

 At row:132, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:132, column:185,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:185,the value of plot_cost is         : 12.674959254275684 

 At row:132, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:132, column:186,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:186,the value of plot_cost is         : 12.80794579501961 

 At row:132, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:132, column:187,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:187,the value of plot_cost is         : 12.941740396166043 

 At row:132, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:132, column:188,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:188,the value of plot_cost is         : 13.07634305771499 

 At row:132, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:132, column:189,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:189,the value of plot_cost is         : 13.211753779666457 

 At row:132, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:132, column:190,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:190,the value of plot_cost is         : 13.34797256202044 

 At row:132, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:132, column:191,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:191,the value of plot_cost is         : 13.484999404776934 

 At row:132, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:132, column:192,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:192,the value of plot_cost is         : 13.622834307935943 

 At row:132, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:132, column:193,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:193,the value of plot_cost is         : 13.761477271497471 

 At row:132, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:132, column:194,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:194,the value of plot_cost is         : 13.900928295461508 

 At row:132, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:132, column:195,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:195,the value of plot_cost is         : 14.04118737982807 

 At row:132, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:132, column:196,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:196,the value of plot_cost is         : 14.182254524597145 

 At row:132, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:132, column:197,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:197,the value of plot_cost is         : 14.32412972976873 

 At row:132, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:132, column:198,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:198,the value of plot_cost is         : 14.466812995342828 

 At row:132, column:199,the value of plot_t0 is           : 3.0
 At row:132, column:199,the value of plot_t1 is           : 1.6532663316582914
 At row:132, column:199,the value of plot_cost is         : 14.610304321319449 

 At row:133, column:0,the value of plot_t0 is           : -1.0
 At row:133, column:0,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:0,the value of plot_cost is         : 2.0047709834167255 

 At row:133, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:133, column:1,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:1,the value of plot_cost is         : 1.9909444927436901 

 At row:133, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:133, column:2,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:2,the value of plot_cost is         : 1.9779260624731705 

 At row:133, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:133, column:3,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:3,the value of plot_cost is         : 1.9657156926051662 

 At row:133, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:133, column:4,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:4,the value of plot_cost is         : 1.9543133831396766 

 At row:133, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:133, column:5,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:5,the value of plot_cost is         : 1.9437191340767015 

 At row:133, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:133, column:6,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:6,the value of plot_cost is         : 1.9339329454162417 

 At row:133, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:133, column:7,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:7,the value of plot_cost is         : 1.924954817158298 

 At row:133, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:133, column:8,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:8,the value of plot_cost is         : 1.9167847493028687 

 At row:133, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:133, column:9,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:9,the value of plot_cost is         : 1.9094227418499545 

 At row:133, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:133, column:10,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:10,the value of plot_cost is         : 1.9028687947995546 

 At row:133, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:133, column:11,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:11,the value of plot_cost is         : 1.897122908151671 

 At row:133, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:133, column:12,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:12,the value of plot_cost is         : 1.892185081906302 

 At row:133, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:133, column:13,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:13,the value of plot_cost is         : 1.888055316063448 

 At row:133, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:133, column:14,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:14,the value of plot_cost is         : 1.8847336106231096 

 At row:133, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:133, column:15,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:15,the value of plot_cost is         : 1.8822199655852856 

 At row:133, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:133, column:16,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:16,the value of plot_cost is         : 1.8805143809499767 

 At row:133, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:133, column:17,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:17,the value of plot_cost is         : 1.8796168567171831 

 At row:133, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:133, column:18,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:18,the value of plot_cost is         : 1.8795273928869054 

 At row:133, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:133, column:19,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:19,the value of plot_cost is         : 1.8802459894591417 

 At row:133, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:133, column:20,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:20,the value of plot_cost is         : 1.8817726464338933 

 At row:133, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:133, column:21,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:21,the value of plot_cost is         : 1.8841073638111598 

 At row:133, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:133, column:22,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:22,the value of plot_cost is         : 1.887250141590942 

 At row:133, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:133, column:23,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:23,the value of plot_cost is         : 1.891200979773239 

 At row:133, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:133, column:24,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:24,the value of plot_cost is         : 1.8959598783580514 

 At row:133, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:133, column:25,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:25,the value of plot_cost is         : 1.901526837345378 

 At row:133, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:133, column:26,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:26,the value of plot_cost is         : 1.9079018567352204 

 At row:133, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:133, column:27,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:27,the value of plot_cost is         : 1.9150849365275768 

 At row:133, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:133, column:28,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:28,the value of plot_cost is         : 1.9230760767224506 

 At row:133, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:133, column:29,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:29,the value of plot_cost is         : 1.9318752773198382 

 At row:133, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:133, column:30,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:30,the value of plot_cost is         : 1.9414825383197403 

 At row:133, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:133, column:31,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:31,the value of plot_cost is         : 1.951897859722158 

 At row:133, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:133, column:32,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:32,the value of plot_cost is         : 1.9631212415270902 

 At row:133, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:133, column:33,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:33,the value of plot_cost is         : 1.9751526837345388 

 At row:133, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:133, column:34,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:34,the value of plot_cost is         : 1.987992186344502 

 At row:133, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:133, column:35,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:35,the value of plot_cost is         : 2.0016397493569795 

 At row:133, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:133, column:36,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:36,the value of plot_cost is         : 2.016095372771973 

 At row:133, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:133, column:37,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:37,the value of plot_cost is         : 2.0313590565894803 

 At row:133, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:133, column:38,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:38,the value of plot_cost is         : 2.0474308008095043 

 At row:133, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:133, column:39,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:39,the value of plot_cost is         : 2.0643106054320426 

 At row:133, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:133, column:40,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:40,the value of plot_cost is         : 2.081998470457096 

 At row:133, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:133, column:41,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:41,the value of plot_cost is         : 2.1004943958846645 

 At row:133, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:133, column:42,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:42,the value of plot_cost is         : 2.1197983817147477 

 At row:133, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:133, column:43,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:43,the value of plot_cost is         : 2.139910427947347 

 At row:133, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:133, column:44,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:44,the value of plot_cost is         : 2.160830534582461 

 At row:133, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:133, column:45,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:45,the value of plot_cost is         : 2.1825587016200894 

 At row:133, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:133, column:46,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:46,the value of plot_cost is         : 2.205094929060234 

 At row:133, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:133, column:47,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:47,the value of plot_cost is         : 2.228439216902892 

 At row:133, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:133, column:48,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:48,the value of plot_cost is         : 2.2525915651480672 

 At row:133, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:133, column:49,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:49,the value of plot_cost is         : 2.277551973795757 

 At row:133, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:133, column:50,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:50,the value of plot_cost is         : 2.30332044284596 

 At row:133, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:133, column:51,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:51,the value of plot_cost is         : 2.3298969722986804 

 At row:133, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:133, column:52,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:52,the value of plot_cost is         : 2.3572815621539145 

 At row:133, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:133, column:53,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:53,the value of plot_cost is         : 2.385474212411664 

 At row:133, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:133, column:54,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:54,the value of plot_cost is         : 2.4144749230719293 

 At row:133, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:133, column:55,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:55,the value of plot_cost is         : 2.4442836941347084 

 At row:133, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:133, column:56,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:56,the value of plot_cost is         : 2.474900525600004 

 At row:133, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:133, column:57,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:57,the value of plot_cost is         : 2.5063254174678145 

 At row:133, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:133, column:58,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:58,the value of plot_cost is         : 2.5385583697381384 

 At row:133, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:133, column:59,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:59,the value of plot_cost is         : 2.571599382410979 

 At row:133, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:133, column:60,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:60,the value of plot_cost is         : 2.605448455486334 

 At row:133, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:133, column:61,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:61,the value of plot_cost is         : 2.6401055889642047 

 At row:133, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:133, column:62,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:62,the value of plot_cost is         : 2.6755707828445887 

 At row:133, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:133, column:63,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:63,the value of plot_cost is         : 2.711844037127491 

 At row:133, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:133, column:64,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:64,the value of plot_cost is         : 2.748925351812906 

 At row:133, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:133, column:65,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:65,the value of plot_cost is         : 2.786814726900836 

 At row:133, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:133, column:66,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:66,the value of plot_cost is         : 2.825512162391282 

 At row:133, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:133, column:67,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:67,the value of plot_cost is         : 2.8650176582842435 

 At row:133, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:133, column:68,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:68,the value of plot_cost is         : 2.905331214579719 

 At row:133, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:133, column:69,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:69,the value of plot_cost is         : 2.9464528312777105 

 At row:133, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:133, column:70,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:70,the value of plot_cost is         : 2.9883825083782165 

 At row:133, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:133, column:71,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:71,the value of plot_cost is         : 3.0311202458812376 

 At row:133, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:133, column:72,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:72,the value of plot_cost is         : 3.074666043786773 

 At row:133, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:133, column:73,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:73,the value of plot_cost is         : 3.119019902094825 

 At row:133, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:133, column:74,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:74,the value of plot_cost is         : 3.164181820805392 

 At row:133, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:133, column:75,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:75,the value of plot_cost is         : 3.2101517999184725 

 At row:133, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:133, column:76,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:76,the value of plot_cost is         : 3.2569298394340698 

 At row:133, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:133, column:77,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:77,the value of plot_cost is         : 3.3045159393521826 

 At row:133, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:133, column:78,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:78,the value of plot_cost is         : 3.3529100996728087 

 At row:133, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:133, column:79,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:79,the value of plot_cost is         : 3.4021123203959505 

 At row:133, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:133, column:80,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:80,the value of plot_cost is         : 3.452122601521607 

 At row:133, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:133, column:81,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:81,the value of plot_cost is         : 3.5029409430497793 

 At row:133, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:133, column:82,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:82,the value of plot_cost is         : 3.554567344980466 

 At row:133, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:133, column:83,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:83,the value of plot_cost is         : 3.607001807313669 

 At row:133, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:133, column:84,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:84,the value of plot_cost is         : 3.660244330049386 

 At row:133, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:133, column:85,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:85,the value of plot_cost is         : 3.7142949131876177 

 At row:133, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:133, column:86,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:86,the value of plot_cost is         : 3.7691535567283663 

 At row:133, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:133, column:87,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:87,the value of plot_cost is         : 3.8248202606716295 

 At row:133, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:133, column:88,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:88,the value of plot_cost is         : 3.8812950250174065 

 At row:133, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:133, column:89,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:89,the value of plot_cost is         : 3.9385778497657 

 At row:133, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:133, column:90,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:90,the value of plot_cost is         : 3.9966687349165064 

 At row:133, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:133, column:91,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:91,the value of plot_cost is         : 4.055567680469831 

 At row:133, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:133, column:92,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:92,the value of plot_cost is         : 4.115274686425668 

 At row:133, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:133, column:93,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:93,the value of plot_cost is         : 4.175789752784021 

 At row:133, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:133, column:94,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:94,the value of plot_cost is         : 4.23711287954489 

 At row:133, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:133, column:95,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:95,the value of plot_cost is         : 4.2992440667082725 

 At row:133, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:133, column:96,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:96,the value of plot_cost is         : 4.362183314274172 

 At row:133, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:133, column:97,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:97,the value of plot_cost is         : 4.425930622242585 

 At row:133, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:133, column:98,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:98,the value of plot_cost is         : 4.4904859906135135 

 At row:133, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:133, column:99,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:99,the value of plot_cost is         : 4.5558494193869565 

 At row:133, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:133, column:100,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:100,the value of plot_cost is         : 4.622020908562914 

 At row:133, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:133, column:101,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:101,the value of plot_cost is         : 4.689000458141389 

 At row:133, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:133, column:102,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:102,the value of plot_cost is         : 4.756788068122377 

 At row:133, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:133, column:103,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:103,the value of plot_cost is         : 4.825383738505882 

 At row:133, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:133, column:104,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:104,the value of plot_cost is         : 4.894787469291902 

 At row:133, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:133, column:105,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:105,the value of plot_cost is         : 4.964999260480435 

 At row:133, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:133, column:106,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:106,the value of plot_cost is         : 5.036019112071486 

 At row:133, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:133, column:107,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:107,the value of plot_cost is         : 5.107847024065051 

 At row:133, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:133, column:108,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:108,the value of plot_cost is         : 5.180482996461129 

 At row:133, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:133, column:109,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:109,the value of plot_cost is         : 5.253927029259724 

 At row:133, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:133, column:110,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:110,the value of plot_cost is         : 5.328179122460834 

 At row:133, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:133, column:111,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:111,the value of plot_cost is         : 5.403239276064458 

 At row:133, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:133, column:112,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:112,the value of plot_cost is         : 5.479107490070597 

 At row:133, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:133, column:113,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:113,the value of plot_cost is         : 5.555783764479252 

 At row:133, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:133, column:114,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:114,the value of plot_cost is         : 5.633268099290422 

 At row:133, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:133, column:115,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:115,the value of plot_cost is         : 5.711560494504108 

 At row:133, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:133, column:116,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:116,the value of plot_cost is         : 5.790660950120308 

 At row:133, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:133, column:117,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:117,the value of plot_cost is         : 5.870569466139022 

 At row:133, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:133, column:118,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:118,the value of plot_cost is         : 5.951286042560253 

 At row:133, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:133, column:119,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:119,the value of plot_cost is         : 6.032810679383999 

 At row:133, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:133, column:120,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:120,the value of plot_cost is         : 6.11514337661026 

 At row:133, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:133, column:121,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:121,the value of plot_cost is         : 6.198284134239035 

 At row:133, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:133, column:122,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:122,the value of plot_cost is         : 6.2822329522703235 

 At row:133, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:133, column:123,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:123,the value of plot_cost is         : 6.366989830704131 

 At row:133, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:133, column:124,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:124,the value of plot_cost is         : 6.452554769540451 

 At row:133, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:133, column:125,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:125,the value of plot_cost is         : 6.538927768779289 

 At row:133, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:133, column:126,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:126,the value of plot_cost is         : 6.626108828420638 

 At row:133, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:133, column:127,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:127,the value of plot_cost is         : 6.714097948464506 

 At row:133, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:133, column:128,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:128,the value of plot_cost is         : 6.802895128910886 

 At row:133, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:133, column:129,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:129,the value of plot_cost is         : 6.892500369759784 

 At row:133, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:133, column:130,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:130,the value of plot_cost is         : 6.982913671011195 

 At row:133, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:133, column:131,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:131,the value of plot_cost is         : 7.07413503266512 

 At row:133, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:133, column:132,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:132,the value of plot_cost is         : 7.166164454721561 

 At row:133, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:133, column:133,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:133,the value of plot_cost is         : 7.259001937180518 

 At row:133, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:133, column:134,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:134,the value of plot_cost is         : 7.352647480041991 

 At row:133, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:133, column:135,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:135,the value of plot_cost is         : 7.447101083305978 

 At row:133, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:133, column:136,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:136,the value of plot_cost is         : 7.542362746972479 

 At row:133, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:133, column:137,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:137,the value of plot_cost is         : 7.6384324710414955 

 At row:133, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:133, column:138,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:138,the value of plot_cost is         : 7.7353102555130295 

 At row:133, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:133, column:139,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:139,the value of plot_cost is         : 7.832996100387076 

 At row:133, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:133, column:140,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:140,the value of plot_cost is         : 7.931490005663639 

 At row:133, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:133, column:141,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:141,the value of plot_cost is         : 8.030791971342715 

 At row:133, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:133, column:142,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:142,the value of plot_cost is         : 8.130901997424306 

 At row:133, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:133, column:143,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:143,the value of plot_cost is         : 8.231820083908415 

 At row:133, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:133, column:144,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:144,the value of plot_cost is         : 8.333546230795038 

 At row:133, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:133, column:145,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:145,the value of plot_cost is         : 8.436080438084177 

 At row:133, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:133, column:146,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:146,the value of plot_cost is         : 8.539422705775827 

 At row:133, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:133, column:147,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:147,the value of plot_cost is         : 8.643573033869997 

 At row:133, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:133, column:148,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:148,the value of plot_cost is         : 8.748531422366678 

 At row:133, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:133, column:149,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:149,the value of plot_cost is         : 8.854297871265878 

 At row:133, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:133, column:150,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:150,the value of plot_cost is         : 8.960872380567592 

 At row:133, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:133, column:151,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:151,the value of plot_cost is         : 9.06825495027182 

 At row:133, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:133, column:152,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:152,the value of plot_cost is         : 9.17644558037856 

 At row:133, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:133, column:153,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:153,the value of plot_cost is         : 9.28544427088782 

 At row:133, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:133, column:154,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:154,the value of plot_cost is         : 9.395251021799595 

 At row:133, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:133, column:155,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:155,the value of plot_cost is         : 9.505865833113885 

 At row:133, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:133, column:156,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:156,the value of plot_cost is         : 9.617288704830688 

 At row:133, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:133, column:157,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:157,the value of plot_cost is         : 9.729519636950005 

 At row:133, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:133, column:158,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:158,the value of plot_cost is         : 9.842558629471839 

 At row:133, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:133, column:159,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:159,the value of plot_cost is         : 9.95640568239619 

 At row:133, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:133, column:160,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:160,the value of plot_cost is         : 10.071060795723055 

 At row:133, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:133, column:161,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:161,the value of plot_cost is         : 10.18652396945243 

 At row:133, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:133, column:162,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:162,the value of plot_cost is         : 10.302795203584324 

 At row:133, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:133, column:163,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:163,the value of plot_cost is         : 10.419874498118734 

 At row:133, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:133, column:164,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:164,the value of plot_cost is         : 10.53776185305566 

 At row:133, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:133, column:165,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:165,the value of plot_cost is         : 10.6564572683951 

 At row:133, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:133, column:166,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:166,the value of plot_cost is         : 10.775960744137056 

 At row:133, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:133, column:167,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:167,the value of plot_cost is         : 10.896272280281522 

 At row:133, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:133, column:168,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:168,the value of plot_cost is         : 11.017391876828507 

 At row:133, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:133, column:169,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:169,the value of plot_cost is         : 11.139319533778009 

 At row:133, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:133, column:170,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:170,the value of plot_cost is         : 11.262055251130024 

 At row:133, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:133, column:171,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:171,the value of plot_cost is         : 11.38559902888455 

 At row:133, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:133, column:172,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:172,the value of plot_cost is         : 11.509950867041596 

 At row:133, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:133, column:173,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:173,the value of plot_cost is         : 11.635110765601157 

 At row:133, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:133, column:174,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:174,the value of plot_cost is         : 11.76107872456323 

 At row:133, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:133, column:175,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:175,the value of plot_cost is         : 11.887854743927825 

 At row:133, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:133, column:176,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:176,the value of plot_cost is         : 12.015438823694929 

 At row:133, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:133, column:177,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:177,the value of plot_cost is         : 12.143830963864549 

 At row:133, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:133, column:178,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:178,the value of plot_cost is         : 12.273031164436683 

 At row:133, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:133, column:179,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:179,the value of plot_cost is         : 12.403039425411338 

 At row:133, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:133, column:180,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:180,the value of plot_cost is         : 12.5338557467885 

 At row:133, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:133, column:181,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:181,the value of plot_cost is         : 12.665480128568182 

 At row:133, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:133, column:182,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:182,the value of plot_cost is         : 12.797912570750375 

 At row:133, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:133, column:183,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:183,the value of plot_cost is         : 12.931153073335087 

 At row:133, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:133, column:184,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:184,the value of plot_cost is         : 13.065201636322316 

 At row:133, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:133, column:185,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:185,the value of plot_cost is         : 13.200058259712058 

 At row:133, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:133, column:186,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:186,the value of plot_cost is         : 13.335722943504315 

 At row:133, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:133, column:187,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:187,the value of plot_cost is         : 13.472195687699081 

 At row:133, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:133, column:188,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:188,the value of plot_cost is         : 13.60947649229637 

 At row:133, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:133, column:189,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:189,the value of plot_cost is         : 13.747565357296173 

 At row:133, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:133, column:190,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:190,the value of plot_cost is         : 13.88646228269849 

 At row:133, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:133, column:191,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:191,the value of plot_cost is         : 14.02616726850332 

 At row:133, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:133, column:192,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:192,the value of plot_cost is         : 14.166680314710664 

 At row:133, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:133, column:193,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:193,the value of plot_cost is         : 14.308001421320528 

 At row:133, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:133, column:194,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:194,the value of plot_cost is         : 14.450130588332907 

 At row:133, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:133, column:195,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:195,the value of plot_cost is         : 14.593067815747801 

 At row:133, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:133, column:196,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:196,the value of plot_cost is         : 14.736813103565208 

 At row:133, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:133, column:197,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:197,the value of plot_cost is         : 14.881366451785128 

 At row:133, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:133, column:198,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:198,the value of plot_cost is         : 15.026727860407565 

 At row:133, column:199,the value of plot_t0 is           : 3.0
 At row:133, column:199,the value of plot_t1 is           : 1.6733668341708543
 At row:133, column:199,the value of plot_cost is         : 15.172897329432516 

 At row:134, column:0,the value of plot_t0 is           : -1.0
 At row:134, column:0,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:0,the value of plot_cost is         : 2.046996179750152 

 At row:134, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:134, column:1,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:1,the value of plot_cost is         : 2.035847832125453 

 At row:134, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:134, column:2,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:2,the value of plot_cost is         : 2.025507544903269 

 At row:134, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:134, column:3,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:3,the value of plot_cost is         : 2.0159753180836 

 At row:134, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:134, column:4,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:4,the value of plot_cost is         : 2.007251151666446 

 At row:134, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:134, column:5,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:5,the value of plot_cost is         : 1.9993350456518069 

 At row:134, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:134, column:6,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:6,the value of plot_cost is         : 1.992227000039683 

 At row:134, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:134, column:7,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:7,the value of plot_cost is         : 1.9859270148300743 

 At row:134, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:134, column:8,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:8,the value of plot_cost is         : 1.9804350900229812 

 At row:134, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:134, column:9,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:9,the value of plot_cost is         : 1.9757512256184022 

 At row:134, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:134, column:10,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:10,the value of plot_cost is         : 1.971875421616339 

 At row:134, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:134, column:11,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:11,the value of plot_cost is         : 1.96880767801679 

 At row:134, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:134, column:12,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:12,the value of plot_cost is         : 1.966547994819757 

 At row:134, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:134, column:13,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:13,the value of plot_cost is         : 1.9650963720252395 

 At row:134, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:134, column:14,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:14,the value of plot_cost is         : 1.9644528096332365 

 At row:134, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:134, column:15,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:15,the value of plot_cost is         : 1.964617307643748 

 At row:134, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:134, column:16,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:16,the value of plot_cost is         : 1.9655898660567748 

 At row:134, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:134, column:17,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:17,the value of plot_cost is         : 1.9673704848723175 

 At row:134, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:134, column:18,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:18,the value of plot_cost is         : 1.969959164090375 

 At row:134, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:134, column:19,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:19,the value of plot_cost is         : 1.9733559037109476 

 At row:134, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:134, column:20,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:20,the value of plot_cost is         : 1.9775607037340341 

 At row:134, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:134, column:21,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:21,the value of plot_cost is         : 1.9825735641596367 

 At row:134, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:134, column:22,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:22,the value of plot_cost is         : 1.9883944849877544 

 At row:134, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:134, column:23,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:23,the value of plot_cost is         : 1.9950234662183877 

 At row:134, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:134, column:24,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:24,the value of plot_cost is         : 2.0024605078515356 

 At row:134, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:134, column:25,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:25,the value of plot_cost is         : 2.0107056098871983 

 At row:134, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:134, column:26,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:26,the value of plot_cost is         : 2.0197587723253756 

 At row:134, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:134, column:27,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:27,the value of plot_cost is         : 2.029619995166069 

 At row:134, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:134, column:28,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:28,the value of plot_cost is         : 2.0402892784092774 

 At row:134, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:134, column:29,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:29,the value of plot_cost is         : 2.0517666220550015 

 At row:134, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:134, column:30,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:30,the value of plot_cost is         : 2.064052026103239 

 At row:134, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:134, column:31,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:31,the value of plot_cost is         : 2.0771454905539923 

 At row:134, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:134, column:32,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:32,the value of plot_cost is         : 2.0910470154072605 

 At row:134, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:134, column:33,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:33,the value of plot_cost is         : 2.1057566006630446 

 At row:134, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:134, column:34,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:34,the value of plot_cost is         : 2.1212742463213434 

 At row:134, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:134, column:35,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:35,the value of plot_cost is         : 2.137599952382157 

 At row:134, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:134, column:36,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:36,the value of plot_cost is         : 2.154733718845485 

 At row:134, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:134, column:37,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:37,the value of plot_cost is         : 2.1726755457113294 

 At row:134, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:134, column:38,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:38,the value of plot_cost is         : 2.1914254329796896 

 At row:134, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:134, column:39,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:39,the value of plot_cost is         : 2.210983380650564 

 At row:134, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:134, column:40,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:40,the value of plot_cost is         : 2.2313493887239524 

 At row:134, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:134, column:41,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:41,the value of plot_cost is         : 2.2525234571998554 

 At row:134, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:134, column:42,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:42,the value of plot_cost is         : 2.2745055860782752 

 At row:134, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:134, column:43,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:43,the value of plot_cost is         : 2.2972957753592107 

 At row:134, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:134, column:44,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:44,the value of plot_cost is         : 2.320894025042661 

 At row:134, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:134, column:45,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:45,the value of plot_cost is         : 2.3453003351286243 

 At row:134, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:134, column:46,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:46,the value of plot_cost is         : 2.370514705617104 

 At row:134, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:134, column:47,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:47,the value of plot_cost is         : 2.396537136508099 

 At row:134, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:134, column:48,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:48,the value of plot_cost is         : 2.423367627801609 

 At row:134, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:134, column:49,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:49,the value of plot_cost is         : 2.4510061794976346 

 At row:134, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:134, column:50,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:50,the value of plot_cost is         : 2.479452791596174 

 At row:134, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:134, column:51,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:51,the value of plot_cost is         : 2.5087074640972284 

 At row:134, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:134, column:52,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:52,the value of plot_cost is         : 2.538770197000799 

 At row:134, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:134, column:53,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:53,the value of plot_cost is         : 2.569640990306885 

 At row:134, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:134, column:54,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:54,the value of plot_cost is         : 2.6013198440154865 

 At row:134, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:134, column:55,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:55,the value of plot_cost is         : 2.633806758126601 

 At row:134, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:134, column:56,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:56,the value of plot_cost is         : 2.6671017326402304 

 At row:134, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:134, column:57,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:57,the value of plot_cost is         : 2.701204767556378 

 At row:134, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:134, column:58,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:58,the value of plot_cost is         : 2.736115862875039 

 At row:134, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:134, column:59,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:59,the value of plot_cost is         : 2.7718350185962146 

 At row:134, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:134, column:60,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:60,the value of plot_cost is         : 2.808362234719905 

 At row:134, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:134, column:61,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:61,the value of plot_cost is         : 2.84569751124611 

 At row:134, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:134, column:62,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:62,the value of plot_cost is         : 2.883840848174832 

 At row:134, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:134, column:63,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:63,the value of plot_cost is         : 2.9227922455060686 

 At row:134, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:134, column:64,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:64,the value of plot_cost is         : 2.9625517032398205 

 At row:134, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:134, column:65,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:65,the value of plot_cost is         : 3.003119221376086 

 At row:134, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:134, column:66,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:66,the value of plot_cost is         : 3.0444947999148666 

 At row:134, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:134, column:67,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:67,the value of plot_cost is         : 3.086678438856165 

 At row:134, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:134, column:68,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:68,the value of plot_cost is         : 3.1296701381999767 

 At row:134, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:134, column:69,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:69,the value of plot_cost is         : 3.1734698979463034 

 At row:134, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:134, column:70,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:70,the value of plot_cost is         : 3.2180777180951443 

 At row:134, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:134, column:71,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:71,the value of plot_cost is         : 3.2634935986465003 

 At row:134, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:134, column:72,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:72,the value of plot_cost is         : 3.3097175396003733 

 At row:134, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:134, column:73,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:73,the value of plot_cost is         : 3.3567495409567614 

 At row:134, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:134, column:74,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:74,the value of plot_cost is         : 3.404589602715664 

 At row:134, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:134, column:75,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:75,the value of plot_cost is         : 3.45323772487708 

 At row:134, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:134, column:76,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:76,the value of plot_cost is         : 3.5026939074410115 

 At row:134, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:134, column:77,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:77,the value of plot_cost is         : 3.552958150407461 

 At row:134, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:134, column:78,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:78,the value of plot_cost is         : 3.6040304537764243 

 At row:134, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:134, column:79,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:79,the value of plot_cost is         : 3.655910817547901 

 At row:134, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:134, column:80,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:80,the value of plot_cost is         : 3.7085992417218927 

 At row:134, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:134, column:81,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:81,the value of plot_cost is         : 3.7620957262983996 

 At row:134, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:134, column:82,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:82,the value of plot_cost is         : 3.8164002712774234 

 At row:134, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:134, column:83,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:83,the value of plot_cost is         : 3.8715128766589633 

 At row:134, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:134, column:84,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:84,the value of plot_cost is         : 3.927433542443016 

 At row:134, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:134, column:85,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:85,the value of plot_cost is         : 3.984162268629583 

 At row:134, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:134, column:86,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:86,the value of plot_cost is         : 4.041699055218665 

 At row:134, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:134, column:87,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:87,the value of plot_cost is         : 4.100043902210266 

 At row:134, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:134, column:88,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:88,the value of plot_cost is         : 4.1591968096043805 

 At row:134, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:134, column:89,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:89,the value of plot_cost is         : 4.219157777401008 

 At row:134, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:134, column:90,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:90,the value of plot_cost is         : 4.27992680560015 

 At row:134, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:134, column:91,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:91,the value of plot_cost is         : 4.341503894201808 

 At row:134, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:134, column:92,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:92,the value of plot_cost is         : 4.403889043205982 

 At row:134, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:134, column:93,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:93,the value of plot_cost is         : 4.467082252612673 

 At row:134, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:134, column:94,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:94,the value of plot_cost is         : 4.531083522421876 

 At row:134, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:134, column:95,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:95,the value of plot_cost is         : 4.595892852633594 

 At row:134, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:134, column:96,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:96,the value of plot_cost is         : 4.661510243247827 

 At row:134, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:134, column:97,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:97,the value of plot_cost is         : 4.72793569426458 

 At row:134, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:134, column:98,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:98,the value of plot_cost is         : 4.795169205683844 

 At row:134, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:134, column:99,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:99,the value of plot_cost is         : 4.863210777505623 

 At row:134, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:134, column:100,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:100,the value of plot_cost is         : 4.9320604097299166 

 At row:134, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:134, column:101,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:101,the value of plot_cost is         : 5.001718102356725 

 At row:134, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:134, column:102,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:102,the value of plot_cost is         : 5.07218385538605 

 At row:134, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:134, column:103,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:103,the value of plot_cost is         : 5.1434576688178915 

 At row:134, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:134, column:104,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:104,the value of plot_cost is         : 5.215539542652246 

 At row:134, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:134, column:105,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:105,the value of plot_cost is         : 5.288429476889115 

 At row:134, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:134, column:106,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:106,the value of plot_cost is         : 5.362127471528498 

 At row:134, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:134, column:107,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:107,the value of plot_cost is         : 5.436633526570401 

 At row:134, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:134, column:108,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:108,the value of plot_cost is         : 5.5119476420148175 

 At row:134, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:134, column:109,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:109,the value of plot_cost is         : 5.588069817861746 

 At row:134, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:134, column:110,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:110,the value of plot_cost is         : 5.66500005411119 

 At row:134, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:134, column:111,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:111,the value of plot_cost is         : 5.742738350763149 

 At row:134, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:134, column:112,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:112,the value of plot_cost is         : 5.821284707817626 

 At row:134, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:134, column:113,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:113,the value of plot_cost is         : 5.90063912527462 

 At row:134, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:134, column:114,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:114,the value of plot_cost is         : 5.980801603134124 

 At row:134, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:134, column:115,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:115,the value of plot_cost is         : 6.061772141396144 

 At row:134, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:134, column:116,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:116,the value of plot_cost is         : 6.143550740060679 

 At row:134, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:134, column:117,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:117,the value of plot_cost is         : 6.226137399127732 

 At row:134, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:134, column:118,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:118,the value of plot_cost is         : 6.309532118597299 

 At row:134, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:134, column:119,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:119,the value of plot_cost is         : 6.393734898469379 

 At row:134, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:134, column:120,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:120,the value of plot_cost is         : 6.478745738743974 

 At row:134, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:134, column:121,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:121,the value of plot_cost is         : 6.564564639421084 

 At row:134, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:134, column:122,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:122,the value of plot_cost is         : 6.651191600500711 

 At row:134, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:134, column:123,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:123,the value of plot_cost is         : 6.738626621982856 

 At row:134, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:134, column:124,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:124,the value of plot_cost is         : 6.826869703867511 

 At row:134, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:134, column:125,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:125,the value of plot_cost is         : 6.91592084615468 

 At row:134, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:134, column:126,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:126,the value of plot_cost is         : 7.005780048844367 

 At row:134, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:134, column:127,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:127,the value of plot_cost is         : 7.096447311936573 

 At row:134, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:134, column:128,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:128,the value of plot_cost is         : 7.187922635431289 

 At row:134, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:134, column:129,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:129,the value of plot_cost is         : 7.280206019328521 

 At row:134, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:134, column:130,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:130,the value of plot_cost is         : 7.373297463628267 

 At row:134, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:134, column:131,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:131,the value of plot_cost is         : 7.467196968330527 

 At row:134, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:134, column:132,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:132,the value of plot_cost is         : 7.561904533435305 

 At row:134, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:134, column:133,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:133,the value of plot_cost is         : 7.657420158942601 

 At row:134, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:134, column:134,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:134,the value of plot_cost is         : 7.7537438448524085 

 At row:134, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:134, column:135,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:135,the value of plot_cost is         : 7.850875591164728 

 At row:134, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:134, column:136,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:136,the value of plot_cost is         : 7.948815397879565 

 At row:134, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:134, column:137,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:137,the value of plot_cost is         : 8.047563264996919 

 At row:134, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:134, column:138,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:138,the value of plot_cost is         : 8.14711919251679 

 At row:134, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:134, column:139,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:139,the value of plot_cost is         : 8.24748318043917 

 At row:134, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:134, column:140,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:140,the value of plot_cost is         : 8.348655228764068 

 At row:134, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:134, column:141,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:141,the value of plot_cost is         : 8.450635337491478 

 At row:134, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:134, column:142,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:142,the value of plot_cost is         : 8.553423506621408 

 At row:134, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:134, column:143,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:143,the value of plot_cost is         : 8.657019736153854 

 At row:134, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:134, column:144,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:144,the value of plot_cost is         : 8.761424026088811 

 At row:134, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:134, column:145,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:145,the value of plot_cost is         : 8.866636376426285 

 At row:134, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:134, column:146,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:146,the value of plot_cost is         : 8.97265678716627 

 At row:134, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:134, column:147,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:147,the value of plot_cost is         : 9.079485258308779 

 At row:134, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:134, column:148,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:148,the value of plot_cost is         : 9.187121789853798 

 At row:134, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:134, column:149,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:149,the value of plot_cost is         : 9.295566381801331 

 At row:134, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:134, column:150,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:150,the value of plot_cost is         : 9.404819034151378 

 At row:134, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:134, column:151,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:151,the value of plot_cost is         : 9.514879746903942 

 At row:134, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:134, column:152,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:152,the value of plot_cost is         : 9.62574852005902 

 At row:134, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:134, column:153,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:153,the value of plot_cost is         : 9.737425353616619 

 At row:134, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:134, column:154,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:154,the value of plot_cost is         : 9.849910247576725 

 At row:134, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:134, column:155,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:155,the value of plot_cost is         : 9.963203201939349 

 At row:134, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:134, column:156,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:156,the value of plot_cost is         : 10.077304216704492 

 At row:134, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:134, column:157,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:157,the value of plot_cost is         : 10.192213291872143 

 At row:134, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:134, column:158,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:158,the value of plot_cost is         : 10.307930427442315 

 At row:134, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:134, column:159,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:159,the value of plot_cost is         : 10.424455623415 

 At row:134, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:134, column:160,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:160,the value of plot_cost is         : 10.541788879790197 

 At row:134, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:134, column:161,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:161,the value of plot_cost is         : 10.659930196567913 

 At row:134, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:134, column:162,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:162,the value of plot_cost is         : 10.778879573748142 

 At row:134, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:134, column:163,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:163,the value of plot_cost is         : 10.898637011330889 

 At row:134, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:134, column:164,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:164,the value of plot_cost is         : 11.019202509316148 

 At row:134, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:134, column:165,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:165,the value of plot_cost is         : 11.14057606770392 

 At row:134, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:134, column:166,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:166,the value of plot_cost is         : 11.262757686494215 

 At row:134, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:134, column:167,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:167,the value of plot_cost is         : 11.385747365687019 

 At row:134, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:134, column:168,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:168,the value of plot_cost is         : 11.509545105282342 

 At row:134, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:134, column:169,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:169,the value of plot_cost is         : 11.634150905280174 

 At row:134, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:134, column:170,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:170,the value of plot_cost is         : 11.759564765680524 

 At row:134, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:134, column:171,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:171,the value of plot_cost is         : 11.885786686483392 

 At row:134, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:134, column:172,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:172,the value of plot_cost is         : 12.012816667688769 

 At row:134, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:134, column:173,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:173,the value of plot_cost is         : 12.140654709296669 

 At row:134, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:134, column:174,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:174,the value of plot_cost is         : 12.269300811307078 

 At row:134, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:134, column:175,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:175,the value of plot_cost is         : 12.398754973720003 

 At row:134, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:134, column:176,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:176,the value of plot_cost is         : 12.529017196535449 

 At row:134, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:134, column:177,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:177,the value of plot_cost is         : 12.660087479753402 

 At row:134, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:134, column:178,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:178,the value of plot_cost is         : 12.791965823373875 

 At row:134, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:134, column:179,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:179,the value of plot_cost is         : 12.924652227396862 

 At row:134, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:134, column:180,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:180,the value of plot_cost is         : 13.05814669182236 

 At row:134, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:134, column:181,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:181,the value of plot_cost is         : 13.192449216650378 

 At row:134, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:134, column:182,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:182,the value of plot_cost is         : 13.327559801880906 

 At row:134, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:134, column:183,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:183,the value of plot_cost is         : 13.463478447513957 

 At row:134, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:134, column:184,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:184,the value of plot_cost is         : 13.600205153549519 

 At row:134, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:134, column:185,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:185,the value of plot_cost is         : 13.737739919987595 

 At row:134, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:134, column:186,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:186,the value of plot_cost is         : 13.876082746828192 

 At row:134, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:134, column:187,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:187,the value of plot_cost is         : 14.015233634071297 

 At row:134, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:134, column:188,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:188,the value of plot_cost is         : 14.15519258171692 

 At row:134, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:134, column:189,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:189,the value of plot_cost is         : 14.295959589765054 

 At row:134, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:134, column:190,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:190,the value of plot_cost is         : 14.437534658215704 

 At row:134, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:134, column:191,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:191,the value of plot_cost is         : 14.579917787068872 

 At row:134, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:134, column:192,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:192,the value of plot_cost is         : 14.72310897632455 

 At row:134, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:134, column:193,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:193,the value of plot_cost is         : 14.867108225982758 

 At row:134, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:134, column:194,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:194,the value of plot_cost is         : 15.011915536043466 

 At row:134, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:134, column:195,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:195,the value of plot_cost is         : 15.157530906506695 

 At row:134, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:134, column:196,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:196,the value of plot_cost is         : 15.303954337372442 

 At row:134, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:134, column:197,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:197,the value of plot_cost is         : 15.4511858286407 

 At row:134, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:134, column:198,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:198,the value of plot_cost is         : 15.599225380311472 

 At row:134, column:199,the value of plot_t0 is           : 3.0
 At row:134, column:199,the value of plot_t1 is           : 1.6934673366834172
 At row:134, column:199,the value of plot_cost is         : 15.748072992384756 

 At row:135, column:0,the value of plot_t0 is           : -1.0
 At row:135, column:0,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:0,the value of plot_cost is         : 2.1018040309227413 

 At row:135, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:135, column:1,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:1,the value of plot_cost is         : 2.093333826346377 

 At row:135, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:135, column:2,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:2,the value of plot_cost is         : 2.085671682172529 

 At row:135, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:135, column:3,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:3,the value of plot_cost is         : 2.078817598401196 

 At row:135, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:135, column:4,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:4,the value of plot_cost is         : 2.072771575032378 

 At row:135, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:135, column:5,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:5,the value of plot_cost is         : 2.0675336120660748 

 At row:135, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:135, column:6,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:6,the value of plot_cost is         : 2.063103709502286 

 At row:135, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:135, column:7,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:7,the value of plot_cost is         : 2.059481867341013 

 At row:135, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:135, column:8,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:8,the value of plot_cost is         : 2.056668085582256 

 At row:135, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:135, column:9,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:9,the value of plot_cost is         : 2.0546623642260133 

 At row:135, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:135, column:10,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:10,the value of plot_cost is         : 2.0534647032722853 

 At row:135, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:135, column:11,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:11,the value of plot_cost is         : 2.053075102721072 

 At row:135, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:135, column:12,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:12,the value of plot_cost is         : 2.0534935625723745 

 At row:135, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:135, column:13,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:13,the value of plot_cost is         : 2.0547200828261922 

 At row:135, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:135, column:14,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:14,the value of plot_cost is         : 2.0567546634825256 

 At row:135, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:135, column:15,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:15,the value of plot_cost is         : 2.059597304541373 

 At row:135, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:135, column:16,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:16,the value of plot_cost is         : 2.0632480060027354 

 At row:135, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:135, column:17,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:17,the value of plot_cost is         : 2.0677067678666137 

 At row:135, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:135, column:18,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:18,the value of plot_cost is         : 2.072973590133007 

 At row:135, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:135, column:19,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:19,the value of plot_cost is         : 2.079048472801915 

 At row:135, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:135, column:20,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:20,the value of plot_cost is         : 2.0859314158733375 

 At row:135, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:135, column:21,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:21,the value of plot_cost is         : 2.0936224193472754 

 At row:135, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:135, column:22,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:22,the value of plot_cost is         : 2.10212148322373 

 At row:135, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:135, column:23,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:23,the value of plot_cost is         : 2.1114286075026985 

 At row:135, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:135, column:24,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:24,the value of plot_cost is         : 2.1215437921841818 

 At row:135, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:135, column:25,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:25,the value of plot_cost is         : 2.13246703726818 

 At row:135, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:135, column:26,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:26,the value of plot_cost is         : 2.1441983427546933 

 At row:135, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:135, column:27,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:27,the value of plot_cost is         : 2.156737708643722 

 At row:135, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:135, column:28,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:28,the value of plot_cost is         : 2.170085134935267 

 At row:135, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:135, column:29,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:29,the value of plot_cost is         : 2.184240621629326 

 At row:135, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:135, column:30,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:30,the value of plot_cost is         : 2.1992041687258994 

 At row:135, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:135, column:31,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:31,the value of plot_cost is         : 2.2149757762249886 

 At row:135, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:135, column:32,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:32,the value of plot_cost is         : 2.2315554441265926 

 At row:135, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:135, column:33,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:33,the value of plot_cost is         : 2.2489431724307125 

 At row:135, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:135, column:34,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:34,the value of plot_cost is         : 2.267138961137347 

 At row:135, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:135, column:35,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:35,the value of plot_cost is         : 2.2861428102464965 

 At row:135, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:135, column:36,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:36,the value of plot_cost is         : 2.30595471975816 

 At row:135, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:135, column:37,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:37,the value of plot_cost is         : 2.32657468967234 

 At row:135, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:135, column:38,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:38,the value of plot_cost is         : 2.348002719989036 

 At row:135, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:135, column:39,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:39,the value of plot_cost is         : 2.370238810708246 

 At row:135, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:135, column:40,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:40,the value of plot_cost is         : 2.39328296182997 

 At row:135, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:135, column:41,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:41,the value of plot_cost is         : 2.4171351733542097 

 At row:135, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:135, column:42,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:42,the value of plot_cost is         : 2.4417954452809645 

 At row:135, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:135, column:43,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:43,the value of plot_cost is         : 2.467263777610236 

 At row:135, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:135, column:44,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:44,the value of plot_cost is         : 2.4935401703420212 

 At row:135, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:135, column:45,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:45,the value of plot_cost is         : 2.5206246234763205 

 At row:135, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:135, column:46,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:46,the value of plot_cost is         : 2.5485171370131363 

 At row:135, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:135, column:47,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:47,the value of plot_cost is         : 2.5772177109524663 

 At row:135, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:135, column:48,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:48,the value of plot_cost is         : 2.6067263452943132 

 At row:135, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:135, column:49,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:49,the value of plot_cost is         : 2.6370430400386744 

 At row:135, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:135, column:50,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:50,the value of plot_cost is         : 2.6681677951855494 

 At row:135, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:135, column:51,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:51,the value of plot_cost is         : 2.70010061073494 

 At row:135, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:135, column:52,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:52,the value of plot_cost is         : 2.7328414866868473 

 At row:135, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:135, column:53,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:53,the value of plot_cost is         : 2.7663904230412677 

 At row:135, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:135, column:54,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:54,the value of plot_cost is         : 2.800747419798204 

 At row:135, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:135, column:55,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:55,the value of plot_cost is         : 2.8359124769576542 

 At row:135, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:135, column:56,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:56,the value of plot_cost is         : 2.87188559451962 

 At row:135, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:135, column:57,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:57,the value of plot_cost is         : 2.908666772484102 

 At row:135, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:135, column:58,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:58,the value of plot_cost is         : 2.9462560108510996 

 At row:135, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:135, column:59,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:59,the value of plot_cost is         : 2.9846533096206116 

 At row:135, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:135, column:60,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:60,the value of plot_cost is         : 3.023858668792637 

 At row:135, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:135, column:61,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:61,the value of plot_cost is         : 3.0638720883671784 

 At row:135, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:135, column:62,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:62,the value of plot_cost is         : 3.104693568344237 

 At row:135, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:135, column:63,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:63,the value of plot_cost is         : 3.1463231087238084 

 At row:135, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:135, column:64,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:64,the value of plot_cost is         : 3.188760709505896 

 At row:135, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:135, column:65,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:65,the value of plot_cost is         : 3.232006370690497 

 At row:135, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:135, column:66,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:66,the value of plot_cost is         : 3.2760600922776133 

 At row:135, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:135, column:67,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:67,the value of plot_cost is         : 3.320921874267246 

 At row:135, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:135, column:68,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:68,the value of plot_cost is         : 3.3665917166593946 

 At row:135, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:135, column:69,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:69,the value of plot_cost is         : 3.4130696194540575 

 At row:135, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:135, column:70,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:70,the value of plot_cost is         : 3.460355582651234 

 At row:135, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:135, column:71,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:71,the value of plot_cost is         : 3.508449606250926 

 At row:135, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:135, column:72,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:72,the value of plot_cost is         : 3.557351690253136 

 At row:135, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:135, column:73,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:73,the value of plot_cost is         : 3.6070618346578582 

 At row:135, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:135, column:74,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:74,the value of plot_cost is         : 3.6575800394650964 

 At row:135, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:135, column:75,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:75,the value of plot_cost is         : 3.7089063046748483 

 At row:135, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:135, column:76,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:76,the value of plot_cost is         : 3.761040630287116 

 At row:135, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:135, column:77,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:77,the value of plot_cost is         : 3.813983016301899 

 At row:135, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:135, column:78,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:78,the value of plot_cost is         : 3.8677334627191997 

 At row:135, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:135, column:79,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:79,the value of plot_cost is         : 3.922291969539012 

 At row:135, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:135, column:80,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:80,the value of plot_cost is         : 3.9776585367613397 

 At row:135, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:135, column:81,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:81,the value of plot_cost is         : 4.0338331643861824 

 At row:135, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:135, column:82,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:82,the value of plot_cost is         : 4.090815852413543 

 At row:135, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:135, column:83,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:83,the value of plot_cost is         : 4.148606600843418 

 At row:135, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:135, column:84,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:84,the value of plot_cost is         : 4.207205409675805 

 At row:135, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:135, column:85,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:85,the value of plot_cost is         : 4.266612278910708 

 At row:135, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:135, column:86,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:86,the value of plot_cost is         : 4.326827208548126 

 At row:135, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:135, column:87,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:87,the value of plot_cost is         : 4.387850198588061 

 At row:135, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:135, column:88,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:88,the value of plot_cost is         : 4.449681249030513 

 At row:135, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:135, column:89,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:89,the value of plot_cost is         : 4.512320359875476 

 At row:135, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:135, column:90,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:90,the value of plot_cost is         : 4.5757675311229535 

 At row:135, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:135, column:91,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:91,the value of plot_cost is         : 4.640022762772947 

 At row:135, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:135, column:92,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:92,the value of plot_cost is         : 4.70508605482546 

 At row:135, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:135, column:93,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:93,the value of plot_cost is         : 4.770957407280485 

 At row:135, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:135, column:94,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:94,the value of plot_cost is         : 4.837636820138024 

 At row:135, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:135, column:95,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:95,the value of plot_cost is         : 4.905124293398077 

 At row:135, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:135, column:96,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:96,the value of plot_cost is         : 4.9734198270606464 

 At row:135, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:135, column:97,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:97,the value of plot_cost is         : 5.042523421125732 

 At row:135, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:135, column:98,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:98,the value of plot_cost is         : 5.112435075593334 

 At row:135, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:135, column:99,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:99,the value of plot_cost is         : 5.1831547904634485 

 At row:135, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:135, column:100,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:100,the value of plot_cost is         : 5.254682565736077 

 At row:135, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:135, column:101,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:101,the value of plot_cost is         : 5.327018401411222 

 At row:135, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:135, column:102,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:102,the value of plot_cost is         : 5.400162297488884 

 At row:135, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:135, column:103,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:103,the value of plot_cost is         : 5.47411425396906 

 At row:135, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:135, column:104,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:104,the value of plot_cost is         : 5.5488742708517504 

 At row:135, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:135, column:105,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:105,the value of plot_cost is         : 5.624442348136955 

 At row:135, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:135, column:106,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:106,the value of plot_cost is         : 5.7008184858246755 

 At row:135, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:135, column:107,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:107,the value of plot_cost is         : 5.778002683914911 

 At row:135, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:135, column:108,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:108,the value of plot_cost is         : 5.855994942407665 

 At row:135, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:135, column:109,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:109,the value of plot_cost is         : 5.934795261302929 

 At row:135, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:135, column:110,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:110,the value of plot_cost is         : 6.014403640600709 

 At row:135, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:135, column:111,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:111,the value of plot_cost is         : 6.094820080301005 

 At row:135, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:135, column:112,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:112,the value of plot_cost is         : 6.176044580403819 

 At row:135, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:135, column:113,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:113,the value of plot_cost is         : 6.258077140909146 

 At row:135, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:135, column:114,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:114,the value of plot_cost is         : 6.340917761816986 

 At row:135, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:135, column:115,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:115,the value of plot_cost is         : 6.424566443127342 

 At row:135, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:135, column:116,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:116,the value of plot_cost is         : 6.5090231848402125 

 At row:135, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:135, column:117,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:117,the value of plot_cost is         : 6.594287986955598 

 At row:135, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:135, column:118,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:118,the value of plot_cost is         : 6.680360849473503 

 At row:135, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:135, column:119,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:119,the value of plot_cost is         : 6.76724177239392 

 At row:135, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:135, column:120,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:120,the value of plot_cost is         : 6.85493075571685 

 At row:135, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:135, column:121,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:121,the value of plot_cost is         : 6.943427799442295 

 At row:135, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:135, column:122,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:122,the value of plot_cost is         : 7.032732903570261 

 At row:135, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:135, column:123,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:123,the value of plot_cost is         : 7.122846068100738 

 At row:135, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:135, column:124,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:124,the value of plot_cost is         : 7.2137672930337295 

 At row:135, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:135, column:125,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:125,the value of plot_cost is         : 7.305496578369238 

 At row:135, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:135, column:126,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:126,the value of plot_cost is         : 7.398033924107257 

 At row:135, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:135, column:127,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:127,the value of plot_cost is         : 7.491379330247796 

 At row:135, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:135, column:128,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:128,the value of plot_cost is         : 7.585532796790852 

 At row:135, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:135, column:129,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:129,the value of plot_cost is         : 7.680494323736419 

 At row:135, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:135, column:130,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:130,the value of plot_cost is         : 7.7762639110845 

 At row:135, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:135, column:131,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:131,the value of plot_cost is         : 7.872841558835097 

 At row:135, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:135, column:132,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:132,the value of plot_cost is         : 7.970227266988212 

 At row:135, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:135, column:133,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:133,the value of plot_cost is         : 8.06842103554384 

 At row:135, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:135, column:134,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:134,the value of plot_cost is         : 8.167422864501985 

 At row:135, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:135, column:135,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:135,the value of plot_cost is         : 8.267232753862642 

 At row:135, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:135, column:136,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:136,the value of plot_cost is         : 8.367850703625813 

 At row:135, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:135, column:137,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:137,the value of plot_cost is         : 8.469276713791501 

 At row:135, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:135, column:138,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:138,the value of plot_cost is         : 8.571510784359708 

 At row:135, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:135, column:139,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:139,the value of plot_cost is         : 8.674552915330425 

 At row:135, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:135, column:140,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:140,the value of plot_cost is         : 8.778403106703658 

 At row:135, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:135, column:141,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:141,the value of plot_cost is         : 8.883061358479404 

 At row:135, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:135, column:142,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:142,the value of plot_cost is         : 8.988527670657675 

 At row:135, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:135, column:143,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:143,the value of plot_cost is         : 9.094802043238452 

 At row:135, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:135, column:144,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:144,the value of plot_cost is         : 9.201884476221744 

 At row:135, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:135, column:145,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:145,the value of plot_cost is         : 9.309774969607552 

 At row:135, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:135, column:146,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:146,the value of plot_cost is         : 9.418473523395877 

 At row:135, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:135, column:147,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:147,the value of plot_cost is         : 9.527980137586715 

 At row:135, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:135, column:148,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:148,the value of plot_cost is         : 9.638294812180073 

 At row:135, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:135, column:149,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:149,the value of plot_cost is         : 9.749417547175941 

 At row:135, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:135, column:150,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:150,the value of plot_cost is         : 9.861348342574326 

 At row:135, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:135, column:151,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:151,the value of plot_cost is         : 9.97408719837523 

 At row:135, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:135, column:152,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:152,the value of plot_cost is         : 10.087634114578641 

 At row:135, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:135, column:153,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:153,the value of plot_cost is         : 10.201989091184572 

 At row:135, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:135, column:154,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:154,the value of plot_cost is         : 10.317152128193015 

 At row:135, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:135, column:155,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:155,the value of plot_cost is         : 10.433123225603973 

 At row:135, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:135, column:156,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:156,the value of plot_cost is         : 10.549902383417452 

 At row:135, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:135, column:157,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:157,the value of plot_cost is         : 10.66748960163344 

 At row:135, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:135, column:158,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:158,the value of plot_cost is         : 10.785884880251947 

 At row:135, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:135, column:159,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:159,the value of plot_cost is         : 10.905088219272967 

 At row:135, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:135, column:160,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:160,the value of plot_cost is         : 11.025099618696503 

 At row:135, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:135, column:161,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:161,the value of plot_cost is         : 11.145919078522557 

 At row:135, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:135, column:162,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:162,the value of plot_cost is         : 11.26754659875112 

 At row:135, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:135, column:163,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:163,the value of plot_cost is         : 11.389982179382201 

 At row:135, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:135, column:164,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:164,the value of plot_cost is         : 11.513225820415794 

 At row:135, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:135, column:165,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:165,the value of plot_cost is         : 11.637277521851905 

 At row:135, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:135, column:166,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:166,the value of plot_cost is         : 11.762137283690532 

 At row:135, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:135, column:167,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:167,the value of plot_cost is         : 11.88780510593167 

 At row:135, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:135, column:168,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:168,the value of plot_cost is         : 12.01428098857533 

 At row:135, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:135, column:169,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:169,the value of plot_cost is         : 12.141564931621502 

 At row:135, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:135, column:170,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:170,the value of plot_cost is         : 12.269656935070184 

 At row:135, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:135, column:171,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:171,the value of plot_cost is         : 12.39855699892139 

 At row:135, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:135, column:172,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:172,the value of plot_cost is         : 12.528265123175107 

 At row:135, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:135, column:173,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:173,the value of plot_cost is         : 12.658781307831337 

 At row:135, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:135, column:174,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:174,the value of plot_cost is         : 12.790105552890083 

 At row:135, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:135, column:175,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:175,the value of plot_cost is         : 12.922237858351345 

 At row:135, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:135, column:176,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:176,the value of plot_cost is         : 13.05517822421512 

 At row:135, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:135, column:177,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:177,the value of plot_cost is         : 13.188926650481411 

 At row:135, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:135, column:178,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:178,the value of plot_cost is         : 13.323483137150223 

 At row:135, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:135, column:179,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:179,the value of plot_cost is         : 13.458847684221544 

 At row:135, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:135, column:180,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:180,the value of plot_cost is         : 13.595020291695379 

 At row:135, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:135, column:181,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:181,the value of plot_cost is         : 13.732000959571737 

 At row:135, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:135, column:182,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:182,the value of plot_cost is         : 13.869789687850602 

 At row:135, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:135, column:183,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:183,the value of plot_cost is         : 14.008386476531983 

 At row:135, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:135, column:184,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:184,the value of plot_cost is         : 14.14779132561588 

 At row:135, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:135, column:185,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:185,the value of plot_cost is         : 14.288004235102292 

 At row:135, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:135, column:186,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:186,the value of plot_cost is         : 14.429025204991222 

 At row:135, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:135, column:187,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:187,the value of plot_cost is         : 14.570854235282662 

 At row:135, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:135, column:188,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:188,the value of plot_cost is         : 14.713491325976623 

 At row:135, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:135, column:189,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:189,the value of plot_cost is         : 14.856936477073095 

 At row:135, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:135, column:190,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:190,the value of plot_cost is         : 15.001189688572083 

 At row:135, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:135, column:191,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:191,the value of plot_cost is         : 15.14625096047359 

 At row:135, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:135, column:192,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:192,the value of plot_cost is         : 15.292120292777607 

 At row:135, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:135, column:193,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:193,the value of plot_cost is         : 15.43879768548414 

 At row:135, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:135, column:194,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:194,the value of plot_cost is         : 15.586283138593188 

 At row:135, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:135, column:195,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:195,the value of plot_cost is         : 15.73457665210475 

 At row:135, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:135, column:196,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:196,the value of plot_cost is         : 15.883678226018827 

 At row:135, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:135, column:197,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:197,the value of plot_cost is         : 16.033587860335427 

 At row:135, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:135, column:198,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:198,the value of plot_cost is         : 16.184305555054532 

 At row:135, column:199,the value of plot_t0 is           : 3.0
 At row:135, column:199,the value of plot_t1 is           : 1.71356783919598
 At row:135, column:199,the value of plot_cost is         : 16.335831310176157 

 At row:136, column:0,the value of plot_t0 is           : -1.0
 At row:136, column:0,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:0,the value of plot_cost is         : 2.169194536934493 

 At row:136, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:136, column:1,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:1,the value of plot_cost is         : 2.1634024754064645 

 At row:136, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:136, column:2,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:2,the value of plot_cost is         : 2.158418474280952 

 At row:136, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:136, column:3,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:3,the value of plot_cost is         : 2.1542425335579547 

 At row:136, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:136, column:4,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:4,the value of plot_cost is         : 2.1508746532374725 

 At row:136, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:136, column:5,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:5,the value of plot_cost is         : 2.1483148333195046 

 At row:136, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:136, column:6,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:6,the value of plot_cost is         : 2.1465630738040518 

 At row:136, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:136, column:7,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:7,the value of plot_cost is         : 2.145619374691115 

 At row:136, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:136, column:8,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:8,the value of plot_cost is         : 2.1454837359806933 

 At row:136, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:136, column:9,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:9,the value of plot_cost is         : 2.1461561576727863 

 At row:136, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:136, column:10,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:10,the value of plot_cost is         : 2.1476366397673936 

 At row:136, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:136, column:11,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:11,the value of plot_cost is         : 2.1499251822645173 

 At row:136, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:136, column:12,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:12,the value of plot_cost is         : 2.153021785164155 

 At row:136, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:136, column:13,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:13,the value of plot_cost is         : 2.1569264484663084 

 At row:136, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:136, column:14,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:14,the value of plot_cost is         : 2.1616391721709767 

 At row:136, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:136, column:15,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:15,the value of plot_cost is         : 2.16715995627816 

 At row:136, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:136, column:16,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:16,the value of plot_cost is         : 2.1734888007878586 

 At row:136, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:136, column:17,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:17,the value of plot_cost is         : 2.1806257057000717 

 At row:136, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:136, column:18,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:18,the value of plot_cost is         : 2.188570671014801 

 At row:136, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:136, column:19,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:19,the value of plot_cost is         : 2.197323696732045 

 At row:136, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:136, column:20,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:20,the value of plot_cost is         : 2.206884782851803 

 At row:136, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:136, column:21,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:21,the value of plot_cost is         : 2.2172539293740776 

 At row:136, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:136, column:22,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:22,the value of plot_cost is         : 2.228431136298866 

 At row:136, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:136, column:23,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:23,the value of plot_cost is         : 2.240416403626171 

 At row:136, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:136, column:24,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:24,the value of plot_cost is         : 2.2532097313559896 

 At row:136, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:136, column:25,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:25,the value of plot_cost is         : 2.266811119488324 

 At row:136, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:136, column:26,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:26,the value of plot_cost is         : 2.281220568023173 

 At row:136, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:136, column:27,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:27,the value of plot_cost is         : 2.2964380769605377 

 At row:136, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:136, column:28,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:28,the value of plot_cost is         : 2.3124636463004173 

 At row:136, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:136, column:29,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:29,the value of plot_cost is         : 2.3292972760428126 

 At row:136, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:136, column:30,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:30,the value of plot_cost is         : 2.346938966187722 

 At row:136, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:136, column:31,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:31,the value of plot_cost is         : 2.365388716735147 

 At row:136, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:136, column:32,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:32,the value of plot_cost is         : 2.384646527685086 

 At row:136, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:136, column:33,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:33,the value of plot_cost is         : 2.404712399037542 

 At row:136, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:136, column:34,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:34,the value of plot_cost is         : 2.4255863307925125 

 At row:136, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:136, column:35,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:35,the value of plot_cost is         : 2.4472683229499967 

 At row:136, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:136, column:36,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:36,the value of plot_cost is         : 2.469758375509997 

 At row:136, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:136, column:37,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:37,the value of plot_cost is         : 2.4930564884725124 

 At row:136, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:136, column:38,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:38,the value of plot_cost is         : 2.5171626618375433 

 At row:136, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:136, column:39,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:39,the value of plot_cost is         : 2.542076895605089 

 At row:136, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:136, column:40,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:40,the value of plot_cost is         : 2.567799189775149 

 At row:136, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:136, column:41,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:41,the value of plot_cost is         : 2.5943295443477243 

 At row:136, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:136, column:42,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:42,the value of plot_cost is         : 2.621667959322815 

 At row:136, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:136, column:43,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:43,the value of plot_cost is         : 2.6498144347004216 

 At row:136, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:136, column:44,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:44,the value of plot_cost is         : 2.6787689704805433 

 At row:136, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:136, column:45,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:45,the value of plot_cost is         : 2.708531566663179 

 At row:136, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:136, column:46,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:46,the value of plot_cost is         : 2.7391022232483295 

 At row:136, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:136, column:47,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:47,the value of plot_cost is         : 2.7704809402359953 

 At row:136, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:136, column:48,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:48,the value of plot_cost is         : 2.802667717626177 

 At row:136, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:136, column:49,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:49,the value of plot_cost is         : 2.835662555418874 

 At row:136, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:136, column:50,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:50,the value of plot_cost is         : 2.869465453614085 

 At row:136, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:136, column:51,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:51,the value of plot_cost is         : 2.904076412211812 

 At row:136, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:136, column:52,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:52,the value of plot_cost is         : 2.9394954312120545 

 At row:136, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:136, column:53,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:53,the value of plot_cost is         : 2.97572251061481 

 At row:136, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:136, column:54,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:54,the value of plot_cost is         : 3.0127576504200824 

 At row:136, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:136, column:55,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:55,the value of plot_cost is         : 3.0506008506278683 

 At row:136, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:136, column:56,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:56,the value of plot_cost is         : 3.0892521112381712 

 At row:136, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:136, column:57,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:57,the value of plot_cost is         : 3.128711432250987 

 At row:136, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:136, column:58,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:58,the value of plot_cost is         : 3.168978813666321 

 At row:136, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:136, column:59,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:59,the value of plot_cost is         : 3.210054255484168 

 At row:136, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:136, column:60,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:60,the value of plot_cost is         : 3.2519377577045296 

 At row:136, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:136, column:61,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:61,the value of plot_cost is         : 3.2946293203274073 

 At row:136, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:136, column:62,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:62,the value of plot_cost is         : 3.338128943352801 

 At row:136, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:136, column:63,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:63,the value of plot_cost is         : 3.382436626780708 

 At row:136, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:136, column:64,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:64,the value of plot_cost is         : 3.4275523706111315 

 At row:136, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:136, column:65,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:65,the value of plot_cost is         : 3.473476174844068 

 At row:136, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:136, column:66,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:66,the value of plot_cost is         : 3.520208039479521 

 At row:136, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:136, column:67,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:67,the value of plot_cost is         : 3.567747964517488 

 At row:136, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:136, column:68,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:68,the value of plot_cost is         : 3.6160959499579723 

 At row:136, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:136, column:69,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:69,the value of plot_cost is         : 3.6652519958009706 

 At row:136, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:136, column:70,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:70,the value of plot_cost is         : 3.7152161020464836 

 At row:136, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:136, column:71,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:71,the value of plot_cost is         : 3.7659882686945116 

 At row:136, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:136, column:72,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:72,the value of plot_cost is         : 3.817568495745056 

 At row:136, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:136, column:73,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:73,the value of plot_cost is         : 3.869956783198114 

 At row:136, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:136, column:74,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:74,the value of plot_cost is         : 3.923153131053688 

 At row:136, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:136, column:75,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:75,the value of plot_cost is         : 3.977157539311776 

 At row:136, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:136, column:76,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:76,the value of plot_cost is         : 4.03197000797238 

 At row:136, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:136, column:77,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:77,the value of plot_cost is         : 4.087590537035498 

 At row:136, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:136, column:78,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:78,the value of plot_cost is         : 4.144019126501132 

 At row:136, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:136, column:79,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:79,the value of plot_cost is         : 4.201255776369282 

 At row:136, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:136, column:80,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:80,the value of plot_cost is         : 4.259300486639945 

 At row:136, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:136, column:81,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:81,the value of plot_cost is         : 4.318153257313125 

 At row:136, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:136, column:82,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:82,the value of plot_cost is         : 4.377814088388821 

 At row:136, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:136, column:83,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:83,the value of plot_cost is         : 4.438282979867029 

 At row:136, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:136, column:84,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:84,the value of plot_cost is         : 4.499559931747754 

 At row:136, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:136, column:85,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:85,the value of plot_cost is         : 4.561644944030992 

 At row:136, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:136, column:86,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:86,the value of plot_cost is         : 4.624538016716747 

 At row:136, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:136, column:87,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:87,the value of plot_cost is         : 4.688239149805017 

 At row:136, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:136, column:88,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:88,the value of plot_cost is         : 4.752748343295802 

 At row:136, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:136, column:89,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:89,the value of plot_cost is         : 4.818065597189103 

 At row:136, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:136, column:90,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:90,the value of plot_cost is         : 4.884190911484917 

 At row:136, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:136, column:91,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:91,the value of plot_cost is         : 4.951124286183247 

 At row:136, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:136, column:92,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:92,the value of plot_cost is         : 5.018865721284094 

 At row:136, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:136, column:93,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:93,the value of plot_cost is         : 5.087415216787453 

 At row:136, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:136, column:94,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:94,the value of plot_cost is         : 5.156772772693329 

 At row:136, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:136, column:95,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:95,the value of plot_cost is         : 5.2269383890017185 

 At row:136, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:136, column:96,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:96,the value of plot_cost is         : 5.297912065712625 

 At row:136, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:136, column:97,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:97,the value of plot_cost is         : 5.369693802826044 

 At row:136, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:136, column:98,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:98,the value of plot_cost is         : 5.442283600341981 

 At row:136, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:136, column:99,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:99,the value of plot_cost is         : 5.515681458260431 

 At row:136, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:136, column:100,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:100,the value of plot_cost is         : 5.589887376581397 

 At row:136, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:136, column:101,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:101,the value of plot_cost is         : 5.664901355304878 

 At row:136, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:136, column:102,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:102,the value of plot_cost is         : 5.7407233944308755 

 At row:136, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:136, column:103,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:103,the value of plot_cost is         : 5.817353493959385 

 At row:136, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:136, column:104,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:104,the value of plot_cost is         : 5.894791653890412 

 At row:136, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:136, column:105,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:105,the value of plot_cost is         : 5.973037874223952 

 At row:136, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:136, column:106,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:106,the value of plot_cost is         : 6.052092154960009 

 At row:136, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:136, column:107,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:107,the value of plot_cost is         : 6.13195449609858 

 At row:136, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:136, column:108,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:108,the value of plot_cost is         : 6.212624897639668 

 At row:136, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:136, column:109,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:109,the value of plot_cost is         : 6.2941033595832705 

 At row:136, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:136, column:110,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:110,the value of plot_cost is         : 6.376389881929388 

 At row:136, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:136, column:111,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:111,the value of plot_cost is         : 6.459484464678018 

 At row:136, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:136, column:112,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:112,the value of plot_cost is         : 6.543387107829167 

 At row:136, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:136, column:113,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:113,the value of plot_cost is         : 6.628097811382827 

 At row:136, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:136, column:114,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:114,the value of plot_cost is         : 6.713616575339005 

 At row:136, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:136, column:115,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:115,the value of plot_cost is         : 6.799943399697698 

 At row:136, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:136, column:116,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:116,the value of plot_cost is         : 6.887078284458904 

 At row:136, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:136, column:117,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:117,the value of plot_cost is         : 6.975021229622624 

 At row:136, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:136, column:118,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:118,the value of plot_cost is         : 7.063772235188864 

 At row:136, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:136, column:119,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:119,the value of plot_cost is         : 7.153331301157618 

 At row:136, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:136, column:120,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:120,the value of plot_cost is         : 7.243698427528885 

 At row:136, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:136, column:121,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:121,the value of plot_cost is         : 7.3348736143026665 

 At row:136, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:136, column:122,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:122,the value of plot_cost is         : 7.426856861478965 

 At row:136, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:136, column:123,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:123,the value of plot_cost is         : 7.519648169057777 

 At row:136, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:136, column:124,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:124,the value of plot_cost is         : 7.613247537039105 

 At row:136, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:136, column:125,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:125,the value of plot_cost is         : 7.707654965422949 

 At row:136, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:136, column:126,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:126,the value of plot_cost is         : 7.802870454209306 

 At row:136, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:136, column:127,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:127,the value of plot_cost is         : 7.898894003398179 

 At row:136, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:136, column:128,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:128,the value of plot_cost is         : 7.9957256129895695 

 At row:136, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:136, column:129,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:129,the value of plot_cost is         : 8.093365282983472 

 At row:136, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:136, column:130,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:130,the value of plot_cost is         : 8.19181301337989 

 At row:136, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:136, column:131,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:131,the value of plot_cost is         : 8.291068804178822 

 At row:136, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:136, column:132,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:132,the value of plot_cost is         : 8.391132655380275 

 At row:136, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:136, column:133,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:133,the value of plot_cost is         : 8.492004566984237 

 At row:136, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:136, column:134,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:134,the value of plot_cost is         : 8.593684538990715 

 At row:136, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:136, column:135,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:135,the value of plot_cost is         : 8.696172571399712 

 At row:136, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:136, column:136,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:136,the value of plot_cost is         : 8.799468664211219 

 At row:136, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:136, column:137,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:137,the value of plot_cost is         : 8.90357281742524 

 At row:136, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:136, column:138,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:138,the value of plot_cost is         : 9.008485031041781 

 At row:136, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:136, column:139,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:139,the value of plot_cost is         : 9.114205305060837 

 At row:136, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:136, column:140,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:140,the value of plot_cost is         : 9.220733639482408 

 At row:136, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:136, column:141,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:141,the value of plot_cost is         : 9.32807003430649 

 At row:136, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:136, column:142,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:142,the value of plot_cost is         : 9.436214489533091 

 At row:136, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:136, column:143,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:143,the value of plot_cost is         : 9.545167005162204 

 At row:136, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:136, column:144,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:144,the value of plot_cost is         : 9.654927581193833 

 At row:136, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:136, column:145,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:145,the value of plot_cost is         : 9.765496217627978 

 At row:136, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:136, column:146,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:146,the value of plot_cost is         : 9.87687291446464 

 At row:136, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:136, column:147,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:147,the value of plot_cost is         : 9.98905767170381 

 At row:136, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:136, column:148,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:148,the value of plot_cost is         : 10.102050489345503 

 At row:136, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:136, column:149,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:149,the value of plot_cost is         : 10.21585136738971 

 At row:136, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:136, column:150,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:150,the value of plot_cost is         : 10.33046030583643 

 At row:136, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:136, column:151,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:151,the value of plot_cost is         : 10.445877304685668 

 At row:136, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:136, column:152,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:152,the value of plot_cost is         : 10.562102363937417 

 At row:136, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:136, column:153,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:153,the value of plot_cost is         : 10.67913548359168 

 At row:136, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:136, column:154,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:154,the value of plot_cost is         : 10.796976663648463 

 At row:136, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:136, column:155,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:155,the value of plot_cost is         : 10.915625904107758 

 At row:136, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:136, column:156,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:156,the value of plot_cost is         : 11.035083204969569 

 At row:136, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:136, column:157,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:157,the value of plot_cost is         : 11.15534856623389 

 At row:136, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:136, column:158,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:158,the value of plot_cost is         : 11.276421987900735 

 At row:136, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:136, column:159,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:159,the value of plot_cost is         : 11.398303469970092 

 At row:136, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:136, column:160,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:160,the value of plot_cost is         : 11.520993012441965 

 At row:136, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:136, column:161,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:161,the value of plot_cost is         : 11.644490615316352 

 At row:136, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:136, column:162,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:162,the value of plot_cost is         : 11.76879627859325 

 At row:136, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:136, column:163,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:163,the value of plot_cost is         : 11.893910002272666 

 At row:136, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:136, column:164,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:164,the value of plot_cost is         : 12.019831786354597 

 At row:136, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:136, column:165,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:165,the value of plot_cost is         : 12.146561630839045 

 At row:136, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:136, column:166,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:166,the value of plot_cost is         : 12.274099535726004 

 At row:136, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:136, column:167,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:167,the value of plot_cost is         : 12.402445501015482 

 At row:136, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:136, column:168,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:168,the value of plot_cost is         : 12.531599526707474 

 At row:136, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:136, column:169,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:169,the value of plot_cost is         : 12.661561612801984 

 At row:136, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:136, column:170,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:170,the value of plot_cost is         : 12.792331759299005 

 At row:136, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:136, column:171,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:171,the value of plot_cost is         : 12.923909966198543 

 At row:136, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:136, column:172,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:172,the value of plot_cost is         : 13.056296233500595 

 At row:136, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:136, column:173,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:173,the value of plot_cost is         : 13.189490561205162 

 At row:136, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:136, column:174,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:174,the value of plot_cost is         : 13.323492949312243 

 At row:136, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:136, column:175,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:175,the value of plot_cost is         : 13.458303397821842 

 At row:136, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:136, column:176,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:176,the value of plot_cost is         : 13.59392190673395 

 At row:136, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:136, column:177,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:177,the value of plot_cost is         : 13.730348476048578 

 At row:136, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:136, column:178,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:178,the value of plot_cost is         : 13.867583105765723 

 At row:136, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:136, column:179,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:179,the value of plot_cost is         : 14.005625795885386 

 At row:136, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:136, column:180,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:180,the value of plot_cost is         : 14.144476546407555 

 At row:136, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:136, column:181,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:181,the value of plot_cost is         : 14.284135357332246 

 At row:136, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:136, column:182,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:182,the value of plot_cost is         : 14.424602228659445 

 At row:136, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:136, column:183,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:183,the value of plot_cost is         : 14.565877160389164 

 At row:136, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:136, column:184,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:184,the value of plot_cost is         : 14.707960152521395 

 At row:136, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:136, column:185,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:185,the value of plot_cost is         : 14.850851205056147 

 At row:136, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:136, column:186,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:186,the value of plot_cost is         : 14.994550317993408 

 At row:136, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:136, column:187,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:187,the value of plot_cost is         : 15.139057491333183 

 At row:136, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:136, column:188,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:188,the value of plot_cost is         : 15.28437272507548 

 At row:136, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:136, column:189,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:189,the value of plot_cost is         : 15.430496019220293 

 At row:136, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:136, column:190,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:190,the value of plot_cost is         : 15.577427373767614 

 At row:136, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:136, column:191,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:191,the value of plot_cost is         : 15.725166788717456 

 At row:136, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:136, column:192,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:192,the value of plot_cost is         : 15.873714264069807 

 At row:136, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:136, column:193,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:193,the value of plot_cost is         : 16.023069799824675 

 At row:136, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:136, column:194,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:194,the value of plot_cost is         : 16.173233395982056 

 At row:136, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:136, column:195,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:195,the value of plot_cost is         : 16.32420505254196 

 At row:136, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:136, column:196,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:196,the value of plot_cost is         : 16.47598476950437 

 At row:136, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:136, column:197,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:197,the value of plot_cost is         : 16.628572546869304 

 At row:136, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:136, column:198,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:198,the value of plot_cost is         : 16.781968384636745 

 At row:136, column:199,the value of plot_t0 is           : 3.0
 At row:136, column:199,the value of plot_t1 is           : 1.7336683417085426
 At row:136, column:199,the value of plot_cost is         : 16.93617228280671 

 At row:137, column:0,the value of plot_t0 is           : -1.0
 At row:137, column:0,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:0,the value of plot_cost is         : 2.24916769778541 

 At row:137, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:137, column:1,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:1,the value of plot_cost is         : 2.246053779305718 

 At row:137, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:137, column:2,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:2,the value of plot_cost is         : 2.243747921228541 

 At row:137, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:137, column:3,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:3,the value of plot_cost is         : 2.242250123553879 

 At row:137, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:137, column:4,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:4,the value of plot_cost is         : 2.241560386281732 

 At row:137, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:137, column:5,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:5,the value of plot_cost is         : 2.2416787094121005 

 At row:137, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:137, column:6,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:6,the value of plot_cost is         : 2.242605092944984 

 At row:137, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:137, column:7,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:7,the value of plot_cost is         : 2.244339536880382 

 At row:137, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:137, column:8,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:8,the value of plot_cost is         : 2.246882041218296 

 At row:137, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:137, column:9,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:9,the value of plot_cost is         : 2.250232605958725 

 At row:137, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:137, column:10,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:10,the value of plot_cost is         : 2.254391231101668 

 At row:137, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:137, column:11,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:11,the value of plot_cost is         : 2.259357916647127 

 At row:137, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:137, column:12,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:12,the value of plot_cost is         : 2.2651326625951005 

 At row:137, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:137, column:13,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:13,the value of plot_cost is         : 2.27171546894559 

 At row:137, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:137, column:14,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:14,the value of plot_cost is         : 2.2791063356985943 

 At row:137, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:137, column:15,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:15,the value of plot_cost is         : 2.287305262854113 

 At row:137, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:137, column:16,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:16,the value of plot_cost is         : 2.296312250412147 

 At row:137, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:137, column:17,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:17,the value of plot_cost is         : 2.306127298372696 

 At row:137, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:137, column:18,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:18,the value of plot_cost is         : 2.3167504067357614 

 At row:137, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:137, column:19,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:19,the value of plot_cost is         : 2.328181575501341 

 At row:137, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:137, column:20,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:20,the value of plot_cost is         : 2.340420804669435 

 At row:137, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:137, column:21,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:21,the value of plot_cost is         : 2.3534680942400446 

 At row:137, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:137, column:22,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:22,the value of plot_cost is         : 2.3673234442131688 

 At row:137, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:137, column:23,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:23,the value of plot_cost is         : 2.38198685458881 

 At row:137, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:137, column:24,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:24,the value of plot_cost is         : 2.3974583253669643 

 At row:137, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:137, column:25,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:25,the value of plot_cost is         : 2.413737856547635 

 At row:137, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:137, column:26,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:26,the value of plot_cost is         : 2.4308254481308196 

 At row:137, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:137, column:27,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:27,the value of plot_cost is         : 2.448721100116519 

 At row:137, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:137, column:28,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:28,the value of plot_cost is         : 2.4674248125047353 

 At row:137, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:137, column:29,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:29,the value of plot_cost is         : 2.486936585295466 

 At row:137, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:137, column:30,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:30,the value of plot_cost is         : 2.5072564184887103 

 At row:137, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:137, column:31,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:31,the value of plot_cost is         : 2.528384312084471 

 At row:137, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:137, column:32,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:32,the value of plot_cost is         : 2.550320266082746 

 At row:137, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:137, column:33,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:33,the value of plot_cost is         : 2.5730642804835377 

 At row:137, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:137, column:34,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:34,the value of plot_cost is         : 2.596616355286844 

 At row:137, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:137, column:35,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:35,the value of plot_cost is         : 2.6209764904926645 

 At row:137, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:137, column:36,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:36,the value of plot_cost is         : 2.6461446861010005 

 At row:137, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:137, column:37,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:37,the value of plot_cost is         : 2.672120942111851 

 At row:137, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:137, column:38,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:38,the value of plot_cost is         : 2.6989052585252185 

 At row:137, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:137, column:39,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:39,the value of plot_cost is         : 2.7264976353410995 

 At row:137, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:137, column:40,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:40,the value of plot_cost is         : 2.7548980725594956 

 At row:137, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:137, column:41,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:41,the value of plot_cost is         : 2.784106570180407 

 At row:137, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:137, column:42,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:42,the value of plot_cost is         : 2.814123128203833 

 At row:137, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:137, column:43,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:43,the value of plot_cost is         : 2.8449477466297752 

 At row:137, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:137, column:44,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:44,the value of plot_cost is         : 2.876580425458232 

 At row:137, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:137, column:45,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:45,the value of plot_cost is         : 2.909021164689203 

 At row:137, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:137, column:46,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:46,the value of plot_cost is         : 2.9422699643226906 

 At row:137, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:137, column:47,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:47,the value of plot_cost is         : 2.9763268243586913 

 At row:137, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:137, column:48,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:48,the value of plot_cost is         : 3.01119174479721 

 At row:137, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:137, column:49,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:49,the value of plot_cost is         : 3.0468647256382417 

 At row:137, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:137, column:50,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:50,the value of plot_cost is         : 3.0833457668817883 

 At row:137, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:137, column:51,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:51,the value of plot_cost is         : 3.1206348685278513 

 At row:137, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:137, column:52,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:52,the value of plot_cost is         : 3.1587320305764295 

 At row:137, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:137, column:53,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:53,the value of plot_cost is         : 3.197637253027521 

 At row:137, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:137, column:54,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:54,the value of plot_cost is         : 3.237350535881129 

 At row:137, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:137, column:55,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:55,the value of plot_cost is         : 3.277871879137251 

 At row:137, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:137, column:56,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:56,the value of plot_cost is         : 3.319201282795889 

 At row:137, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:137, column:57,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:57,the value of plot_cost is         : 3.361338746857041 

 At row:137, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:137, column:58,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:58,the value of plot_cost is         : 3.40428427132071 

 At row:137, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:137, column:59,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:59,the value of plot_cost is         : 3.448037856186893 

 At row:137, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:137, column:60,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:60,the value of plot_cost is         : 3.4925995014555906 

 At row:137, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:137, column:61,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:61,the value of plot_cost is         : 3.5379692071268045 

 At row:137, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:137, column:62,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:62,the value of plot_cost is         : 3.584146973200534 

 At row:137, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:137, column:63,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:63,the value of plot_cost is         : 3.631132799676776 

 At row:137, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:137, column:64,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:64,the value of plot_cost is         : 3.678926686555535 

 At row:137, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:137, column:65,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:65,the value of plot_cost is         : 3.727528633836807 

 At row:137, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:137, column:66,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:66,the value of plot_cost is         : 3.776938641520596 

 At row:137, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:137, column:67,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:67,the value of plot_cost is         : 3.827156709606899 

 At row:137, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:137, column:68,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:68,the value of plot_cost is         : 3.878182838095719 

 At row:137, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:137, column:69,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:69,the value of plot_cost is         : 3.9300170269870534 

 At row:137, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:137, column:70,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:70,the value of plot_cost is         : 3.982659276280901 

 At row:137, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:137, column:71,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:71,the value of plot_cost is         : 4.0361095859772655 

 At row:137, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:137, column:72,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:72,the value of plot_cost is         : 4.090367956076146 

 At row:137, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:137, column:73,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:73,the value of plot_cost is         : 4.14543438657754 

 At row:137, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:137, column:74,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:74,the value of plot_cost is         : 4.201308877481449 

 At row:137, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:137, column:75,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:75,the value of plot_cost is         : 4.257991428787872 

 At row:137, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:137, column:76,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:76,the value of plot_cost is         : 4.315482040496812 

 At row:137, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:137, column:77,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:77,the value of plot_cost is         : 4.373780712608266 

 At row:137, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:137, column:78,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:78,the value of plot_cost is         : 4.432887445122237 

 At row:137, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:137, column:79,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:79,the value of plot_cost is         : 4.492802238038722 

 At row:137, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:137, column:80,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:80,the value of plot_cost is         : 4.553525091357721 

 At row:137, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:137, column:81,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:81,the value of plot_cost is         : 4.615056005079236 

 At row:137, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:137, column:82,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:82,the value of plot_cost is         : 4.677394979203267 

 At row:137, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:137, column:83,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:83,the value of plot_cost is         : 4.7405420137298115 

 At row:137, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:137, column:84,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:84,the value of plot_cost is         : 4.804497108658873 

 At row:137, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:137, column:85,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:85,the value of plot_cost is         : 4.869260263990447 

 At row:137, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:137, column:86,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:86,the value of plot_cost is         : 4.934831479724537 

 At row:137, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:137, column:87,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:87,the value of plot_cost is         : 5.001210755861141 

 At row:137, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:137, column:88,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:88,the value of plot_cost is         : 5.0683980924002645 

 At row:137, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:137, column:89,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:89,the value of plot_cost is         : 5.1363934893419 

 At row:137, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:137, column:90,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:90,the value of plot_cost is         : 5.205196946686049 

 At row:137, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:137, column:91,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:91,the value of plot_cost is         : 5.274808464432716 

 At row:137, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:137, column:92,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:92,the value of plot_cost is         : 5.345228042581898 

 At row:137, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:137, column:93,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:93,the value of plot_cost is         : 5.416455681133592 

 At row:137, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:137, column:94,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:94,the value of plot_cost is         : 5.488491380087804 

 At row:137, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:137, column:95,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:95,the value of plot_cost is         : 5.561335139444529 

 At row:137, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:137, column:96,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:96,the value of plot_cost is         : 5.634986959203771 

 At row:137, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:137, column:97,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:97,the value of plot_cost is         : 5.709446839365526 

 At row:137, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:137, column:98,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:98,the value of plot_cost is         : 5.784714779929798 

 At row:137, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:137, column:99,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:99,the value of plot_cost is         : 5.8607907808965845 

 At row:137, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:137, column:100,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:100,the value of plot_cost is         : 5.937674842265887 

 At row:137, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:137, column:101,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:101,the value of plot_cost is         : 6.015366964037704 

 At row:137, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:137, column:102,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:102,the value of plot_cost is         : 6.0938671462120375 

 At row:137, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:137, column:103,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:103,the value of plot_cost is         : 6.1731753887888825 

 At row:137, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:137, column:104,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:104,the value of plot_cost is         : 6.253291691768245 

 At row:137, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:137, column:105,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:105,the value of plot_cost is         : 6.33421605515012 

 At row:137, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:137, column:106,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:106,the value of plot_cost is         : 6.415948478934514 

 At row:137, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:137, column:107,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:107,the value of plot_cost is         : 6.498488963121419 

 At row:137, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:137, column:108,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:108,the value of plot_cost is         : 6.581837507710844 

 At row:137, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:137, column:109,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:109,the value of plot_cost is         : 6.665994112702782 

 At row:137, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:137, column:110,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:110,the value of plot_cost is         : 6.7509587780972335 

 At row:137, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:137, column:111,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:111,the value of plot_cost is         : 6.8367315038942005 

 At row:137, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:137, column:112,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:112,the value of plot_cost is         : 6.923312290093685 

 At row:137, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:137, column:113,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:113,the value of plot_cost is         : 7.010701136695681 

 At row:137, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:137, column:114,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:114,the value of plot_cost is         : 7.098898043700194 

 At row:137, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:137, column:115,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:115,the value of plot_cost is         : 7.187903011107224 

 At row:137, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:137, column:116,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:116,the value of plot_cost is         : 7.277716038916765 

 At row:137, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:137, column:117,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:117,the value of plot_cost is         : 7.368337127128821 

 At row:137, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:137, column:118,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:118,the value of plot_cost is         : 7.459766275743396 

 At row:137, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:137, column:119,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:119,the value of plot_cost is         : 7.552003484760486 

 At row:137, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:137, column:120,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:120,the value of plot_cost is         : 7.64504875418009 

 At row:137, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:137, column:121,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:121,the value of plot_cost is         : 7.738902084002206 

 At row:137, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:137, column:122,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:122,the value of plot_cost is         : 7.8335634742268425 

 At row:137, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:137, column:123,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:123,the value of plot_cost is         : 7.929032924853988 

 At row:137, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:137, column:124,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:124,the value of plot_cost is         : 8.025310435883654 

 At row:137, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:137, column:125,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:125,the value of plot_cost is         : 8.122396007315832 

 At row:137, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:137, column:126,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:126,the value of plot_cost is         : 8.220289639150524 

 At row:137, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:137, column:127,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:127,the value of plot_cost is         : 8.318991331387734 

 At row:137, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:137, column:128,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:128,the value of plot_cost is         : 8.418501084027458 

 At row:137, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:137, column:129,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:129,the value of plot_cost is         : 8.5188188970697 

 At row:137, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:137, column:130,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:130,the value of plot_cost is         : 8.619944770514453 

 At row:137, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:137, column:131,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:131,the value of plot_cost is         : 8.721878704361721 

 At row:137, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:137, column:132,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:132,the value of plot_cost is         : 8.82462069861151 

 At row:137, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:137, column:133,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:133,the value of plot_cost is         : 8.928170753263805 

 At row:137, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:137, column:134,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:134,the value of plot_cost is         : 9.03252886831862 

 At row:137, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:137, column:135,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:135,the value of plot_cost is         : 9.13769504377595 

 At row:137, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:137, column:136,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:136,the value of plot_cost is         : 9.243669279635794 

 At row:137, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:137, column:137,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:137,the value of plot_cost is         : 9.350451575898152 

 At row:137, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:137, column:138,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:138,the value of plot_cost is         : 9.458041932563027 

 At row:137, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:137, column:139,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:139,the value of plot_cost is         : 9.56644034963042 

 At row:137, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:137, column:140,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:140,the value of plot_cost is         : 9.675646827100326 

 At row:137, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:137, column:141,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:141,the value of plot_cost is         : 9.785661364972745 

 At row:137, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:137, column:142,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:142,the value of plot_cost is         : 9.89648396324768 

 At row:137, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:137, column:143,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:143,the value of plot_cost is         : 10.008114621925131 

 At row:137, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:137, column:144,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:144,the value of plot_cost is         : 10.120553341005095 

 At row:137, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:137, column:145,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:145,the value of plot_cost is         : 10.233800120487578 

 At row:137, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:137, column:146,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:146,the value of plot_cost is         : 10.34785496037257 

 At row:137, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:137, column:147,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:147,the value of plot_cost is         : 10.462717860660081 

 At row:137, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:137, column:148,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:148,the value of plot_cost is         : 10.578388821350106 

 At row:137, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:137, column:149,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:149,the value of plot_cost is         : 10.694867842442651 

 At row:137, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:137, column:150,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:150,the value of plot_cost is         : 10.812154923937706 

 At row:137, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:137, column:151,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:151,the value of plot_cost is         : 10.930250065835281 

 At row:137, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:137, column:152,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:152,the value of plot_cost is         : 11.049153268135363 

 At row:137, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:137, column:153,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:153,the value of plot_cost is         : 11.168864530837965 

 At row:137, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:137, column:154,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:154,the value of plot_cost is         : 11.28938385394308 

 At row:137, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:137, column:155,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:155,the value of plot_cost is         : 11.410711237450714 

 At row:137, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:137, column:156,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:156,the value of plot_cost is         : 11.532846681360859 

 At row:137, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:137, column:157,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:157,the value of plot_cost is         : 11.655790185673517 

 At row:137, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:137, column:158,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:158,the value of plot_cost is         : 11.779541750388697 

 At row:137, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:137, column:159,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:159,the value of plot_cost is         : 11.904101375506391 

 At row:137, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:137, column:160,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:160,the value of plot_cost is         : 12.029469061026596 

 At row:137, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:137, column:161,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:161,the value of plot_cost is         : 12.155644806949322 

 At row:137, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:137, column:162,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:162,the value of plot_cost is         : 12.282628613274557 

 At row:137, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:137, column:163,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:163,the value of plot_cost is         : 12.410420480002307 

 At row:137, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:137, column:164,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:164,the value of plot_cost is         : 12.539020407132574 

 At row:137, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:137, column:165,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:165,the value of plot_cost is         : 12.668428394665357 

 At row:137, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:137, column:166,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:166,the value of plot_cost is         : 12.798644442600652 

 At row:137, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:137, column:167,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:167,the value of plot_cost is         : 12.929668550938464 

 At row:137, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:137, column:168,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:168,the value of plot_cost is         : 13.061500719678794 

 At row:137, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:137, column:169,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:169,the value of plot_cost is         : 13.194140948821635 

 At row:137, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:137, column:170,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:170,the value of plot_cost is         : 13.327589238366997 

 At row:137, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:137, column:171,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:171,the value of plot_cost is         : 13.461845588314873 

 At row:137, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:137, column:172,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:172,the value of plot_cost is         : 13.596909998665256 

 At row:137, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:137, column:173,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:173,the value of plot_cost is         : 13.732782469418156 

 At row:137, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:137, column:174,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:174,the value of plot_cost is         : 13.869463000573578 

 At row:137, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:137, column:175,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:175,the value of plot_cost is         : 14.006951592131509 

 At row:137, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:137, column:176,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:176,the value of plot_cost is         : 14.14524824409196 

 At row:137, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:137, column:177,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:177,the value of plot_cost is         : 14.284352956454919 

 At row:137, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:137, column:178,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:178,the value of plot_cost is         : 14.4242657292204 

 At row:137, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:137, column:179,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:179,the value of plot_cost is         : 14.564986562388391 

 At row:137, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:137, column:180,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:180,the value of plot_cost is         : 14.706515455958902 

 At row:137, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:137, column:181,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:181,the value of plot_cost is         : 14.84885240993193 

 At row:137, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:137, column:182,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:182,the value of plot_cost is         : 14.991997424307465 

 At row:137, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:137, column:183,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:183,the value of plot_cost is         : 15.135950499085517 

 At row:137, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:137, column:184,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:184,the value of plot_cost is         : 15.28071163426609 

 At row:137, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:137, column:185,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:185,the value of plot_cost is         : 15.426280829849173 

 At row:137, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:137, column:186,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:186,the value of plot_cost is         : 15.57265808583477 

 At row:137, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:137, column:187,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:187,the value of plot_cost is         : 15.71984340222288 

 At row:137, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:137, column:188,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:188,the value of plot_cost is         : 15.867836779013512 

 At row:137, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:137, column:189,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:189,the value of plot_cost is         : 16.01663821620666 

 At row:137, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:137, column:190,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:190,the value of plot_cost is         : 16.166247713802317 

 At row:137, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:137, column:191,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:191,the value of plot_cost is         : 16.3166652718005 

 At row:137, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:137, column:192,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:192,the value of plot_cost is         : 16.467890890201186 

 At row:137, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:137, column:193,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:193,the value of plot_cost is         : 16.619924569004386 

 At row:137, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:137, column:194,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:194,the value of plot_cost is         : 16.77276630821011 

 At row:137, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:137, column:195,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:195,the value of plot_cost is         : 16.926416107818344 

 At row:137, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:137, column:196,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:196,the value of plot_cost is         : 17.080873967829092 

 At row:137, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:137, column:197,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:197,the value of plot_cost is         : 17.23613988824236 

 At row:137, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:137, column:198,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:198,the value of plot_cost is         : 17.392213869058136 

 At row:137, column:199,the value of plot_t0 is           : 3.0
 At row:137, column:199,the value of plot_t1 is           : 1.7537688442211055
 At row:137, column:199,the value of plot_cost is         : 17.54909591027643 

 At row:138, column:0,the value of plot_t0 is           : -1.0
 At row:138, column:0,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:0,the value of plot_cost is         : 2.3417235134754897 

 At row:138, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:138, column:1,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:1,the value of plot_cost is         : 2.3412877380441333 

 At row:138, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:138, column:2,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:2,the value of plot_cost is         : 2.341660023015292 

 At row:138, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:138, column:3,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:3,the value of plot_cost is         : 2.3428403683889663 

 At row:138, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:138, column:4,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:4,the value of plot_cost is         : 2.3448287741651557 

 At row:138, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:138, column:5,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:5,the value of plot_cost is         : 2.3476252403438593 

 At row:138, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:138, column:6,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:6,the value of plot_cost is         : 2.3512297669250777 

 At row:138, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:138, column:7,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:7,the value of plot_cost is         : 2.3556423539088116 

 At row:138, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:138, column:8,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:8,the value of plot_cost is         : 2.3608630012950615 

 At row:138, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:138, column:9,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:9,the value of plot_cost is         : 2.3668917090838266 

 At row:138, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:138, column:10,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:10,the value of plot_cost is         : 2.3737284772751055 

 At row:138, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:138, column:11,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:11,the value of plot_cost is         : 2.381373305868899 

 At row:138, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:138, column:12,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:12,the value of plot_cost is         : 2.389826194865209 

 At row:138, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:138, column:13,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:13,the value of plot_cost is         : 2.3990871442640342 

 At row:138, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:138, column:14,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:14,the value of plot_cost is         : 2.4091561540653745 

 At row:138, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:138, column:15,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:15,the value of plot_cost is         : 2.420033224269229 

 At row:138, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:138, column:16,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:16,the value of plot_cost is         : 2.4317183548755987 

 At row:138, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:138, column:17,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:17,the value of plot_cost is         : 2.444211545884483 

 At row:138, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:138, column:18,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:18,the value of plot_cost is         : 2.4575127972958843 

 At row:138, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:138, column:19,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:19,the value of plot_cost is         : 2.4716221091098 

 At row:138, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:138, column:20,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:20,the value of plot_cost is         : 2.4865394813262296 

 At row:138, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:138, column:21,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:21,the value of plot_cost is         : 2.5022649139451745 

 At row:138, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:138, column:22,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:22,the value of plot_cost is         : 2.5187984069666354 

 At row:138, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:138, column:23,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:23,the value of plot_cost is         : 2.5361399603906114 

 At row:138, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:138, column:24,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:24,the value of plot_cost is         : 2.5542895742171026 

 At row:138, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:138, column:25,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:25,the value of plot_cost is         : 2.573247248446108 

 At row:138, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:138, column:26,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:26,the value of plot_cost is         : 2.593012983077628 

 At row:138, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:138, column:27,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:27,the value of plot_cost is         : 2.6135867781116637 

 At row:138, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:138, column:28,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:28,the value of plot_cost is         : 2.634968633548216 

 At row:138, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:138, column:29,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:29,the value of plot_cost is         : 2.6571585493872827 

 At row:138, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:138, column:30,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:30,the value of plot_cost is         : 2.680156525628863 

 At row:138, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:138, column:31,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:31,the value of plot_cost is         : 2.7039625622729577 

 At row:138, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:138, column:32,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:32,the value of plot_cost is         : 2.7285766593195695 

 At row:138, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:138, column:33,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:33,the value of plot_cost is         : 2.7539988167686973 

 At row:138, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:138, column:34,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:34,the value of plot_cost is         : 2.7802290346203384 

 At row:138, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:138, column:35,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:35,the value of plot_cost is         : 2.8072673128744947 

 At row:138, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:138, column:36,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:36,the value of plot_cost is         : 2.835113651531166 

 At row:138, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:138, column:37,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:37,the value of plot_cost is         : 2.8637680505903527 

 At row:138, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:138, column:38,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:38,the value of plot_cost is         : 2.8932305100520557 

 At row:138, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:138, column:39,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:39,the value of plot_cost is         : 2.9235010299162725 

 At row:138, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:138, column:40,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:40,the value of plot_cost is         : 2.9545796101830044 

 At row:138, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:138, column:41,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:41,the value of plot_cost is         : 2.9864662508522506 

 At row:138, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:138, column:42,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:42,the value of plot_cost is         : 3.0191609519240132 

 At row:138, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:138, column:43,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:43,the value of plot_cost is         : 3.0526637133982915 

 At row:138, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:138, column:44,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:44,the value of plot_cost is         : 3.0869745352750844 

 At row:138, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:138, column:45,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:45,the value of plot_cost is         : 3.1220934175543906 

 At row:138, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:138, column:46,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:46,the value of plot_cost is         : 3.1580203602362125 

 At row:138, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:138, column:47,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:47,the value of plot_cost is         : 3.1947553633205508 

 At row:138, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:138, column:48,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:48,the value of plot_cost is         : 3.2322984268074046 

 At row:138, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:138, column:49,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:49,the value of plot_cost is         : 3.2706495506967728 

 At row:138, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:138, column:50,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:50,the value of plot_cost is         : 3.3098087349886547 

 At row:138, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:138, column:51,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:51,the value of plot_cost is         : 3.349775979683052 

 At row:138, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:138, column:52,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:52,the value of plot_cost is         : 3.3905512847799657 

 At row:138, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:138, column:53,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:53,the value of plot_cost is         : 3.4321346502793952 

 At row:138, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:138, column:54,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:54,the value of plot_cost is         : 3.474526076181339 

 At row:138, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:138, column:55,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:55,the value of plot_cost is         : 3.5177255624857957 

 At row:138, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:138, column:56,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:56,the value of plot_cost is         : 3.561733109192769 

 At row:138, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:138, column:57,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:57,the value of plot_cost is         : 3.6065487163022594 

 At row:138, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:138, column:58,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:58,the value of plot_cost is         : 3.6521723838142623 

 At row:138, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:138, column:59,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:59,the value of plot_cost is         : 3.698604111728782 

 At row:138, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:138, column:60,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:60,the value of plot_cost is         : 3.745843900045814 

 At row:138, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:138, column:61,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:61,the value of plot_cost is         : 3.7938917487653625 

 At row:138, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:138, column:62,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:62,the value of plot_cost is         : 3.842747657887427 

 At row:138, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:138, column:63,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:63,the value of plot_cost is         : 3.892411627412007 

 At row:138, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:138, column:64,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:64,the value of plot_cost is         : 3.9428836573391015 

 At row:138, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:138, column:65,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:65,the value of plot_cost is         : 3.9941637476687095 

 At row:138, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:138, column:66,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:66,the value of plot_cost is         : 4.046251898400833 

 At row:138, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:138, column:67,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:67,the value of plot_cost is         : 4.0991481095354745 

 At row:138, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:138, column:68,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:68,the value of plot_cost is         : 4.152852381072629 

 At row:138, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:138, column:69,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:69,the value of plot_cost is         : 4.207364713012299 

 At row:138, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:138, column:70,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:70,the value of plot_cost is         : 4.262685105354482 

 At row:138, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:138, column:71,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:71,the value of plot_cost is         : 4.3188135580991815 

 At row:138, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:138, column:72,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:72,the value of plot_cost is         : 4.375750071246396 

 At row:138, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:138, column:73,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:73,the value of plot_cost is         : 4.433494644796128 

 At row:138, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:138, column:74,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:74,the value of plot_cost is         : 4.492047278748373 

 At row:138, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:138, column:75,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:75,the value of plot_cost is         : 4.5514079731031325 

 At row:138, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:138, column:76,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:76,the value of plot_cost is         : 4.611576727860406 

 At row:138, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:138, column:77,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:77,the value of plot_cost is         : 4.6725535430202 

 At row:138, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:138, column:78,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:78,the value of plot_cost is         : 4.734338418582506 

 At row:138, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:138, column:79,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:79,the value of plot_cost is         : 4.7969313545473256 

 At row:138, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:138, column:80,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:80,the value of plot_cost is         : 4.86033235091466 

 At row:138, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:138, column:81,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:81,the value of plot_cost is         : 4.924541407684509 

 At row:138, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:138, column:82,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:82,the value of plot_cost is         : 4.989558524856877 

 At row:138, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:138, column:83,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:83,the value of plot_cost is         : 5.055383702431759 

 At row:138, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:138, column:84,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:84,the value of plot_cost is         : 5.1220169404091545 

 At row:138, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:138, column:85,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:85,the value of plot_cost is         : 5.189458238789064 

 At row:138, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:138, column:86,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:86,the value of plot_cost is         : 5.257707597571489 

 At row:138, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:138, column:87,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:87,the value of plot_cost is         : 5.326765016756433 

 At row:138, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:138, column:88,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:88,the value of plot_cost is         : 5.39663049634389 

 At row:138, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:138, column:89,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:89,the value of plot_cost is         : 5.46730403633386 

 At row:138, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:138, column:90,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:90,the value of plot_cost is         : 5.538785636726345 

 At row:138, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:138, column:91,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:91,the value of plot_cost is         : 5.611075297521346 

 At row:138, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:138, column:92,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:92,the value of plot_cost is         : 5.684173018718862 

 At row:138, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:138, column:93,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:93,the value of plot_cost is         : 5.758078800318897 

 At row:138, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:138, column:94,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:94,the value of plot_cost is         : 5.832792642321444 

 At row:138, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:138, column:95,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:95,the value of plot_cost is         : 5.908314544726504 

 At row:138, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:138, column:96,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:96,the value of plot_cost is         : 5.984644507534079 

 At row:138, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:138, column:97,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:97,the value of plot_cost is         : 6.061782530744175 

 At row:138, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:138, column:98,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:98,the value of plot_cost is         : 6.139728614356782 

 At row:138, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:138, column:99,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:99,the value of plot_cost is         : 6.218482758371904 

 At row:138, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:138, column:100,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:100,the value of plot_cost is         : 6.2980449627895405 

 At row:138, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:138, column:101,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:101,the value of plot_cost is         : 6.378415227609691 

 At row:138, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:138, column:102,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:102,the value of plot_cost is         : 6.459593552832359 

 At row:138, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:138, column:103,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:103,the value of plot_cost is         : 6.541579938457545 

 At row:138, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:138, column:104,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:104,the value of plot_cost is         : 6.624374384485241 

 At row:138, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:138, column:105,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:105,the value of plot_cost is         : 6.707976890915452 

 At row:138, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:138, column:106,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:106,the value of plot_cost is         : 6.792387457748179 

 At row:138, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:138, column:107,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:107,the value of plot_cost is         : 6.877606084983427 

 At row:138, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:138, column:108,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:108,the value of plot_cost is         : 6.963632772621185 

 At row:138, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:138, column:109,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:109,the value of plot_cost is         : 7.050467520661456 

 At row:138, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:138, column:110,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:110,the value of plot_cost is         : 7.1381103291042445 

 At row:138, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:138, column:111,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:111,the value of plot_cost is         : 7.226561197949545 

 At row:138, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:138, column:112,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:112,the value of plot_cost is         : 7.315820127197364 

 At row:138, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:138, column:113,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:113,the value of plot_cost is         : 7.405887116847702 

 At row:138, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:138, column:114,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:114,the value of plot_cost is         : 7.496762166900548 

 At row:138, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:138, column:115,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:115,the value of plot_cost is         : 7.588445277355911 

 At row:138, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:138, column:116,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:116,the value of plot_cost is         : 7.680936448213788 

 At row:138, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:138, column:117,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:117,the value of plot_cost is         : 7.774235679474185 

 At row:138, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:138, column:118,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:118,the value of plot_cost is         : 7.8683429711370945 

 At row:138, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:138, column:119,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:119,the value of plot_cost is         : 7.963258323202519 

 At row:138, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:138, column:120,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:120,the value of plot_cost is         : 8.058981735670455 

 At row:138, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:138, column:121,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:121,the value of plot_cost is         : 8.155513208540908 

 At row:138, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:138, column:122,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:122,the value of plot_cost is         : 8.252852741813877 

 At row:138, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:138, column:123,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:123,the value of plot_cost is         : 8.351000335489367 

 At row:138, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:138, column:124,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:124,the value of plot_cost is         : 8.449955989567364 

 At row:138, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:138, column:125,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:125,the value of plot_cost is         : 8.549719704047877 

 At row:138, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:138, column:126,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:126,the value of plot_cost is         : 8.650291478930905 

 At row:138, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:138, column:127,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:127,the value of plot_cost is         : 8.751671314216454 

 At row:138, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:138, column:128,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:128,the value of plot_cost is         : 8.853859209904515 

 At row:138, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:138, column:129,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:129,the value of plot_cost is         : 8.956855165995087 

 At row:138, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:138, column:130,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:130,the value of plot_cost is         : 9.060659182488175 

 At row:138, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:138, column:131,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:131,the value of plot_cost is         : 9.165271259383779 

 At row:138, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:138, column:132,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:132,the value of plot_cost is         : 9.270691396681901 

 At row:138, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:138, column:133,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:133,the value of plot_cost is         : 9.37691959438254 

 At row:138, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:138, column:134,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:134,the value of plot_cost is         : 9.483955852485687 

 At row:138, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:138, column:135,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:135,the value of plot_cost is         : 9.591800170991352 

 At row:138, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:138, column:136,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:136,the value of plot_cost is         : 9.70045254989953 

 At row:138, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:138, column:137,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:137,the value of plot_cost is         : 9.80991298921023 

 At row:138, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:138, column:138,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:138,the value of plot_cost is         : 9.920181488923442 

 At row:138, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:138, column:139,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:139,the value of plot_cost is         : 10.031258049039167 

 At row:138, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:138, column:140,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:140,the value of plot_cost is         : 10.143142669557406 

 At row:138, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:138, column:141,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:141,the value of plot_cost is         : 10.25583535047816 

 At row:138, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:138, column:142,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:142,the value of plot_cost is         : 10.369336091801433 

 At row:138, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:138, column:143,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:143,the value of plot_cost is         : 10.483644893527222 

 At row:138, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:138, column:144,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:144,the value of plot_cost is         : 10.598761755655524 

 At row:138, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:138, column:145,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:145,the value of plot_cost is         : 10.714686678186338 

 At row:138, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:138, column:146,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:146,the value of plot_cost is         : 10.831419661119666 

 At row:138, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:138, column:147,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:147,the value of plot_cost is         : 10.948960704455516 

 At row:138, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:138, column:148,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:148,the value of plot_cost is         : 11.067309808193881 

 At row:138, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:138, column:149,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:149,the value of plot_cost is         : 11.186466972334756 

 At row:138, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:138, column:150,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:150,the value of plot_cost is         : 11.306432196878143 

 At row:138, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:138, column:151,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:151,the value of plot_cost is         : 11.427205481824053 

 At row:138, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:138, column:152,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:152,the value of plot_cost is         : 11.54878682717247 

 At row:138, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:138, column:153,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:153,the value of plot_cost is         : 11.671176232923415 

 At row:138, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:138, column:154,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:154,the value of plot_cost is         : 11.794373699076862 

 At row:138, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:138, column:155,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:155,the value of plot_cost is         : 11.918379225632828 

 At row:138, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:138, column:156,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:156,the value of plot_cost is         : 12.043192812591316 

 At row:138, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:138, column:157,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:157,the value of plot_cost is         : 12.16881445995231 

 At row:138, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:138, column:158,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:158,the value of plot_cost is         : 12.295244167715826 

 At row:138, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:138, column:159,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:159,the value of plot_cost is         : 12.422481935881851 

 At row:138, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:138, column:160,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:160,the value of plot_cost is         : 12.55052776445039 

 At row:138, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:138, column:161,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:161,the value of plot_cost is         : 12.679381653421451 

 At row:138, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:138, column:162,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:162,the value of plot_cost is         : 12.809043602795022 

 At row:138, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:138, column:163,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:163,the value of plot_cost is         : 12.939513612571114 

 At row:138, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:138, column:164,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:164,the value of plot_cost is         : 13.070791682749716 

 At row:138, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:138, column:165,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:165,the value of plot_cost is         : 13.202877813330831 

 At row:138, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:138, column:166,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:166,the value of plot_cost is         : 13.335772004314471 

 At row:138, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:138, column:167,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:167,the value of plot_cost is         : 13.469474255700618 

 At row:138, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:138, column:168,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:168,the value of plot_cost is         : 13.603984567489281 

 At row:138, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:138, column:169,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:169,the value of plot_cost is         : 13.739302939680458 

 At row:138, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:138, column:170,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:170,the value of plot_cost is         : 13.875429372274148 

 At row:138, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:138, column:171,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:171,the value of plot_cost is         : 14.012363865270355 

 At row:138, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:138, column:172,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:172,the value of plot_cost is         : 14.150106418669077 

 At row:138, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:138, column:173,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:173,the value of plot_cost is         : 14.288657032470322 

 At row:138, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:138, column:174,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:174,the value of plot_cost is         : 14.428015706674074 

 At row:138, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:138, column:175,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:175,the value of plot_cost is         : 14.568182441280339 

 At row:138, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:138, column:176,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:176,the value of plot_cost is         : 14.709157236289132 

 At row:138, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:138, column:177,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:177,the value of plot_cost is         : 14.850940091700428 

 At row:138, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:138, column:178,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:178,the value of plot_cost is         : 14.993531007514243 

 At row:138, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:138, column:179,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:179,the value of plot_cost is         : 15.136929983730571 

 At row:138, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:138, column:180,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:180,the value of plot_cost is         : 15.281137020349412 

 At row:138, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:138, column:181,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:181,the value of plot_cost is         : 15.426152117370771 

 At row:138, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:138, column:182,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:182,the value of plot_cost is         : 15.571975274794644 

 At row:138, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:138, column:183,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:183,the value of plot_cost is         : 15.718606492621042 

 At row:138, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:138, column:184,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:184,the value of plot_cost is         : 15.866045770849942 

 At row:138, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:138, column:185,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:185,the value of plot_cost is         : 16.014293109481358 

 At row:138, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:138, column:186,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:186,the value of plot_cost is         : 16.163348508515302 

 At row:138, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:138, column:187,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:187,the value of plot_cost is         : 16.313211967951748 

 At row:138, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:138, column:188,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:188,the value of plot_cost is         : 16.463883487790714 

 At row:138, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:138, column:189,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:189,the value of plot_cost is         : 16.615363068032195 

 At row:138, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:138, column:190,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:190,the value of plot_cost is         : 16.767650708676186 

 At row:138, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:138, column:191,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:191,the value of plot_cost is         : 16.920746409722696 

 At row:138, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:138, column:192,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:192,the value of plot_cost is         : 17.074650171171722 

 At row:138, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:138, column:193,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:193,the value of plot_cost is         : 17.229361993023264 

 At row:138, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:138, column:194,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:194,the value of plot_cost is         : 17.38488187527732 

 At row:138, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:138, column:195,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:195,the value of plot_cost is         : 17.54120981793389 

 At row:138, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:138, column:196,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:196,the value of plot_cost is         : 17.698345820992984 

 At row:138, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:138, column:197,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:197,the value of plot_cost is         : 17.856289884454583 

 At row:138, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:138, column:198,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:198,the value of plot_cost is         : 18.015042008318694 

 At row:138, column:199,the value of plot_t0 is           : 3.0
 At row:138, column:199,the value of plot_t1 is           : 1.7738693467336684
 At row:138, column:199,the value of plot_cost is         : 18.174602192585326 

 At row:139, column:0,the value of plot_t0 is           : -1.0
 At row:139, column:0,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:0,the value of plot_cost is         : 2.4468619840047343 

 At row:139, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:139, column:1,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:1,the value of plot_cost is         : 2.4491043516217132 

 At row:139, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:139, column:2,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:2,the value of plot_cost is         : 2.4521547796412073 

 At row:139, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:139, column:3,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:3,the value of plot_cost is         : 2.456013268063218 

 At row:139, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:139, column:4,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:4,the value of plot_cost is         : 2.460679816887742 

 At row:139, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:139, column:5,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:5,the value of plot_cost is         : 2.4661544261147816 

 At row:139, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:139, column:6,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:6,the value of plot_cost is         : 2.4724370957443362 

 At row:139, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:139, column:7,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:7,the value of plot_cost is         : 2.479527825776406 

 At row:139, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:139, column:8,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:8,the value of plot_cost is         : 2.487426616210992 

 At row:139, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:139, column:9,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:9,the value of plot_cost is         : 2.4961334670480917 

 At row:139, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:139, column:10,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:10,the value of plot_cost is         : 2.505648378287707 

 At row:139, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:139, column:11,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:11,the value of plot_cost is         : 2.515971349929836 

 At row:139, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:139, column:12,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:12,the value of plot_cost is         : 2.5271023819744816 

 At row:139, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:139, column:13,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:13,the value of plot_cost is         : 2.539041474421644 

 At row:139, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:139, column:14,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:14,the value of plot_cost is         : 2.551788627271319 

 At row:139, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:139, column:15,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:15,the value of plot_cost is         : 2.5653438405235094 

 At row:139, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:139, column:16,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:16,the value of plot_cost is         : 2.579707114178214 

 At row:139, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:139, column:17,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:17,the value of plot_cost is         : 2.594878448235435 

 At row:139, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:139, column:18,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:18,the value of plot_cost is         : 2.610857842695172 

 At row:139, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:139, column:19,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:19,the value of plot_cost is         : 2.627645297557423 

 At row:139, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:139, column:20,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:20,the value of plot_cost is         : 2.6452408128221885 

 At row:139, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:139, column:21,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:21,the value of plot_cost is         : 2.663644388489469 

 At row:139, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:139, column:22,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:22,the value of plot_cost is         : 2.682856024559265 

 At row:139, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:139, column:23,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:23,the value of plot_cost is         : 2.7028757210315777 

 At row:139, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:139, column:24,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:24,the value of plot_cost is         : 2.7237034779064047 

 At row:139, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:139, column:25,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:25,the value of plot_cost is         : 2.745339295183745 

 At row:139, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:139, column:26,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:26,the value of plot_cost is         : 2.767783172863601 

 At row:139, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:139, column:27,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:27,the value of plot_cost is         : 2.791035110945973 

 At row:139, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:139, column:28,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:28,the value of plot_cost is         : 2.8150951094308607 

 At row:139, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:139, column:29,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:29,the value of plot_cost is         : 2.839963168318263 

 At row:139, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:139, column:30,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:30,the value of plot_cost is         : 2.8656392876081793 

 At row:139, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:139, column:31,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:31,the value of plot_cost is         : 2.8921234673006095 

 At row:139, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:139, column:32,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:32,the value of plot_cost is         : 2.9194157073955567 

 At row:139, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:139, column:33,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:33,the value of plot_cost is         : 2.9475160078930203 

 At row:139, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:139, column:34,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:34,the value of plot_cost is         : 2.9764243687929985 

 At row:139, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:139, column:35,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:35,the value of plot_cost is         : 3.00614079009549 

 At row:139, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:139, column:36,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:36,the value of plot_cost is         : 3.0366652718004965 

 At row:139, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:139, column:37,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:37,the value of plot_cost is         : 3.067997813908019 

 At row:139, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:139, column:38,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:38,the value of plot_cost is         : 3.1001384164180577 

 At row:139, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:139, column:39,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:39,the value of plot_cost is         : 3.133087079330611 

 At row:139, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:139, column:40,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:40,the value of plot_cost is         : 3.166843802645678 

 At row:139, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:139, column:41,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:41,the value of plot_cost is         : 3.20140858636326 

 At row:139, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:139, column:42,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:42,the value of plot_cost is         : 3.2367814304833584 

 At row:139, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:139, column:43,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:43,the value of plot_cost is         : 3.2729623350059724 

 At row:139, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:139, column:44,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:44,the value of plot_cost is         : 3.309951299931101 

 At row:139, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:139, column:45,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:45,the value of plot_cost is         : 3.347748325258743 

 At row:139, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:139, column:46,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:46,the value of plot_cost is         : 3.386353410988901 

 At row:139, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:139, column:47,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:47,the value of plot_cost is         : 3.4257665571215745 

 At row:139, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:139, column:48,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:48,the value of plot_cost is         : 3.465987763656764 

 At row:139, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:139, column:49,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:49,the value of plot_cost is         : 3.5070170305944677 

 At row:139, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:139, column:50,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:50,the value of plot_cost is         : 3.5488543579346867 

 At row:139, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:139, column:51,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:51,the value of plot_cost is         : 3.591499745677419 

 At row:139, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:139, column:52,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:52,the value of plot_cost is         : 3.6349531938226685 

 At row:139, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:139, column:53,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:53,the value of plot_cost is         : 3.679214702370433 

 At row:139, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:139, column:54,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:54,the value of plot_cost is         : 3.7242842713207125 

 At row:139, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:139, column:55,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:55,the value of plot_cost is         : 3.770161900673506 

 At row:139, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:139, column:56,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:56,the value of plot_cost is         : 3.8168475904288144 

 At row:139, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:139, column:57,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:57,the value of plot_cost is         : 3.86434134058664 

 At row:139, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:139, column:58,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:58,the value of plot_cost is         : 3.912643151146979 

 At row:139, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:139, column:59,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:59,the value of plot_cost is         : 3.961753022109834 

 At row:139, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:139, column:60,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:60,the value of plot_cost is         : 4.011670953475202 

 At row:139, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:139, column:61,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:61,the value of plot_cost is         : 4.062396945243086 

 At row:139, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:139, column:62,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:62,the value of plot_cost is         : 4.113930997413487 

 At row:139, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:139, column:63,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:63,the value of plot_cost is         : 4.1662731099864025 

 At row:139, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:139, column:64,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:64,the value of plot_cost is         : 4.219423282961833 

 At row:139, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:139, column:65,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:65,the value of plot_cost is         : 4.273381516339777 

 At row:139, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:139, column:66,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:66,the value of plot_cost is         : 4.328147810120236 

 At row:139, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:139, column:67,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:67,the value of plot_cost is         : 4.383722164303213 

 At row:139, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:139, column:68,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:68,the value of plot_cost is         : 4.440104578888703 

 At row:139, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:139, column:69,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:69,the value of plot_cost is         : 4.497295053876709 

 At row:139, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:139, column:70,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:70,the value of plot_cost is         : 4.555293589267229 

 At row:139, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:139, column:71,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:71,the value of plot_cost is         : 4.614100185060263 

 At row:139, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:139, column:72,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:72,the value of plot_cost is         : 4.673714841255815 

 At row:139, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:139, column:73,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:73,the value of plot_cost is         : 4.73413755785388 

 At row:139, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:139, column:74,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:74,the value of plot_cost is         : 4.795368334854462 

 At row:139, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:139, column:75,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:75,the value of plot_cost is         : 4.857407172257557 

 At row:139, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:139, column:76,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:76,the value of plot_cost is         : 4.920254070063167 

 At row:139, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:139, column:77,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:77,the value of plot_cost is         : 4.983909028271295 

 At row:139, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:139, column:78,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:78,the value of plot_cost is         : 5.048372046881937 

 At row:139, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:139, column:79,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:79,the value of plot_cost is         : 5.113643125895092 

 At row:139, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:139, column:80,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:80,the value of plot_cost is         : 5.179722265310762 

 At row:139, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:139, column:81,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:81,the value of plot_cost is         : 5.246609465128949 

 At row:139, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:139, column:82,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:82,the value of plot_cost is         : 5.31430472534965 

 At row:139, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:139, column:83,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:83,the value of plot_cost is         : 5.382808045972869 

 At row:139, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:139, column:84,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:84,the value of plot_cost is         : 5.452119426998601 

 At row:139, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:139, column:85,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:85,the value of plot_cost is         : 5.522238868426846 

 At row:139, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:139, column:86,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:86,the value of plot_cost is         : 5.593166370257606 

 At row:139, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:139, column:87,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:87,the value of plot_cost is         : 5.664901932490886 

 At row:139, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:139, column:88,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:88,the value of plot_cost is         : 5.737445555126679 

 At row:139, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:139, column:89,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:89,the value of plot_cost is         : 5.810797238164985 

 At row:139, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:139, column:90,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:90,the value of plot_cost is         : 5.884956981605806 

 At row:139, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:139, column:91,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:91,the value of plot_cost is         : 5.959924785449142 

 At row:139, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:139, column:92,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:92,the value of plot_cost is         : 6.035700649694995 

 At row:139, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:139, column:93,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:93,the value of plot_cost is         : 6.112284574343365 

 At row:139, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:139, column:94,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:94,the value of plot_cost is         : 6.189676559394246 

 At row:139, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:139, column:95,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:95,the value of plot_cost is         : 6.267876604847643 

 At row:139, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:139, column:96,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:96,the value of plot_cost is         : 6.346884710703554 

 At row:139, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:139, column:97,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:97,the value of plot_cost is         : 6.426700876961985 

 At row:139, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:139, column:98,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:98,the value of plot_cost is         : 6.507325103622928 

 At row:139, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:139, column:99,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:99,the value of plot_cost is         : 6.588757390686386 

 At row:139, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:139, column:100,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:100,the value of plot_cost is         : 6.670997738152357 

 At row:139, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:139, column:101,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:101,the value of plot_cost is         : 6.754046146020844 

 At row:139, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:139, column:102,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:102,the value of plot_cost is         : 6.837902614291849 

 At row:139, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:139, column:103,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:103,the value of plot_cost is         : 6.92256714296537 

 At row:139, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:139, column:104,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:104,the value of plot_cost is         : 7.008039732041402 

 At row:139, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:139, column:105,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:105,the value of plot_cost is         : 7.09432038151995 

 At row:139, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:139, column:106,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:106,the value of plot_cost is         : 7.181409091401012 

 At row:139, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:139, column:107,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:107,the value of plot_cost is         : 7.269305861684594 

 At row:139, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:139, column:108,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:108,the value of plot_cost is         : 7.358010692370687 

 At row:139, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:139, column:109,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:109,the value of plot_cost is         : 7.447523583459296 

 At row:139, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:139, column:110,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:110,the value of plot_cost is         : 7.537844534950419 

 At row:139, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:139, column:111,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:111,the value of plot_cost is         : 7.628973546844056 

 At row:139, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:139, column:112,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:112,the value of plot_cost is         : 7.72091061914021 

 At row:139, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:139, column:113,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:113,the value of plot_cost is         : 7.813655751838883 

 At row:139, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:139, column:114,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:114,the value of plot_cost is         : 7.907208944940066 

 At row:139, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:139, column:115,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:115,the value of plot_cost is         : 8.001570198443765 

 At row:139, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:139, column:116,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:116,the value of plot_cost is         : 8.096739512349977 

 At row:139, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:139, column:117,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:117,the value of plot_cost is         : 8.19271688665871 

 At row:139, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:139, column:118,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:118,the value of plot_cost is         : 8.289502321369955 

 At row:139, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:139, column:119,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:119,the value of plot_cost is         : 8.387095816483715 

 At row:139, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:139, column:120,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:120,the value of plot_cost is         : 8.485497371999989 

 At row:139, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:139, column:121,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:121,the value of plot_cost is         : 8.584706987918777 

 At row:139, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:139, column:122,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:122,the value of plot_cost is         : 8.68472466424008 

 At row:139, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:139, column:123,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:123,the value of plot_cost is         : 8.785550400963906 

 At row:139, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:139, column:124,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:124,the value of plot_cost is         : 8.88718419809024 

 At row:139, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:139, column:125,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:125,the value of plot_cost is         : 8.98962605561909 

 At row:139, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:139, column:126,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:126,the value of plot_cost is         : 9.092875973550452 

 At row:139, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:139, column:127,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:127,the value of plot_cost is         : 9.196933951884336 

 At row:139, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:139, column:128,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:128,the value of plot_cost is         : 9.301799990620731 

 At row:139, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:139, column:129,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:129,the value of plot_cost is         : 9.40747408975964 

 At row:139, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:139, column:130,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:130,the value of plot_cost is         : 9.513956249301065 

 At row:139, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:139, column:131,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:131,the value of plot_cost is         : 9.621246469245007 

 At row:139, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:139, column:132,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:132,the value of plot_cost is         : 9.729344749591462 

 At row:139, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:139, column:133,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:133,the value of plot_cost is         : 9.838251090340437 

 At row:139, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:139, column:134,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:134,the value of plot_cost is         : 9.94796549149192 

 At row:139, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:139, column:135,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:135,the value of plot_cost is         : 10.05848795304592 

 At row:139, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:139, column:136,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:136,the value of plot_cost is         : 10.169818475002435 

 At row:139, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:139, column:137,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:137,the value of plot_cost is         : 10.28195705736147 

 At row:139, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:139, column:138,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:138,the value of plot_cost is         : 10.394903700123017 

 At row:139, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:139, column:139,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:139,the value of plot_cost is         : 10.508658403287077 

 At row:139, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:139, column:140,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:140,the value of plot_cost is         : 10.623221166853654 

 At row:139, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:139, column:141,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:141,the value of plot_cost is         : 10.738591990822743 

 At row:139, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:139, column:142,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:142,the value of plot_cost is         : 10.85477087519435 

 At row:139, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:139, column:143,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:143,the value of plot_cost is         : 10.971757819968477 

 At row:139, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:139, column:144,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:144,the value of plot_cost is         : 11.08955282514511 

 At row:139, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:139, column:145,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:145,the value of plot_cost is         : 11.208155890724262 

 At row:139, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:139, column:146,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:146,the value of plot_cost is         : 11.32756701670593 

 At row:139, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:139, column:147,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:147,the value of plot_cost is         : 11.447786203090114 

 At row:139, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:139, column:148,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:148,the value of plot_cost is         : 11.568813449876814 

 At row:139, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:139, column:149,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:149,the value of plot_cost is         : 11.690648757066022 

 At row:139, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:139, column:150,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:150,the value of plot_cost is         : 11.81329212465775 

 At row:139, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:139, column:151,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:151,the value of plot_cost is         : 11.936743552651993 

 At row:139, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:139, column:152,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:152,the value of plot_cost is         : 12.061003041048746 

 At row:139, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:139, column:153,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:153,the value of plot_cost is         : 12.186070589848025 

 At row:139, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:139, column:154,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:154,the value of plot_cost is         : 12.311946199049814 

 At row:139, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:139, column:155,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:155,the value of plot_cost is         : 12.438629868654113 

 At row:139, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:139, column:156,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:156,the value of plot_cost is         : 12.566121598660935 

 At row:139, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:139, column:157,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:157,the value of plot_cost is         : 12.694421389070264 

 At row:139, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:139, column:158,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:158,the value of plot_cost is         : 12.823529239882115 

 At row:139, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:139, column:159,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:159,the value of plot_cost is         : 12.953445151096478 

 At row:139, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:139, column:160,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:160,the value of plot_cost is         : 13.084169122713353 

 At row:139, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:139, column:161,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:161,the value of plot_cost is         : 13.215701154732747 

 At row:139, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:139, column:162,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:162,the value of plot_cost is         : 13.348041247154654 

 At row:139, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:139, column:163,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:163,the value of plot_cost is         : 13.481189399979082 

 At row:139, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:139, column:164,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:164,the value of plot_cost is         : 13.615145613206018 

 At row:139, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:139, column:165,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:165,the value of plot_cost is         : 13.749909886835471 

 At row:139, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:139, column:166,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:166,the value of plot_cost is         : 13.885482220867441 

 At row:139, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:139, column:167,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:167,the value of plot_cost is         : 14.021862615301927 

 At row:139, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:139, column:168,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:168,the value of plot_cost is         : 14.159051070138926 

 At row:139, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:139, column:169,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:169,the value of plot_cost is         : 14.297047585378438 

 At row:139, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:139, column:170,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:170,the value of plot_cost is         : 14.435852161020469 

 At row:139, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:139, column:171,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:171,the value of plot_cost is         : 14.575464797065015 

 At row:139, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:139, column:172,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:172,the value of plot_cost is         : 14.71588549351207 

 At row:139, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:139, column:173,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:173,the value of plot_cost is         : 14.857114250361649 

 At row:139, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:139, column:174,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:174,the value of plot_cost is         : 14.999151067613738 

 At row:139, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:139, column:175,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:175,the value of plot_cost is         : 15.14199594526834 

 At row:139, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:139, column:176,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:176,the value of plot_cost is         : 15.285648883325461 

 At row:139, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:139, column:177,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:177,the value of plot_cost is         : 15.430109881785095 

 At row:139, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:139, column:178,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:178,the value of plot_cost is         : 15.575378940647248 

 At row:139, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:139, column:179,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:179,the value of plot_cost is         : 15.72145605991191 

 At row:139, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:139, column:180,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:180,the value of plot_cost is         : 15.868341239579088 

 At row:139, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:139, column:181,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:181,the value of plot_cost is         : 16.016034479648784 

 At row:139, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:139, column:182,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:182,the value of plot_cost is         : 16.164535780120993 

 At row:139, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:139, column:183,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:183,the value of plot_cost is         : 16.313845140995724 

 At row:139, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:139, column:184,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:184,the value of plot_cost is         : 16.46396256227296 

 At row:139, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:139, column:185,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:185,the value of plot_cost is         : 16.614888043952714 

 At row:139, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:139, column:186,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:186,the value of plot_cost is         : 16.76662158603499 

 At row:139, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:139, column:187,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:187,the value of plot_cost is         : 16.919163188519775 

 At row:139, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:139, column:188,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:188,the value of plot_cost is         : 17.072512851407073 

 At row:139, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:139, column:189,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:189,the value of plot_cost is         : 17.226670574696893 

 At row:139, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:139, column:190,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:190,the value of plot_cost is         : 17.38163635838922 

 At row:139, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:139, column:191,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:191,the value of plot_cost is         : 17.537410202484068 

 At row:139, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:139, column:192,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:192,the value of plot_cost is         : 17.69399210698143 

 At row:139, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:139, column:193,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:193,the value of plot_cost is         : 17.851382071881307 

 At row:139, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:139, column:194,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:194,the value of plot_cost is         : 18.009580097183697 

 At row:139, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:139, column:195,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:195,the value of plot_cost is         : 18.1685861828886 

 At row:139, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:139, column:196,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:196,the value of plot_cost is         : 18.32840032899603 

 At row:139, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:139, column:197,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:197,the value of plot_cost is         : 18.489022535505967 

 At row:139, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:139, column:198,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:198,the value of plot_cost is         : 18.650452802418418 

 At row:139, column:199,the value of plot_t0 is           : 3.0
 At row:139, column:199,the value of plot_t1 is           : 1.7939698492462313
 At row:139, column:199,the value of plot_cost is         : 18.81269112973338 

 At row:140, column:0,the value of plot_t0 is           : -1.0
 At row:140, column:0,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:0,the value of plot_cost is         : 2.564583109373142 

 At row:140, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:140, column:1,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:1,the value of plot_cost is         : 2.5695036200384567 

 At row:140, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:140, column:2,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:2,the value of plot_cost is         : 2.5752321911062874 

 At row:140, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:140, column:3,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:3,the value of plot_cost is         : 2.5817688225766324 

 At row:140, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:140, column:4,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:4,the value of plot_cost is         : 2.589113514449494 

 At row:140, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:140, column:5,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:5,the value of plot_cost is         : 2.5972662667248687 

 At row:140, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:140, column:6,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:6,the value of plot_cost is         : 2.606227079402758 

 At row:140, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:140, column:7,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:7,the value of plot_cost is         : 2.6159959524831646 

 At row:140, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:140, column:8,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:8,the value of plot_cost is         : 2.6265728859660857 

 At row:140, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:140, column:9,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:9,the value of plot_cost is         : 2.6379578798515215 

 At row:140, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:140, column:10,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:10,the value of plot_cost is         : 2.650150934139472 

 At row:140, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:140, column:11,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:11,the value of plot_cost is         : 2.6631520488299376 

 At row:140, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:140, column:12,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:12,the value of plot_cost is         : 2.6769612239229192 

 At row:140, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:140, column:13,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:13,the value of plot_cost is         : 2.691578459418416 

 At row:140, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:140, column:14,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:14,the value of plot_cost is         : 2.707003755316427 

 At row:140, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:140, column:15,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:15,the value of plot_cost is         : 2.723237111616953 

 At row:140, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:140, column:16,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:16,the value of plot_cost is         : 2.7402785283199944 

 At row:140, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:140, column:17,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:17,the value of plot_cost is         : 2.758128005425551 

 At row:140, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:140, column:18,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:18,the value of plot_cost is         : 2.7767855429336232 

 At row:140, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:140, column:19,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:19,the value of plot_cost is         : 2.7962511408442103 

 At row:140, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:140, column:20,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:20,the value of plot_cost is         : 2.816524799157311 

 At row:140, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:140, column:21,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:21,the value of plot_cost is         : 2.8376065178729277 

 At row:140, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:140, column:22,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:22,the value of plot_cost is         : 2.85949629699106 

 At row:140, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:140, column:23,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:23,the value of plot_cost is         : 2.8821941365117074 

 At row:140, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:140, column:24,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:24,the value of plot_cost is         : 2.90570003643487 

 At row:140, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:140, column:25,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:25,the value of plot_cost is         : 2.9300139967605467 

 At row:140, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:140, column:26,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:26,the value of plot_cost is         : 2.9551360174887384 

 At row:140, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:140, column:27,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:27,the value of plot_cost is         : 2.9810660986194453 

 At row:140, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:140, column:28,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:28,the value of plot_cost is         : 3.0078042401526686 

 At row:140, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:140, column:29,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:29,the value of plot_cost is         : 3.0353504420884065 

 At row:140, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:140, column:30,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:30,the value of plot_cost is         : 3.063704704426659 

 At row:140, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:140, column:31,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:31,the value of plot_cost is         : 3.092867027167426 

 At row:140, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:140, column:32,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:32,the value of plot_cost is         : 3.122837410310709 

 At row:140, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:140, column:33,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:33,the value of plot_cost is         : 3.153615853856508 

 At row:140, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:140, column:34,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:34,the value of plot_cost is         : 3.1852023578048216 

 At row:140, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:140, column:35,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:35,the value of plot_cost is         : 3.2175969221556486 

 At row:140, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:140, column:36,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:36,the value of plot_cost is         : 3.250799546908991 

 At row:140, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:140, column:37,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:37,the value of plot_cost is         : 3.2848102320648493 

 At row:140, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:140, column:38,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:38,the value of plot_cost is         : 3.3196289776232235 

 At row:140, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:140, column:39,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:39,the value of plot_cost is         : 3.355255783584113 

 At row:140, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:140, column:40,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:40,the value of plot_cost is         : 3.3916906499475155 

 At row:140, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:140, column:41,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:41,the value of plot_cost is         : 3.4289335767134337 

 At row:140, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:140, column:42,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:42,the value of plot_cost is         : 3.466984563881867 

 At row:140, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:140, column:43,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:43,the value of plot_cost is         : 3.5058436114528178 

 At row:140, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:140, column:44,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:44,the value of plot_cost is         : 3.545510719426281 

 At row:140, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:140, column:45,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:45,the value of plot_cost is         : 3.5859858878022592 

 At row:140, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:140, column:46,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:46,the value of plot_cost is         : 3.627269116580753 

 At row:140, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:140, column:47,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:47,the value of plot_cost is         : 3.669360405761762 

 At row:140, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:140, column:48,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:48,the value of plot_cost is         : 3.712259755345288 

 At row:140, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:140, column:49,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:49,the value of plot_cost is         : 3.7559671653313274 

 At row:140, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:140, column:50,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:50,the value of plot_cost is         : 3.800482635719881 

 At row:140, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:140, column:51,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:51,the value of plot_cost is         : 3.8458061665109495 

 At row:140, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:140, column:52,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:52,the value of plot_cost is         : 3.891937757704534 

 At row:140, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:140, column:53,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:53,the value of plot_cost is         : 3.9388774093006353 

 At row:140, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:140, column:54,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:54,the value of plot_cost is         : 3.9866251212992507 

 At row:140, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:140, column:55,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:55,the value of plot_cost is         : 4.035180893700379 

 At row:140, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:140, column:56,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:56,the value of plot_cost is         : 4.084544726504023 

 At row:140, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:140, column:57,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:57,the value of plot_cost is         : 4.1347166197101854 

 At row:140, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:140, column:58,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:58,the value of plot_cost is         : 4.18569657331886 

 At row:140, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:140, column:59,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:59,the value of plot_cost is         : 4.237484587330051 

 At row:140, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:140, column:60,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:60,the value of plot_cost is         : 4.290080661743755 

 At row:140, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:140, column:61,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:61,the value of plot_cost is         : 4.3434847965599745 

 At row:140, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:140, column:62,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:62,the value of plot_cost is         : 4.3976969917787105 

 At row:140, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:140, column:63,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:63,the value of plot_cost is         : 4.4527172473999626 

 At row:140, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:140, column:64,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:64,the value of plot_cost is         : 4.508545563423728 

 At row:140, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:140, column:65,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:65,the value of plot_cost is         : 4.5651819398500075 

 At row:140, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:140, column:66,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:66,the value of plot_cost is         : 4.622626376678803 

 At row:140, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:140, column:67,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:67,the value of plot_cost is         : 4.680878873910117 

 At row:140, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:140, column:68,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:68,the value of plot_cost is         : 4.739939431543941 

 At row:140, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:140, column:69,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:69,the value of plot_cost is         : 4.799808049580284 

 At row:140, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:140, column:70,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:70,the value of plot_cost is         : 4.860484728019138 

 At row:140, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:140, column:71,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:71,the value of plot_cost is         : 4.921969466860509 

 At row:140, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:140, column:72,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:72,the value of plot_cost is         : 4.984262266104396 

 At row:140, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:140, column:73,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:73,the value of plot_cost is         : 5.047363125750798 

 At row:140, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:140, column:74,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:74,the value of plot_cost is         : 5.111272045799715 

 At row:140, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:140, column:75,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:75,the value of plot_cost is         : 5.175989026251145 

 At row:140, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:140, column:76,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:76,the value of plot_cost is         : 5.241514067105091 

 At row:140, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:140, column:77,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:77,the value of plot_cost is         : 5.307847168361556 

 At row:140, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:140, column:78,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:78,the value of plot_cost is         : 5.374988330020532 

 At row:140, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:140, column:79,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:79,the value of plot_cost is         : 5.442937552082023 

 At row:140, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:140, column:80,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:80,the value of plot_cost is         : 5.51169483454603 

 At row:140, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:140, column:81,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:81,the value of plot_cost is         : 5.581260177412552 

 At row:140, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:140, column:82,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:82,the value of plot_cost is         : 5.651633580681589 

 At row:140, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:140, column:83,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:83,the value of plot_cost is         : 5.722815044353144 

 At row:140, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:140, column:84,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:84,the value of plot_cost is         : 5.7948045684272085 

 At row:140, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:140, column:85,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:85,the value of plot_cost is         : 5.867602152903791 

 At row:140, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:140, column:86,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:86,the value of plot_cost is         : 5.941207797782888 

 At row:140, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:140, column:87,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:87,the value of plot_cost is         : 6.015621503064503 

 At row:140, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:140, column:88,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:88,the value of plot_cost is         : 6.090843268748632 

 At row:140, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:140, column:89,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:89,the value of plot_cost is         : 6.166873094835273 

 At row:140, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:140, column:90,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:90,the value of plot_cost is         : 6.243710981324431 

 At row:140, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:140, column:91,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:91,the value of plot_cost is         : 6.321356928216102 

 At row:140, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:140, column:92,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:92,the value of plot_cost is         : 6.39981093551029 

 At row:140, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:140, column:93,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:93,the value of plot_cost is         : 6.479073003206997 

 At row:140, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:140, column:94,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:94,the value of plot_cost is         : 6.559143131306213 

 At row:140, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:140, column:95,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:95,the value of plot_cost is         : 6.640021319807946 

 At row:140, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:140, column:96,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:96,the value of plot_cost is         : 6.721707568712194 

 At row:140, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:140, column:97,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:97,the value of plot_cost is         : 6.80420187801896 

 At row:140, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:140, column:98,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:98,the value of plot_cost is         : 6.8875042477282395 

 At row:140, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:140, column:99,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:99,the value of plot_cost is         : 6.971614677840033 

 At row:140, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:140, column:100,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:100,the value of plot_cost is         : 7.056533168354338 

 At row:140, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:140, column:101,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:101,the value of plot_cost is         : 7.142259719271162 

 At row:140, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:140, column:102,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:102,the value of plot_cost is         : 7.228794330590501 

 At row:140, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:140, column:103,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:103,the value of plot_cost is         : 7.3161370023123595 

 At row:140, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:140, column:104,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:104,the value of plot_cost is         : 7.404287734436728 

 At row:140, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:140, column:105,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:105,the value of plot_cost is         : 7.493246526963611 

 At row:140, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:140, column:106,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:106,the value of plot_cost is         : 7.583013379893007 

 At row:140, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:140, column:107,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:107,the value of plot_cost is         : 7.673588293224926 

 At row:140, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:140, column:108,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:108,the value of plot_cost is         : 7.764971266959355 

 At row:140, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:140, column:109,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:109,the value of plot_cost is         : 7.857162301096299 

 At row:140, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:140, column:110,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:110,the value of plot_cost is         : 7.9501613956357575 

 At row:140, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:140, column:111,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:111,the value of plot_cost is         : 8.043968550577732 

 At row:140, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:140, column:112,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:112,the value of plot_cost is         : 8.138583765922222 

 At row:140, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:140, column:113,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:113,the value of plot_cost is         : 8.23400704166923 

 At row:140, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:140, column:114,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:114,the value of plot_cost is         : 8.33023837781875 

 At row:140, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:140, column:115,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:115,the value of plot_cost is         : 8.427277774370783 

 At row:140, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:140, column:116,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:116,the value of plot_cost is         : 8.525125231325331 

 At row:140, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:140, column:117,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:117,the value of plot_cost is         : 8.6237807486824 

 At row:140, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:140, column:118,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:118,the value of plot_cost is         : 8.72324432644198 

 At row:140, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:140, column:119,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:119,the value of plot_cost is         : 8.823515964604074 

 At row:140, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:140, column:120,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:120,the value of plot_cost is         : 8.924595663168686 

 At row:140, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:140, column:121,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:121,the value of plot_cost is         : 9.026483422135808 

 At row:140, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:140, column:122,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:122,the value of plot_cost is         : 9.12917924150545 

 At row:140, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:140, column:123,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:123,the value of plot_cost is         : 9.232683121277608 

 At row:140, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:140, column:124,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:124,the value of plot_cost is         : 9.33699506145228 

 At row:140, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:140, column:125,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:125,the value of plot_cost is         : 9.442115062029464 

 At row:140, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:140, column:126,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:126,the value of plot_cost is         : 9.548043123009164 

 At row:140, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:140, column:127,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:127,the value of plot_cost is         : 9.654779244391383 

 At row:140, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:140, column:128,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:128,the value of plot_cost is         : 9.762323426176115 

 At row:140, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:140, column:129,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:129,the value of plot_cost is         : 9.870675668363361 

 At row:140, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:140, column:130,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:130,the value of plot_cost is         : 9.97983597095312 

 At row:140, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:140, column:131,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:131,the value of plot_cost is         : 10.089804333945397 

 At row:140, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:140, column:132,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:132,the value of plot_cost is         : 10.20058075734019 

 At row:140, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:140, column:133,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:133,the value of plot_cost is         : 10.312165241137498 

 At row:140, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:140, column:134,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:134,the value of plot_cost is         : 10.424557785337319 

 At row:140, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:140, column:135,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:135,the value of plot_cost is         : 10.537758389939654 

 At row:140, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:140, column:136,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:136,the value of plot_cost is         : 10.651767054944505 

 At row:140, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:140, column:137,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:137,the value of plot_cost is         : 10.766583780351874 

 At row:140, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:140, column:138,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:138,the value of plot_cost is         : 10.882208566161758 

 At row:140, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:140, column:139,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:139,the value of plot_cost is         : 10.99864141237415 

 At row:140, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:140, column:140,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:140,the value of plot_cost is         : 11.115882318989065 

 At row:140, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:140, column:141,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:141,the value of plot_cost is         : 11.233931286006488 

 At row:140, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:140, column:142,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:142,the value of plot_cost is         : 11.352788313426434 

 At row:140, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:140, column:143,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:143,the value of plot_cost is         : 11.472453401248893 

 At row:140, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:140, column:144,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:144,the value of plot_cost is         : 11.592926549473868 

 At row:140, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:140, column:145,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:145,the value of plot_cost is         : 11.714207758101354 

 At row:140, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:140, column:146,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:146,the value of plot_cost is         : 11.836297027131353 

 At row:140, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:140, column:147,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:147,the value of plot_cost is         : 11.959194356563874 

 At row:140, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:140, column:148,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:148,the value of plot_cost is         : 12.082899746398908 

 At row:140, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:140, column:149,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:149,the value of plot_cost is         : 12.207413196636455 

 At row:140, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:140, column:150,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:150,the value of plot_cost is         : 12.332734707276519 

 At row:140, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:140, column:151,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:151,the value of plot_cost is         : 12.4588642783191 

 At row:140, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:140, column:152,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:152,the value of plot_cost is         : 12.58580190976419 

 At row:140, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:140, column:153,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:153,the value of plot_cost is         : 12.7135476016118 

 At row:140, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:140, column:154,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:154,the value of plot_cost is         : 12.842101353861924 

 At row:140, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:140, column:155,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:155,the value of plot_cost is         : 12.97146316651456 

 At row:140, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:140, column:156,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:156,the value of plot_cost is         : 13.101633039569716 

 At row:140, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:140, column:157,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:157,the value of plot_cost is         : 13.232610973027384 

 At row:140, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:140, column:158,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:158,the value of plot_cost is         : 13.36439696688757 

 At row:140, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:140, column:159,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:159,the value of plot_cost is         : 13.496991021150267 

 At row:140, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:140, column:160,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:160,the value of plot_cost is         : 13.630393135815483 

 At row:140, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:140, column:161,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:161,the value of plot_cost is         : 13.76460331088321 

 At row:140, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:140, column:162,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:162,the value of plot_cost is         : 13.899621546353451 

 At row:140, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:140, column:163,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:163,the value of plot_cost is         : 14.035447842226215 

 At row:140, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:140, column:164,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:164,the value of plot_cost is         : 14.17208219850149 

 At row:140, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:140, column:165,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:165,the value of plot_cost is         : 14.309524615179278 

 At row:140, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:140, column:166,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:166,the value of plot_cost is         : 14.447775092259587 

 At row:140, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:140, column:167,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:167,the value of plot_cost is         : 14.586833629742404 

 At row:140, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:140, column:168,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:168,the value of plot_cost is         : 14.726700227627738 

 At row:140, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:140, column:169,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:169,the value of plot_cost is         : 14.867374885915586 

 At row:140, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:140, column:170,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:170,the value of plot_cost is         : 15.008857604605952 

 At row:140, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:140, column:171,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:171,the value of plot_cost is         : 15.151148383698832 

 At row:140, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:140, column:172,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:172,the value of plot_cost is         : 15.294247223194226 

 At row:140, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:140, column:173,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:173,the value of plot_cost is         : 15.438154123092138 

 At row:140, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:140, column:174,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:174,the value of plot_cost is         : 15.582869083392563 

 At row:140, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:140, column:175,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:175,the value of plot_cost is         : 15.728392104095501 

 At row:140, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:140, column:176,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:176,the value of plot_cost is         : 15.874723185200963 

 At row:140, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:140, column:177,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:177,the value of plot_cost is         : 16.02186232670893 

 At row:140, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:140, column:178,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:178,the value of plot_cost is         : 16.169809528619414 

 At row:140, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:140, column:179,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:179,the value of plot_cost is         : 16.318564790932417 

 At row:140, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:140, column:180,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:180,the value of plot_cost is         : 16.468128113647932 

 At row:140, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:140, column:181,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:181,the value of plot_cost is         : 16.618499496765963 

 At row:140, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:140, column:182,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:182,the value of plot_cost is         : 16.769678940286507 

 At row:140, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:140, column:183,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:183,the value of plot_cost is         : 16.92166644420957 

 At row:140, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:140, column:184,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:184,the value of plot_cost is         : 17.074462008535146 

 At row:140, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:140, column:185,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:185,the value of plot_cost is         : 17.228065633263235 

 At row:140, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:140, column:186,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:186,the value of plot_cost is         : 17.38247731839385 

 At row:140, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:140, column:187,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:187,the value of plot_cost is         : 17.537697063926966 

 At row:140, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:140, column:188,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:188,the value of plot_cost is         : 17.693724869862603 

 At row:140, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:140, column:189,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:189,the value of plot_cost is         : 17.85056073620075 

 At row:140, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:140, column:190,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:190,the value of plot_cost is         : 18.00820466294142 

 At row:140, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:140, column:191,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:191,the value of plot_cost is         : 18.166656650084605 

 At row:140, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:140, column:192,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:192,the value of plot_cost is         : 18.325916697630294 

 At row:140, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:140, column:193,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:193,the value of plot_cost is         : 18.48598480557851 

 At row:140, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:140, column:194,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:194,the value of plot_cost is         : 18.646860973929236 

 At row:140, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:140, column:195,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:195,the value of plot_cost is         : 18.80854520268248 

 At row:140, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:140, column:196,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:196,the value of plot_cost is         : 18.971037491838242 

 At row:140, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:140, column:197,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:197,the value of plot_cost is         : 19.134337841396512 

 At row:140, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:140, column:198,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:198,the value of plot_cost is         : 19.298446251357298 

 At row:140, column:199,the value of plot_t0 is           : 3.0
 At row:140, column:199,the value of plot_t1 is           : 1.8140703517587942
 At row:140, column:199,the value of plot_cost is         : 19.463362721720596 

 At row:141, column:0,the value of plot_t0 is           : -1.0
 At row:141, column:0,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:0,the value of plot_cost is         : 2.69488688958071 

 At row:141, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:141, column:1,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:1,the value of plot_cost is         : 2.7024855432943613 

 At row:141, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:141, column:2,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:2,the value of plot_cost is         : 2.7108922574105265 

 At row:141, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:141, column:3,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:3,the value of plot_cost is         : 2.720107031929208 

 At row:141, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:141, column:4,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:4,the value of plot_cost is         : 2.7301298668504046 

 At row:141, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:141, column:5,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:5,the value of plot_cost is         : 2.740960762174115 

 At row:141, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:141, column:6,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:6,the value of plot_cost is         : 2.7525997179003414 

 At row:141, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:141, column:7,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:7,the value of plot_cost is         : 2.7650467340290823 

 At row:141, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:141, column:8,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:8,the value of plot_cost is         : 2.77830181056034 

 At row:141, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:141, column:9,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:9,the value of plot_cost is         : 2.7923649474941112 

 At row:141, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:141, column:10,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:10,the value of plot_cost is         : 2.8072361448303966 

 At row:141, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:141, column:11,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:11,the value of plot_cost is         : 2.822915402569199 

 At row:141, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:141, column:12,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:12,the value of plot_cost is         : 2.8394027207105155 

 At row:141, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:141, column:13,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:13,the value of plot_cost is         : 2.856698099254348 

 At row:141, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:141, column:14,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:14,the value of plot_cost is         : 2.874801538200695 

 At row:141, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:141, column:15,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:15,the value of plot_cost is         : 2.8937130375495563 

 At row:141, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:141, column:16,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:16,the value of plot_cost is         : 2.9134325973009334 

 At row:141, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:141, column:17,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:17,the value of plot_cost is         : 2.9339602174548256 

 At row:141, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:141, column:18,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:18,the value of plot_cost is         : 2.9552958980112334 

 At row:141, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:141, column:19,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:19,the value of plot_cost is         : 2.9774396389701563 

 At row:141, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:141, column:20,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:20,the value of plot_cost is         : 3.0003914403315926 

 At row:141, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:141, column:21,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:21,the value of plot_cost is         : 3.0241513020955453 

 At row:141, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:141, column:22,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:22,the value of plot_cost is         : 3.0487192242620123 

 At row:141, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:141, column:23,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:23,the value of plot_cost is         : 3.0740952068309966 

 At row:141, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:141, column:24,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:24,the value of plot_cost is         : 3.1002792498024943 

 At row:141, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:141, column:25,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:25,the value of plot_cost is         : 3.127271353176506 

 At row:141, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:141, column:26,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:26,the value of plot_cost is         : 3.1550715169530346 

 At row:141, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:141, column:27,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:27,the value of plot_cost is         : 3.1836797411320767 

 At row:141, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:141, column:28,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:28,the value of plot_cost is         : 3.2130960257136363 

 At row:141, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:141, column:29,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:29,the value of plot_cost is         : 3.2433203706977096 

 At row:141, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:141, column:30,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:30,the value of plot_cost is         : 3.274352776084297 

 At row:141, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:141, column:31,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:31,the value of plot_cost is         : 3.3061932418734004 

 At row:141, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:141, column:32,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:32,the value of plot_cost is         : 3.338841768065018 

 At row:141, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:141, column:33,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:33,the value of plot_cost is         : 3.372298354659153 

 At row:141, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:141, column:34,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:34,the value of plot_cost is         : 3.4065630016558024 

 At row:141, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:141, column:35,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:35,the value of plot_cost is         : 3.4416357090549647 

 At row:141, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:141, column:36,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:36,the value of plot_cost is         : 3.4775164768566444 

 At row:141, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:141, column:37,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:37,the value of plot_cost is         : 3.5142053050608375 

 At row:141, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:141, column:38,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:38,the value of plot_cost is         : 3.5517021936675475 

 At row:141, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:141, column:39,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:39,the value of plot_cost is         : 3.590007142676772 

 At row:141, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:141, column:40,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:40,the value of plot_cost is         : 3.62912015208851 

 At row:141, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:141, column:41,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:41,the value of plot_cost is         : 3.669041221902765 

 At row:141, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:141, column:42,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:42,the value of plot_cost is         : 3.709770352119533 

 At row:141, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:141, column:43,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:43,the value of plot_cost is         : 3.7513075427388194 

 At row:141, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:141, column:44,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:44,the value of plot_cost is         : 3.7936527937606193 

 At row:141, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:141, column:45,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:45,the value of plot_cost is         : 3.8368061051849325 

 At row:141, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:141, column:46,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:46,the value of plot_cost is         : 3.8807674770117626 

 At row:141, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:141, column:47,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:47,the value of plot_cost is         : 3.925536909241107 

 At row:141, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:141, column:48,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:48,the value of plot_cost is         : 3.971114401872968 

 At row:141, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:141, column:49,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:49,the value of plot_cost is         : 4.017499954907343 

 At row:141, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:141, column:50,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:50,the value of plot_cost is         : 4.064693568344232 

 At row:141, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:141, column:51,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:51,the value of plot_cost is         : 4.112695242183637 

 At row:141, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:141, column:52,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:52,the value of plot_cost is         : 4.161504976425557 

 At row:141, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:141, column:53,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:53,the value of plot_cost is         : 4.211122771069994 

 At row:141, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:141, column:54,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:54,the value of plot_cost is         : 4.261548626116944 

 At row:141, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:141, column:55,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:55,the value of plot_cost is         : 4.312782541566409 

 At row:141, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:141, column:56,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:56,the value of plot_cost is         : 4.36482451741839 

 At row:141, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:141, column:57,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:57,the value of plot_cost is         : 4.417674553672886 

 At row:141, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:141, column:58,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:58,the value of plot_cost is         : 4.471332650329897 

 At row:141, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:141, column:59,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:59,the value of plot_cost is         : 4.525798807389424 

 At row:141, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:141, column:60,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:60,the value of plot_cost is         : 4.581073024851463 

 At row:141, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:141, column:61,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:61,the value of plot_cost is         : 4.637155302716019 

 At row:141, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:141, column:62,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:62,the value of plot_cost is         : 4.694045640983091 

 At row:141, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:141, column:63,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:63,the value of plot_cost is         : 4.751744039652678 

 At row:141, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:141, column:64,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:64,the value of plot_cost is         : 4.81025049872478 

 At row:141, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:141, column:65,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:65,the value of plot_cost is         : 4.869565018199395 

 At row:141, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:141, column:66,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:66,the value of plot_cost is         : 4.9296875980765265 

 At row:141, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:141, column:67,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:67,the value of plot_cost is         : 4.990618238356173 

 At row:141, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:141, column:68,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:68,the value of plot_cost is         : 5.052356939038335 

 At row:141, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:141, column:69,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:69,the value of plot_cost is         : 5.114903700123012 

 At row:141, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:141, column:70,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:70,the value of plot_cost is         : 5.1782585216102035 

 At row:141, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:141, column:71,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:71,the value of plot_cost is         : 5.24242140349991 

 At row:141, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:141, column:72,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:72,the value of plot_cost is         : 5.307392345792132 

 At row:141, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:141, column:73,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:73,the value of plot_cost is         : 5.37317134848687 

 At row:141, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:141, column:74,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:74,the value of plot_cost is         : 5.439758411584123 

 At row:141, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:141, column:75,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:75,the value of plot_cost is         : 5.507153535083889 

 At row:141, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:141, column:76,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:76,the value of plot_cost is         : 5.575356718986171 

 At row:141, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:141, column:77,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:77,the value of plot_cost is         : 5.64436796329097 

 At row:141, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:141, column:78,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:78,the value of plot_cost is         : 5.714187267998281 

 At row:141, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:141, column:79,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:79,the value of plot_cost is         : 5.784814633108108 

 At row:141, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:141, column:80,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:80,the value of plot_cost is         : 5.856250058620452 

 At row:141, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:141, column:81,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:81,the value of plot_cost is         : 5.92849354453531 

 At row:141, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:141, column:82,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:82,the value of plot_cost is         : 6.001545090852682 

 At row:141, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:141, column:83,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:83,the value of plot_cost is         : 6.07540469757257 

 At row:141, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:141, column:84,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:84,the value of plot_cost is         : 6.1500723646949735 

 At row:141, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:141, column:85,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:85,the value of plot_cost is         : 6.225548092219892 

 At row:141, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:141, column:86,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:86,the value of plot_cost is         : 6.301831880147324 

 At row:141, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:141, column:87,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:87,the value of plot_cost is         : 6.378923728477273 

 At row:141, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:141, column:88,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:88,the value of plot_cost is         : 6.456823637209737 

 At row:141, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:141, column:89,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:89,the value of plot_cost is         : 6.535531606344715 

 At row:141, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:141, column:90,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:90,the value of plot_cost is         : 6.615047635882208 

 At row:141, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:141, column:91,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:91,the value of plot_cost is         : 6.695371725822217 

 At row:141, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:141, column:92,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:92,the value of plot_cost is         : 6.776503876164741 

 At row:141, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:141, column:93,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:93,the value of plot_cost is         : 6.85844408690978 

 At row:141, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:141, column:94,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:94,the value of plot_cost is         : 6.941192358057333 

 At row:141, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:141, column:95,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:95,the value of plot_cost is         : 7.024748689607402 

 At row:141, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:141, column:96,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:96,the value of plot_cost is         : 7.109113081559986 

 At row:141, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:141, column:97,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:97,the value of plot_cost is         : 7.194285533915087 

 At row:141, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:141, column:98,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:98,the value of plot_cost is         : 7.280266046672701 

 At row:141, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:141, column:99,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:99,the value of plot_cost is         : 7.36705461983283 

 At row:141, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:141, column:100,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:100,the value of plot_cost is         : 7.454651253395474 

 At row:141, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:141, column:101,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:101,the value of plot_cost is         : 7.543055947360633 

 At row:141, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:141, column:102,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:102,the value of plot_cost is         : 7.632268701728308 

 At row:141, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:141, column:103,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:103,the value of plot_cost is         : 7.7222895164985 

 At row:141, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:141, column:104,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:104,the value of plot_cost is         : 7.813118391671204 

 At row:141, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:141, column:105,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:105,the value of plot_cost is         : 7.904755327246422 

 At row:141, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:141, column:106,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:106,the value of plot_cost is         : 7.997200323224159 

 At row:141, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:141, column:107,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:107,the value of plot_cost is         : 8.09045337960441 

 At row:141, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:141, column:108,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:108,the value of plot_cost is         : 8.184514496387175 

 At row:141, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:141, column:109,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:109,the value of plot_cost is         : 8.279383673572456 

 At row:141, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:141, column:110,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:110,the value of plot_cost is         : 8.37506091116025 

 At row:141, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:141, column:111,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:111,the value of plot_cost is         : 8.47154620915056 

 At row:141, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:141, column:112,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:112,the value of plot_cost is         : 8.568839567543385 

 At row:141, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:141, column:113,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:113,the value of plot_cost is         : 8.666940986338725 

 At row:141, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:141, column:114,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:114,the value of plot_cost is         : 8.765850465536582 

 At row:141, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:141, column:115,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:115,the value of plot_cost is         : 8.865568005136954 

 At row:141, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:141, column:116,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:116,the value of plot_cost is         : 8.966093605139838 

 At row:141, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:141, column:117,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:117,the value of plot_cost is         : 9.06742726554524 

 At row:141, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:141, column:118,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:118,the value of plot_cost is         : 9.169568986353156 

 At row:141, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:141, column:119,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:119,the value of plot_cost is         : 9.272518767563588 

 At row:141, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:141, column:120,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:120,the value of plot_cost is         : 9.376276609176534 

 At row:141, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:141, column:121,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:121,the value of plot_cost is         : 9.480842511191995 

 At row:141, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:141, column:122,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:122,the value of plot_cost is         : 9.58621647360997 

 At row:141, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:141, column:123,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:123,the value of plot_cost is         : 9.692398496430462 

 At row:141, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:141, column:124,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:124,the value of plot_cost is         : 9.799388579653469 

 At row:141, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:141, column:125,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:125,the value of plot_cost is         : 9.907186723278992 

 At row:141, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:141, column:126,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:126,the value of plot_cost is         : 10.015792927307027 

 At row:141, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:141, column:127,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:127,the value of plot_cost is         : 10.125207191737578 

 At row:141, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:141, column:128,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:128,the value of plot_cost is         : 10.235429516570646 

 At row:141, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:141, column:129,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:129,the value of plot_cost is         : 10.346459901806229 

 At row:141, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:141, column:130,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:130,the value of plot_cost is         : 10.458298347444329 

 At row:141, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:141, column:131,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:131,the value of plot_cost is         : 10.570944853484937 

 At row:141, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:141, column:132,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:132,the value of plot_cost is         : 10.684399419928063 

 At row:141, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:141, column:133,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:133,the value of plot_cost is         : 10.798662046773707 

 At row:141, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:141, column:134,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:134,the value of plot_cost is         : 10.913732734021865 

 At row:141, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:141, column:135,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:135,the value of plot_cost is         : 11.02961148167254 

 At row:141, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:141, column:136,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:136,the value of plot_cost is         : 11.146298289725724 

 At row:141, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:141, column:137,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:137,the value of plot_cost is         : 11.263793158181429 

 At row:141, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:141, column:138,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:138,the value of plot_cost is         : 11.382096087039645 

 At row:141, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:141, column:139,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:139,the value of plot_cost is         : 11.50120707630038 

 At row:141, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:141, column:140,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:140,the value of plot_cost is         : 11.62112612596363 

 At row:141, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:141, column:141,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:141,the value of plot_cost is         : 11.741853236029389 

 At row:141, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:141, column:142,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:142,the value of plot_cost is         : 11.863388406497666 

 At row:141, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:141, column:143,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:143,the value of plot_cost is         : 11.985731637368461 

 At row:141, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:141, column:144,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:144,the value of plot_cost is         : 12.10888292864177 

 At row:141, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:141, column:145,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:145,the value of plot_cost is         : 12.232842280317593 

 At row:141, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:141, column:146,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:146,the value of plot_cost is         : 12.357609692395933 

 At row:141, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:141, column:147,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:147,the value of plot_cost is         : 12.483185164876783 

 At row:141, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:141, column:148,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:148,the value of plot_cost is         : 12.609568697760155 

 At row:141, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:141, column:149,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:149,the value of plot_cost is         : 12.73676029104604 

 At row:141, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:141, column:150,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:150,the value of plot_cost is         : 12.864759944734438 

 At row:141, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:141, column:151,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:151,the value of plot_cost is         : 12.99356765882535 

 At row:141, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:141, column:152,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:152,the value of plot_cost is         : 13.123183433318777 

 At row:141, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:141, column:153,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:153,the value of plot_cost is         : 13.253607268214724 

 At row:141, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:141, column:154,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:154,the value of plot_cost is         : 13.384839163513183 

 At row:141, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:141, column:155,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:155,the value of plot_cost is         : 13.516879119214158 

 At row:141, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:141, column:156,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:156,the value of plot_cost is         : 13.649727135317649 

 At row:141, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:141, column:157,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:157,the value of plot_cost is         : 13.783383211823653 

 At row:141, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:141, column:158,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:158,the value of plot_cost is         : 13.917847348732172 

 At row:141, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:141, column:159,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:159,the value of plot_cost is         : 14.053119546043206 

 At row:141, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:141, column:160,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:160,the value of plot_cost is         : 14.189199803756757 

 At row:141, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:141, column:161,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:161,the value of plot_cost is         : 14.32608812187282 

 At row:141, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:141, column:162,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:162,the value of plot_cost is         : 14.463784500391398 

 At row:141, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:141, column:163,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:163,the value of plot_cost is         : 14.602288939312494 

 At row:141, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:141, column:164,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:164,the value of plot_cost is         : 14.741601438636105 

 At row:141, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:141, column:165,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:165,the value of plot_cost is         : 14.88172199836223 

 At row:141, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:141, column:166,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:166,the value of plot_cost is         : 15.022650618490873 

 At row:141, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:141, column:167,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:167,the value of plot_cost is         : 15.164387299022028 

 At row:141, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:141, column:168,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:168,the value of plot_cost is         : 15.306932039955694 

 At row:141, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:141, column:169,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:169,the value of plot_cost is         : 15.450284841291882 

 At row:141, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:141, column:170,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:170,the value of plot_cost is         : 15.594445703030583 

 At row:141, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:141, column:171,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:171,the value of plot_cost is         : 15.739414625171799 

 At row:141, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:141, column:172,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:172,the value of plot_cost is         : 15.885191607715528 

 At row:141, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:141, column:173,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:173,the value of plot_cost is         : 16.031776650661772 

 At row:141, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:141, column:174,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:174,the value of plot_cost is         : 16.179169754010537 

 At row:141, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:141, column:175,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:175,the value of plot_cost is         : 16.32737091776181 

 At row:141, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:141, column:176,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:176,the value of plot_cost is         : 16.476380141915605 

 At row:141, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:141, column:177,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:177,the value of plot_cost is         : 16.626197426471908 

 At row:141, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:141, column:178,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:178,the value of plot_cost is         : 16.77682277143073 

 At row:141, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:141, column:179,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:179,the value of plot_cost is         : 16.928256176792065 

 At row:141, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:141, column:180,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:180,the value of plot_cost is         : 17.080497642555923 

 At row:141, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:141, column:181,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:181,the value of plot_cost is         : 17.233547168722286 

 At row:141, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:141, column:182,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:182,the value of plot_cost is         : 17.38740475529117 

 At row:141, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:141, column:183,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:183,the value of plot_cost is         : 17.542070402262564 

 At row:141, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:141, column:184,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:184,the value of plot_cost is         : 17.69754410963648 

 At row:141, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:141, column:185,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:185,the value of plot_cost is         : 17.853825877412905 

 At row:141, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:141, column:186,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:186,the value of plot_cost is         : 18.01091570559185 

 At row:141, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:141, column:187,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:187,the value of plot_cost is         : 18.1688135941733 

 At row:141, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:141, column:188,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:188,the value of plot_cost is         : 18.32751954315727 

 At row:141, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:141, column:189,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:189,the value of plot_cost is         : 18.48703355254376 

 At row:141, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:141, column:190,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:190,the value of plot_cost is         : 18.647355622332764 

 At row:141, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:141, column:191,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:191,the value of plot_cost is         : 18.80848575252428 

 At row:141, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:141, column:192,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:192,the value of plot_cost is         : 18.970423943118313 

 At row:141, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:141, column:193,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:193,the value of plot_cost is         : 19.13317019411486 

 At row:141, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:141, column:194,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:194,the value of plot_cost is         : 19.296724505513925 

 At row:141, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:141, column:195,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:195,the value of plot_cost is         : 19.461086877315502 

 At row:141, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:141, column:196,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:196,the value of plot_cost is         : 19.6262573095196 

 At row:141, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:141, column:197,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:197,the value of plot_cost is         : 19.792235802126203 

 At row:141, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:141, column:198,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:198,the value of plot_cost is         : 19.95902235513533 

 At row:141, column:199,the value of plot_t0 is           : 3.0
 At row:141, column:199,the value of plot_t1 is           : 1.8341708542713566
 At row:141, column:199,the value of plot_cost is         : 20.126616968546966 

 At row:142, column:0,the value of plot_t0 is           : -1.0
 At row:142, column:0,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:0,the value of plot_cost is         : 2.837773324627445 

 At row:142, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:142, column:1,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:1,the value of plot_cost is         : 2.8480501213894303 

 At row:142, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:142, column:2,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:2,the value of plot_cost is         : 2.859134978553932 

 At row:142, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:142, column:3,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:3,the value of plot_cost is         : 2.8710278961209497 

 At row:142, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:142, column:4,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:4,the value of plot_cost is         : 2.8837288740904814 

 At row:142, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:142, column:5,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:5,the value of plot_cost is         : 2.8972379124625274 

 At row:142, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:142, column:6,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:6,the value of plot_cost is         : 2.911555011237089 

 At row:142, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:142, column:7,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:7,the value of plot_cost is         : 2.9266801704141665 

 At row:142, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:142, column:8,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:8,the value of plot_cost is         : 2.9426133899937597 

 At row:142, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:142, column:9,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:9,the value of plot_cost is         : 2.9593546699758666 

 At row:142, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:142, column:10,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:10,the value of plot_cost is         : 2.976904010360488 

 At row:142, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:142, column:11,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:11,the value of plot_cost is         : 2.9952614111476255 

 At row:142, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:142, column:12,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:12,the value of plot_cost is         : 3.0144268723372782 

 At row:142, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:142, column:13,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:13,the value of plot_cost is         : 3.034400393929446 

 At row:142, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:142, column:14,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:14,the value of plot_cost is         : 3.055181975924129 

 At row:142, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:142, column:15,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:15,the value of plot_cost is         : 3.0767716183213256 

 At row:142, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:142, column:16,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:16,the value of plot_cost is         : 3.099169321121039 

 At row:142, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:142, column:17,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:17,the value of plot_cost is         : 3.1223750843232665 

 At row:142, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:142, column:18,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:18,the value of plot_cost is         : 3.1463889079280105 

 At row:142, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:142, column:19,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:19,the value of plot_cost is         : 3.171210791935269 

 At row:142, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:142, column:20,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:20,the value of plot_cost is         : 3.196840736345041 

 At row:142, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:142, column:21,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:21,the value of plot_cost is         : 3.223278741157329 

 At row:142, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:142, column:22,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:22,the value of plot_cost is         : 3.250524806372132 

 At row:142, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:142, column:23,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:23,the value of plot_cost is         : 3.278578931989452 

 At row:142, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:142, column:24,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:24,the value of plot_cost is         : 3.3074411180092853 

 At row:142, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:142, column:25,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:25,the value of plot_cost is         : 3.3371113644316335 

 At row:142, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:142, column:26,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:26,the value of plot_cost is         : 3.3675896712564968 

 At row:142, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:142, column:27,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:27,the value of plot_cost is         : 3.3988760384838757 

 At row:142, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:142, column:28,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:28,the value of plot_cost is         : 3.4309704661137705 

 At row:142, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:142, column:29,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:29,the value of plot_cost is         : 3.4638729541461797 

 At row:142, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:142, column:30,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:30,the value of plot_cost is         : 3.4975835025811026 

 At row:142, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:142, column:31,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:31,the value of plot_cost is         : 3.532102111418541 

 At row:142, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:142, column:32,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:32,the value of plot_cost is         : 3.5674287806584957 

 At row:142, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:142, column:33,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:33,the value of plot_cost is         : 3.603563510300966 

 At row:142, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:142, column:34,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:34,the value of plot_cost is         : 3.6405063003459515 

 At row:142, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:142, column:35,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:35,the value of plot_cost is         : 3.6782571507934496 

 At row:142, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:142, column:36,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:36,the value of plot_cost is         : 3.7168160616434633 

 At row:142, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:142, column:37,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:37,the value of plot_cost is         : 3.7561830328959935 

 At row:142, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:142, column:38,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:38,the value of plot_cost is         : 3.796358064551039 

 At row:142, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:142, column:39,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:39,the value of plot_cost is         : 3.8373411566085998 

 At row:142, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:142, column:40,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:40,the value of plot_cost is         : 3.879132309068673 

 At row:142, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:142, column:41,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:41,the value of plot_cost is         : 3.9217315219312625 

 At row:142, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:142, column:42,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:42,the value of plot_cost is         : 3.965138795196368 

 At row:142, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:142, column:43,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:43,the value of plot_cost is         : 4.00935412886399 

 At row:142, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:142, column:44,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:44,the value of plot_cost is         : 4.054377522934125 

 At row:142, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:142, column:45,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:45,the value of plot_cost is         : 4.1002089774067745 

 At row:142, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:142, column:46,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:46,the value of plot_cost is         : 4.14684849228194 

 At row:142, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:142, column:47,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:47,the value of plot_cost is         : 4.19429606755962 

 At row:142, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:142, column:48,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:48,the value of plot_cost is         : 4.242551703239816 

 At row:142, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:142, column:49,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:49,the value of plot_cost is         : 4.291615399322528 

 At row:142, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:142, column:50,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:50,the value of plot_cost is         : 4.341487155807752 

 At row:142, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:142, column:51,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:51,the value of plot_cost is         : 4.392166972695493 

 At row:142, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:142, column:52,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:52,the value of plot_cost is         : 4.4436548499857516 

 At row:142, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:142, column:53,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:53,the value of plot_cost is         : 4.495950787678521 

 At row:142, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:142, column:54,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:54,the value of plot_cost is         : 4.549054785773808 

 At row:142, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:142, column:55,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:55,the value of plot_cost is         : 4.6029668442716085 

 At row:142, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:142, column:56,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:56,the value of plot_cost is         : 4.6576869631719235 

 At row:142, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:142, column:57,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:57,the value of plot_cost is         : 4.713215142474755 

 At row:142, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:142, column:58,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:58,the value of plot_cost is         : 4.769551382180103 

 At row:142, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:142, column:59,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:59,the value of plot_cost is         : 4.826695682287966 

 At row:142, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:142, column:60,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:60,the value of plot_cost is         : 4.88464804279834 

 At row:142, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:142, column:61,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:61,the value of plot_cost is         : 4.943408463711232 

 At row:142, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:142, column:62,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:62,the value of plot_cost is         : 5.002976945026641 

 At row:142, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:142, column:63,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:63,the value of plot_cost is         : 5.063353486744562 

 At row:142, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:142, column:64,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:64,the value of plot_cost is         : 5.124538088864999 

 At row:142, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:142, column:65,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:65,the value of plot_cost is         : 5.18653075138795 

 At row:142, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:142, column:66,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:66,the value of plot_cost is         : 5.249331474313417 

 At row:142, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:142, column:67,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:67,the value of plot_cost is         : 5.3129402576414 

 At row:142, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:142, column:68,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:68,the value of plot_cost is         : 5.377357101371898 

 At row:142, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:142, column:69,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:69,the value of plot_cost is         : 5.442582005504911 

 At row:142, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:142, column:70,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:70,the value of plot_cost is         : 5.508614970040438 

 At row:142, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:142, column:71,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:71,the value of plot_cost is         : 5.575455994978479 

 At row:142, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:142, column:72,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:72,the value of plot_cost is         : 5.64310508031904 

 At row:142, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:142, column:73,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:73,the value of plot_cost is         : 5.711562226062111 

 At row:142, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:142, column:74,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:74,the value of plot_cost is         : 5.780827432207699 

 At row:142, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:142, column:75,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:75,the value of plot_cost is         : 5.850900698755802 

 At row:142, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:142, column:76,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:76,the value of plot_cost is         : 5.921782025706418 

 At row:142, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:142, column:77,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:77,the value of plot_cost is         : 5.993471413059552 

 At row:142, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:142, column:78,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:78,the value of plot_cost is         : 6.065968860815204 

 At row:142, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:142, column:79,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:79,the value of plot_cost is         : 6.139274368973366 

 At row:142, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:142, column:80,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:80,the value of plot_cost is         : 6.213387937534042 

 At row:142, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:142, column:81,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:81,the value of plot_cost is         : 6.288309566497236 

 At row:142, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:142, column:82,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:82,the value of plot_cost is         : 6.364039255862949 

 At row:142, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:142, column:83,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:83,the value of plot_cost is         : 6.440577005631171 

 At row:142, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:142, column:84,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:84,the value of plot_cost is         : 6.517922815801908 

 At row:142, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:142, column:85,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:85,the value of plot_cost is         : 6.596076686375163 

 At row:142, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:142, column:86,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:86,the value of plot_cost is         : 6.675038617350929 

 At row:142, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:142, column:87,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:87,the value of plot_cost is         : 6.754808608729214 

 At row:142, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:142, column:88,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:88,the value of plot_cost is         : 6.835386660510016 

 At row:142, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:142, column:89,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:89,the value of plot_cost is         : 6.916772772693329 

 At row:142, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:142, column:90,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:90,the value of plot_cost is         : 6.998966945279158 

 At row:142, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:142, column:91,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:91,the value of plot_cost is         : 7.081969178267501 

 At row:142, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:142, column:92,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:92,the value of plot_cost is         : 7.165779471658364 

 At row:142, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:142, column:93,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:93,the value of plot_cost is         : 7.2503978254517385 

 At row:142, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:142, column:94,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:94,the value of plot_cost is         : 7.335824239647626 

 At row:142, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:142, column:95,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:95,the value of plot_cost is         : 7.42205871424603 

 At row:142, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:142, column:96,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:96,the value of plot_cost is         : 7.5091012492469495 

 At row:142, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:142, column:97,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:97,the value of plot_cost is         : 7.596951844650385 

 At row:142, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:142, column:98,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:98,the value of plot_cost is         : 7.685610500456338 

 At row:142, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:142, column:99,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:99,the value of plot_cost is         : 7.775077216664801 

 At row:142, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:142, column:100,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:100,the value of plot_cost is         : 7.865351993275782 

 At row:142, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:142, column:101,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:101,the value of plot_cost is         : 7.956434830289275 

 At row:142, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:142, column:102,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:102,the value of plot_cost is         : 8.04832572770529 

 At row:142, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:142, column:103,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:103,the value of plot_cost is         : 8.141024685523815 

 At row:142, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:142, column:104,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:104,the value of plot_cost is         : 8.234531703744855 

 At row:142, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:142, column:105,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:105,the value of plot_cost is         : 8.328846782368409 

 At row:142, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:142, column:106,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:106,the value of plot_cost is         : 8.423969921394477 

 At row:142, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:142, column:107,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:107,the value of plot_cost is         : 8.519901120823064 

 At row:142, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:142, column:108,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:108,the value of plot_cost is         : 8.616640380654168 

 At row:142, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:142, column:109,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:109,the value of plot_cost is         : 8.714187700887784 

 At row:142, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:142, column:110,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:110,the value of plot_cost is         : 8.812543081523915 

 At row:142, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:142, column:111,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:111,the value of plot_cost is         : 8.911706522562557 

 At row:142, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:142, column:112,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:112,the value of plot_cost is         : 9.011678024003722 

 At row:142, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:142, column:113,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:113,the value of plot_cost is         : 9.1124575858474 

 At row:142, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:142, column:114,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:114,the value of plot_cost is         : 9.214045208093587 

 At row:142, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:142, column:115,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:115,the value of plot_cost is         : 9.316440890742294 

 At row:142, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:142, column:116,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:116,the value of plot_cost is         : 9.419644633793515 

 At row:142, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:142, column:117,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:117,the value of plot_cost is         : 9.523656437247253 

 At row:142, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:142, column:118,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:118,the value of plot_cost is         : 9.628476301103507 

 At row:142, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:142, column:119,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:119,the value of plot_cost is         : 9.734104225362275 

 At row:142, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:142, column:120,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:120,the value of plot_cost is         : 9.840540210023553 

 At row:142, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:142, column:121,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:121,the value of plot_cost is         : 9.947784255087349 

 At row:142, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:142, column:122,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:122,the value of plot_cost is         : 10.055836360553664 

 At row:142, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:142, column:123,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:123,the value of plot_cost is         : 10.164696526422492 

 At row:142, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:142, column:124,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:124,the value of plot_cost is         : 10.274364752693833 

 At row:142, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:142, column:125,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:125,the value of plot_cost is         : 10.384841039367691 

 At row:142, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:142, column:126,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:126,the value of plot_cost is         : 10.496125386444062 

 At row:142, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:142, column:127,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:127,the value of plot_cost is         : 10.608217793922949 

 At row:142, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:142, column:128,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:128,the value of plot_cost is         : 10.721118261804355 

 At row:142, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:142, column:129,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:129,the value of plot_cost is         : 10.834826790088274 

 At row:142, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:142, column:130,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:130,the value of plot_cost is         : 10.949343378774705 

 At row:142, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:142, column:131,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:131,the value of plot_cost is         : 11.06466802786365 

 At row:142, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:142, column:132,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:132,the value of plot_cost is         : 11.180800737355117 

 At row:142, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:142, column:133,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:133,the value of plot_cost is         : 11.297741507249095 

 At row:142, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:142, column:134,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:134,the value of plot_cost is         : 11.415490337545586 

 At row:142, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:142, column:135,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:135,the value of plot_cost is         : 11.534047228244594 

 At row:142, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:142, column:136,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:136,the value of plot_cost is         : 11.653412179346114 

 At row:142, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:142, column:137,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:137,the value of plot_cost is         : 11.773585190850152 

 At row:142, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:142, column:138,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:138,the value of plot_cost is         : 11.894566262756712 

 At row:142, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:142, column:139,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:139,the value of plot_cost is         : 12.01635539506578 

 At row:142, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:142, column:140,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:140,the value of plot_cost is         : 12.138952587777363 

 At row:142, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:142, column:141,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:141,the value of plot_cost is         : 12.26235784089146 

 At row:142, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:142, column:142,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:142,the value of plot_cost is         : 12.386571154408077 

 At row:142, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:142, column:143,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:143,the value of plot_cost is         : 12.511592528327204 

 At row:142, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:142, column:144,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:144,the value of plot_cost is         : 12.63742196264885 

 At row:142, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:142, column:145,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:145,the value of plot_cost is         : 12.764059457373008 

 At row:142, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:142, column:146,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:146,the value of plot_cost is         : 12.89150501249968 

 At row:142, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:142, column:147,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:147,the value of plot_cost is         : 13.01975862802887 

 At row:142, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:142, column:148,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:148,the value of plot_cost is         : 13.148820303960578 

 At row:142, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:142, column:149,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:149,the value of plot_cost is         : 13.278690040294796 

 At row:142, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:142, column:150,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:150,the value of plot_cost is         : 13.40936783703153 

 At row:142, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:142, column:151,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:151,the value of plot_cost is         : 13.540853694170783 

 At row:142, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:142, column:152,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:152,the value of plot_cost is         : 13.673147611712546 

 At row:142, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:142, column:153,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:153,the value of plot_cost is         : 13.806249589656824 

 At row:142, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:142, column:154,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:154,the value of plot_cost is         : 13.94015962800362 

 At row:142, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:142, column:155,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:155,the value of plot_cost is         : 14.07487772675293 

 At row:142, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:142, column:156,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:156,the value of plot_cost is         : 14.210403885904757 

 At row:142, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:142, column:157,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:157,the value of plot_cost is         : 14.346738105459092 

 At row:142, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:142, column:158,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:158,the value of plot_cost is         : 14.48388038541595 

 At row:142, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:142, column:159,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:159,the value of plot_cost is         : 14.621830725775322 

 At row:142, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:142, column:160,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:160,the value of plot_cost is         : 14.760589126537205 

 At row:142, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:142, column:161,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:161,the value of plot_cost is         : 14.90015558770161 

 At row:142, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:142, column:162,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:162,the value of plot_cost is         : 15.040530109268522 

 At row:142, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:142, column:163,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:163,the value of plot_cost is         : 15.181712691237955 

 At row:142, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:142, column:164,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:164,the value of plot_cost is         : 15.323703333609899 

 At row:142, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:142, column:165,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:165,the value of plot_cost is         : 15.46650203638436 

 At row:142, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:142, column:166,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:166,the value of plot_cost is         : 15.610108799561337 

 At row:142, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:142, column:167,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:167,the value of plot_cost is         : 15.754523623140829 

 At row:142, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:142, column:168,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:168,the value of plot_cost is         : 15.899746507122833 

 At row:142, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:142, column:169,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:169,the value of plot_cost is         : 16.045777451507355 

 At row:142, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:142, column:170,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:170,the value of plot_cost is         : 16.19261645629439 

 At row:142, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:142, column:171,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:171,the value of plot_cost is         : 16.340263521483944 

 At row:142, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:142, column:172,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:172,the value of plot_cost is         : 16.48871864707601 

 At row:142, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:142, column:173,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:173,the value of plot_cost is         : 16.637981833070594 

 At row:142, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:142, column:174,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:174,the value of plot_cost is         : 16.788053079467687 

 At row:142, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:142, column:175,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:175,the value of plot_cost is         : 16.938932386267297 

 At row:142, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:142, column:176,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:176,the value of plot_cost is         : 17.090619753469426 

 At row:142, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:142, column:177,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:177,the value of plot_cost is         : 17.243115181074067 

 At row:142, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:142, column:178,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:178,the value of plot_cost is         : 17.396418669081225 

 At row:142, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:142, column:179,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:179,the value of plot_cost is         : 17.5505302174909 

 At row:142, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:142, column:180,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:180,the value of plot_cost is         : 17.705449826303084 

 At row:142, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:142, column:181,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:181,the value of plot_cost is         : 17.86117749551779 

 At row:142, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:142, column:182,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:182,the value of plot_cost is         : 18.017713225135005 

 At row:142, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:142, column:183,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:183,the value of plot_cost is         : 18.17505701515474 

 At row:142, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:142, column:184,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:184,the value of plot_cost is         : 18.333208865576985 

 At row:142, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:142, column:185,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:185,the value of plot_cost is         : 18.492168776401748 

 At row:142, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:142, column:186,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:186,the value of plot_cost is         : 18.651936747629023 

 At row:142, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:142, column:187,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:187,the value of plot_cost is         : 18.812512779258817 

 At row:142, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:142, column:188,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:188,the value of plot_cost is         : 18.973896871291128 

 At row:142, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:142, column:189,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:189,the value of plot_cost is         : 19.136089023725948 

 At row:142, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:142, column:190,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:190,the value of plot_cost is         : 19.299089236563283 

 At row:142, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:142, column:191,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:191,the value of plot_cost is         : 19.462897509803142 

 At row:142, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:142, column:192,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:192,the value of plot_cost is         : 19.62751384344551 

 At row:142, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:142, column:193,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:193,the value of plot_cost is         : 19.792938237490393 

 At row:142, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:142, column:194,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:194,the value of plot_cost is         : 19.95917069193779 

 At row:142, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:142, column:195,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:195,the value of plot_cost is         : 20.126211206787705 

 At row:142, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:142, column:196,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:196,the value of plot_cost is         : 20.294059782040133 

 At row:142, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:142, column:197,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:197,the value of plot_cost is         : 20.46271641769508 

 At row:142, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:142, column:198,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:198,the value of plot_cost is         : 20.632181113752534 

 At row:142, column:199,the value of plot_t0 is           : 3.0
 At row:142, column:199,the value of plot_t1 is           : 1.8542713567839195
 At row:142, column:199,the value of plot_cost is         : 20.80245387021251 

 At row:143, column:0,the value of plot_t0 is           : -1.0
 At row:143, column:0,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:0,the value of plot_cost is         : 2.9932424145133423 

 At row:143, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:143, column:1,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:1,the value of plot_cost is         : 3.0061973543236644 

 At row:143, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:143, column:2,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:2,the value of plot_cost is         : 3.019960354536502 

 At row:143, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:143, column:3,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:3,the value of plot_cost is         : 3.0345314151518554 

 At row:143, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:143, column:4,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:4,the value of plot_cost is         : 3.049910536169723 

 At row:143, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:143, column:5,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:5,the value of plot_cost is         : 3.0660977175901047 

 At row:143, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:143, column:6,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:6,the value of plot_cost is         : 3.083092959413002 

 At row:143, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:143, column:7,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:7,the value of plot_cost is         : 3.1008962616384155 

 At row:143, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:143, column:8,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:8,the value of plot_cost is         : 3.1195076242663444 

 At row:143, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:143, column:9,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:9,the value of plot_cost is         : 3.138927047296787 

 At row:143, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:143, column:10,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:10,the value of plot_cost is         : 3.1591545307297446 

 At row:143, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:143, column:11,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:11,the value of plot_cost is         : 3.1801900745652167 

 At row:143, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:143, column:12,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:12,the value of plot_cost is         : 3.2020336788032053 

 At row:143, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:143, column:13,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:13,the value of plot_cost is         : 3.22468534344371 

 At row:143, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:143, column:14,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:14,the value of plot_cost is         : 3.2481450684867283 

 At row:143, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:143, column:15,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:15,the value of plot_cost is         : 3.2724128539322606 

 At row:143, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:143, column:16,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:16,the value of plot_cost is         : 3.2974886997803083 

 At row:143, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:143, column:17,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:17,the value of plot_cost is         : 3.323372606030873 

 At row:143, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:143, column:18,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:18,the value of plot_cost is         : 3.350064572683953 

 At row:143, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:143, column:19,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:19,the value of plot_cost is         : 3.3775645997395465 

 At row:143, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:143, column:20,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:20,the value of plot_cost is         : 3.405872687197655 

 At row:143, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:143, column:21,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:21,the value of plot_cost is         : 3.4349888350582782 

 At row:143, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:143, column:22,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:22,the value of plot_cost is         : 3.4649130433214173 

 At row:143, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:143, column:23,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:23,the value of plot_cost is         : 3.4956453119870727 

 At row:143, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:143, column:24,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:24,the value of plot_cost is         : 3.527185641055242 

 At row:143, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:143, column:25,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:25,the value of plot_cost is         : 3.5595340305259255 

 At row:143, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:143, column:26,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:26,the value of plot_cost is         : 3.5926904803991246 

 At row:143, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:143, column:27,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:27,the value of plot_cost is         : 3.6266549906748384 

 At row:143, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:143, column:28,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:28,the value of plot_cost is         : 3.66142756135307 

 At row:143, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:143, column:29,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:29,the value of plot_cost is         : 3.697008192433815 

 At row:143, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:143, column:30,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:30,the value of plot_cost is         : 3.733396883917074 

 At row:143, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:143, column:31,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:31,the value of plot_cost is         : 3.7705936358028485 

 At row:143, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:143, column:32,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:32,the value of plot_cost is         : 3.808598448091138 

 At row:143, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:143, column:33,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:33,the value of plot_cost is         : 3.8474113207819443 

 At row:143, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:143, column:34,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:34,the value of plot_cost is         : 3.8870322538752644 

 At row:143, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:143, column:35,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:35,the value of plot_cost is         : 3.927461247371099 

 At row:143, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:143, column:36,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:36,the value of plot_cost is         : 3.968698301269449 

 At row:143, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:143, column:37,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:37,the value of plot_cost is         : 4.010743415570314 

 At row:143, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:143, column:38,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:38,the value of plot_cost is         : 4.053596590273696 

 At row:143, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:143, column:39,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:39,the value of plot_cost is         : 4.097257825379592 

 At row:143, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:143, column:40,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:40,the value of plot_cost is         : 4.141727120888001 

 At row:143, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:143, column:41,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:41,the value of plot_cost is         : 4.1870044767989265 

 At row:143, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:143, column:42,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:42,the value of plot_cost is         : 4.233089893112368 

 At row:143, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:143, column:43,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:43,the value of plot_cost is         : 4.279983369828325 

 At row:143, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:143, column:44,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:44,the value of plot_cost is         : 4.327684906946796 

 At row:143, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:143, column:45,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:45,the value of plot_cost is         : 4.37619450446778 

 At row:143, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:143, column:46,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:46,the value of plot_cost is         : 4.425512162391281 

 At row:143, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:143, column:47,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:47,the value of plot_cost is         : 4.475637880717298 

 At row:143, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:143, column:48,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:48,the value of plot_cost is         : 4.526571659445831 

 At row:143, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:143, column:49,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:49,the value of plot_cost is         : 4.578313498576878 

 At row:143, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:143, column:50,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:50,the value of plot_cost is         : 4.630863398110439 

 At row:143, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:143, column:51,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:51,the value of plot_cost is         : 4.684221358046514 

 At row:143, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:143, column:52,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:52,the value of plot_cost is         : 4.7383873783851085 

 At row:143, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:143, column:53,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:53,the value of plot_cost is         : 4.793361459126214 

 At row:143, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:143, column:54,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:54,the value of plot_cost is         : 4.849143600269836 

 At row:143, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:143, column:55,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:55,the value of plot_cost is         : 4.905733801815973 

 At row:143, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:143, column:56,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:56,the value of plot_cost is         : 4.963132063764625 

 At row:143, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:143, column:57,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:57,the value of plot_cost is         : 5.02133838611579 

 At row:143, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:143, column:58,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:58,the value of plot_cost is         : 5.080352768869475 

 At row:143, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:143, column:59,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:59,the value of plot_cost is         : 5.140175212025672 

 At row:143, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:143, column:60,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:60,the value of plot_cost is         : 5.200805715584384 

 At row:143, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:143, column:61,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:61,the value of plot_cost is         : 5.26224427954561 

 At row:143, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:143, column:62,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:62,the value of plot_cost is         : 5.324490903909356 

 At row:143, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:143, column:63,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:63,the value of plot_cost is         : 5.387545588675613 

 At row:143, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:143, column:64,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:64,the value of plot_cost is         : 5.451408333844386 

 At row:143, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:143, column:65,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:65,the value of plot_cost is         : 5.516079139415672 

 At row:143, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:143, column:66,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:66,the value of plot_cost is         : 5.581558005389474 

 At row:143, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:143, column:67,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:67,the value of plot_cost is         : 5.647844931765793 

 At row:143, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:143, column:68,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:68,the value of plot_cost is         : 5.714939918544627 

 At row:143, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:143, column:69,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:69,the value of plot_cost is         : 5.782842965725976 

 At row:143, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:143, column:70,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:70,the value of plot_cost is         : 5.8515540733098375 

 At row:143, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:143, column:71,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:71,the value of plot_cost is         : 5.921073241296216 

 At row:143, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:143, column:72,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:72,the value of plot_cost is         : 5.991400469685112 

 At row:143, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:143, column:73,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:73,the value of plot_cost is         : 6.062535758476519 

 At row:143, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:143, column:74,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:74,the value of plot_cost is         : 6.134479107670444 

 At row:143, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:143, column:75,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:75,the value of plot_cost is         : 6.207230517266881 

 At row:143, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:143, column:76,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:76,the value of plot_cost is         : 6.280789987265834 

 At row:143, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:143, column:77,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:77,the value of plot_cost is         : 6.355157517667304 

 At row:143, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:143, column:78,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:78,the value of plot_cost is         : 6.43033310847129 

 At row:143, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:143, column:79,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:79,the value of plot_cost is         : 6.506316759677789 

 At row:143, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:143, column:80,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:80,the value of plot_cost is         : 6.5831084712868 

 At row:143, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:143, column:81,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:81,the value of plot_cost is         : 6.6607082432983304 

 At row:143, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:143, column:82,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:82,the value of plot_cost is         : 6.739116075712377 

 At row:143, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:143, column:83,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:83,the value of plot_cost is         : 6.818331968528938 

 At row:143, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:143, column:84,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:84,the value of plot_cost is         : 6.89835592174801 

 At row:143, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:143, column:85,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:85,the value of plot_cost is         : 6.979187935369598 

 At row:143, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:143, column:86,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:86,the value of plot_cost is         : 7.060828009393703 

 At row:143, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:143, column:87,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:87,the value of plot_cost is         : 7.143276143820323 

 At row:143, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:143, column:88,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:88,the value of plot_cost is         : 7.22653233864946 

 At row:143, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:143, column:89,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:89,the value of plot_cost is         : 7.310596593881109 

 At row:143, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:143, column:90,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:90,the value of plot_cost is         : 7.395468909515273 

 At row:143, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:143, column:91,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:91,the value of plot_cost is         : 7.481149285551952 

 At row:143, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:143, column:92,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:92,the value of plot_cost is         : 7.56763772199115 

 At row:143, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:143, column:93,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:93,the value of plot_cost is         : 7.654934218832861 

 At row:143, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:143, column:94,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:94,the value of plot_cost is         : 7.743038776077086 

 At row:143, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:143, column:95,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:95,the value of plot_cost is         : 7.831951393723824 

 At row:143, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:143, column:96,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:96,the value of plot_cost is         : 7.921672071773079 

 At row:143, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:143, column:97,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:97,the value of plot_cost is         : 8.012200810224849 

 At row:143, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:143, column:98,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:98,the value of plot_cost is         : 8.10353760907914 

 At row:143, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:143, column:99,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:99,the value of plot_cost is         : 8.195682468335939 

 At row:143, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:143, column:100,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:100,the value of plot_cost is         : 8.288635387995253 

 At row:143, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:143, column:101,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:101,the value of plot_cost is         : 8.382396368057082 

 At row:143, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:143, column:102,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:102,the value of plot_cost is         : 8.476965408521432 

 At row:143, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:143, column:103,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:103,the value of plot_cost is         : 8.572342509388294 

 At row:143, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:143, column:104,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:104,the value of plot_cost is         : 8.66852767065767 

 At row:143, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:143, column:105,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:105,the value of plot_cost is         : 8.76552089232956 

 At row:143, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:143, column:106,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:106,the value of plot_cost is         : 8.863322174403965 

 At row:143, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:143, column:107,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:107,the value of plot_cost is         : 8.961931516880886 

 At row:143, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:143, column:108,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:108,the value of plot_cost is         : 9.061348919760325 

 At row:143, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:143, column:109,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:109,the value of plot_cost is         : 9.161574383042279 

 At row:143, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:143, column:110,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:110,the value of plot_cost is         : 9.262607906726743 

 At row:143, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:143, column:111,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:111,the value of plot_cost is         : 9.364449490813724 

 At row:143, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:143, column:112,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:112,the value of plot_cost is         : 9.467099135303222 

 At row:143, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:143, column:113,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:113,the value of plot_cost is         : 9.570556840195236 

 At row:143, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:143, column:114,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:114,the value of plot_cost is         : 9.67482260548976 

 At row:143, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:143, column:115,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:115,the value of plot_cost is         : 9.779896431186804 

 At row:143, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:143, column:116,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:116,the value of plot_cost is         : 9.885778317286357 

 At row:143, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:143, column:117,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:117,the value of plot_cost is         : 9.992468263788432 

 At row:143, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:143, column:118,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:118,the value of plot_cost is         : 10.099966270693024 

 At row:143, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:143, column:119,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:119,the value of plot_cost is         : 10.208272338000123 

 At row:143, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:143, column:120,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:120,the value of plot_cost is         : 10.31738646570974 

 At row:143, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:143, column:121,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:121,the value of plot_cost is         : 10.427308653821873 

 At row:143, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:143, column:122,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:122,the value of plot_cost is         : 10.538038902336524 

 At row:143, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:143, column:123,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:123,the value of plot_cost is         : 10.649577211253687 

 At row:143, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:143, column:124,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:124,the value of plot_cost is         : 10.761923580573365 

 At row:143, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:143, column:125,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:125,the value of plot_cost is         : 10.875078010295557 

 At row:143, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:143, column:126,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:126,the value of plot_cost is         : 10.989040500420263 

 At row:143, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:143, column:127,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:127,the value of plot_cost is         : 11.103811050947488 

 At row:143, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:143, column:128,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:128,the value of plot_cost is         : 11.21938966187723 

 At row:143, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:143, column:129,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:129,the value of plot_cost is         : 11.33577633320948 

 At row:143, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:143, column:130,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:130,the value of plot_cost is         : 11.452971064944247 

 At row:143, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:143, column:131,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:131,the value of plot_cost is         : 11.57097385708153 

 At row:143, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:143, column:132,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:132,the value of plot_cost is         : 11.689784709621332 

 At row:143, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:143, column:133,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:133,the value of plot_cost is         : 11.809403622563647 

 At row:143, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:143, column:134,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:134,the value of plot_cost is         : 11.929830595908474 

 At row:143, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:143, column:135,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:135,the value of plot_cost is         : 12.051065629655819 

 At row:143, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:143, column:136,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:136,the value of plot_cost is         : 12.173108723805674 

 At row:143, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:143, column:137,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:137,the value of plot_cost is         : 12.295959878358051 

 At row:143, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:143, column:138,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:138,the value of plot_cost is         : 12.41961909331294 

 At row:143, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:143, column:139,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:139,the value of plot_cost is         : 12.544086368670346 

 At row:143, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:143, column:140,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:140,the value of plot_cost is         : 12.669361704430264 

 At row:143, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:143, column:141,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:141,the value of plot_cost is         : 12.795445100592696 

 At row:143, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:143, column:142,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:142,the value of plot_cost is         : 12.922336557157651 

 At row:143, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:143, column:143,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:143,the value of plot_cost is         : 13.050036074125117 

 At row:143, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:143, column:144,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:144,the value of plot_cost is         : 13.178543651495094 

 At row:143, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:143, column:145,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:145,the value of plot_cost is         : 13.30785928926759 

 At row:143, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:143, column:146,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:146,the value of plot_cost is         : 13.437982987442597 

 At row:143, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:143, column:147,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:147,the value of plot_cost is         : 13.568914746020122 

 At row:143, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:143, column:148,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:148,the value of plot_cost is         : 13.700654565000166 

 At row:143, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:143, column:149,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:149,the value of plot_cost is         : 13.83320244438272 

 At row:143, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:143, column:150,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:150,the value of plot_cost is         : 13.966558384167788 

 At row:143, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:143, column:151,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:151,the value of plot_cost is         : 14.10072238435538 

 At row:143, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:143, column:152,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:152,the value of plot_cost is         : 14.235694444945477 

 At row:143, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:143, column:153,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:153,the value of plot_cost is         : 14.371474565938094 

 At row:143, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:143, column:154,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:154,the value of plot_cost is         : 14.508062747333224 

 At row:143, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:143, column:155,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:155,the value of plot_cost is         : 14.645458989130868 

 At row:143, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:143, column:156,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:156,the value of plot_cost is         : 14.78366329133103 

 At row:143, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:143, column:157,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:157,the value of plot_cost is         : 14.922675653933704 

 At row:143, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:143, column:158,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:158,the value of plot_cost is         : 15.062496076938896 

 At row:143, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:143, column:159,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:159,the value of plot_cost is         : 15.203124560346602 

 At row:143, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:143, column:160,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:160,the value of plot_cost is         : 15.344561104156824 

 At row:143, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:143, column:161,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:161,the value of plot_cost is         : 15.486805708369562 

 At row:143, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:143, column:162,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:162,the value of plot_cost is         : 15.629858372984813 

 At row:143, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:143, column:163,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:163,the value of plot_cost is         : 15.77371909800258 

 At row:143, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:143, column:164,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:164,the value of plot_cost is         : 15.918387883422858 

 At row:143, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:143, column:165,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:165,the value of plot_cost is         : 16.063864729245655 

 At row:143, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:143, column:166,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:166,the value of plot_cost is         : 16.21014963547097 

 At row:143, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:143, column:167,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:167,the value of plot_cost is         : 16.35724260209879 

 At row:143, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:143, column:168,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:168,the value of plot_cost is         : 16.505143629129137 

 At row:143, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:143, column:169,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:169,the value of plot_cost is         : 16.653852716561996 

 At row:143, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:143, column:170,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:170,the value of plot_cost is         : 16.803369864397364 

 At row:143, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:143, column:171,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:171,the value of plot_cost is         : 16.953695072635256 

 At row:143, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:143, column:172,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:172,the value of plot_cost is         : 17.10482834127566 

 At row:143, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:143, column:173,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:173,the value of plot_cost is         : 17.256769670318576 

 At row:143, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:143, column:174,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:174,the value of plot_cost is         : 17.409519059764005 

 At row:143, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:143, column:175,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:175,the value of plot_cost is         : 17.56307650961195 

 At row:143, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:143, column:176,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:176,the value of plot_cost is         : 17.717442019862414 

 At row:143, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:143, column:177,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:177,the value of plot_cost is         : 17.872615590515387 

 At row:143, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:143, column:178,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:178,the value of plot_cost is         : 18.028597221570887 

 At row:143, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:143, column:179,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:179,the value of plot_cost is         : 18.185386913028893 

 At row:143, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:143, column:180,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:180,the value of plot_cost is         : 18.342984664889414 

 At row:143, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:143, column:181,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:181,the value of plot_cost is         : 18.50139047715246 

 At row:143, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:143, column:182,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:182,the value of plot_cost is         : 18.660604349818012 

 At row:143, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:143, column:183,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:183,the value of plot_cost is         : 18.820626282886078 

 At row:143, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:143, column:184,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:184,the value of plot_cost is         : 18.98145627635666 

 At row:143, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:143, column:185,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:185,the value of plot_cost is         : 19.143094330229758 

 At row:143, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:143, column:186,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:186,the value of plot_cost is         : 19.30554044450537 

 At row:143, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:143, column:187,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:187,the value of plot_cost is         : 19.468794619183495 

 At row:143, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:143, column:188,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:188,the value of plot_cost is         : 19.632856854264144 

 At row:143, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:143, column:189,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:189,the value of plot_cost is         : 19.797727149747303 

 At row:143, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:143, column:190,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:190,the value of plot_cost is         : 19.963405505632974 

 At row:143, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:143, column:191,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:191,the value of plot_cost is         : 20.12989192192117 

 At row:143, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:143, column:192,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:192,the value of plot_cost is         : 20.29718639861187 

 At row:143, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:143, column:193,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:193,the value of plot_cost is         : 20.46528893570509 

 At row:143, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:143, column:194,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:194,the value of plot_cost is         : 20.63419953320082 

 At row:143, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:143, column:195,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:195,the value of plot_cost is         : 20.80391819109907 

 At row:143, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:143, column:196,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:196,the value of plot_cost is         : 20.974444909399836 

 At row:143, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:143, column:197,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:197,the value of plot_cost is         : 21.14577968810312 

 At row:143, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:143, column:198,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:198,the value of plot_cost is         : 21.317922527208914 

 At row:143, column:199,the value of plot_t0 is           : 3.0
 At row:143, column:199,the value of plot_t1 is           : 1.8743718592964824
 At row:143, column:199,the value of plot_cost is         : 21.490873426717215 

 At row:144, column:0,the value of plot_t0 is           : -1.0
 At row:144, column:0,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:0,the value of plot_cost is         : 3.1612941592384036 

 At row:144, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:144, column:1,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:1,the value of plot_cost is         : 3.1769272420970607 

 At row:144, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:144, column:2,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:2,the value of plot_cost is         : 3.1933683853582338 

 At row:144, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:144, column:3,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:3,the value of plot_cost is         : 3.2106175890219233 

 At row:144, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:144, column:4,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:4,the value of plot_cost is         : 3.2286748530881266 

 At row:144, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:144, column:5,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:5,the value of plot_cost is         : 3.2475401775568447 

 At row:144, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:144, column:6,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:6,the value of plot_cost is         : 3.267213562428077 

 At row:144, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:144, column:7,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:7,the value of plot_cost is         : 3.2876950077018257 

 At row:144, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:144, column:8,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:8,the value of plot_cost is         : 3.3089845133780904 

 At row:144, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:144, column:9,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:9,the value of plot_cost is         : 3.3310820794568685 

 At row:144, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:144, column:10,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:10,the value of plot_cost is         : 3.353987705938162 

 At row:144, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:144, column:11,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:11,the value of plot_cost is         : 3.37770139282197 

 At row:144, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:144, column:12,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:12,the value of plot_cost is         : 3.4022231401082945 

 At row:144, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:144, column:13,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:13,the value of plot_cost is         : 3.4275529477971345 

 At row:144, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:144, column:14,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:14,the value of plot_cost is         : 3.453690815888489 

 At row:144, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:144, column:15,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:15,the value of plot_cost is         : 3.4806367443823576 

 At row:144, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:144, column:16,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:16,the value of plot_cost is         : 3.5083907332787403 

 At row:144, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:144, column:17,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:17,the value of plot_cost is         : 3.5369527825776403 

 At row:144, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:144, column:18,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:18,the value of plot_cost is         : 3.566322892279056 

 At row:144, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:144, column:19,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:19,the value of plot_cost is         : 3.596501062382986 

 At row:144, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:144, column:20,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:20,the value of plot_cost is         : 3.6274872928894295 

 At row:144, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:144, column:21,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:21,the value of plot_cost is         : 3.6592815837983883 

 At row:144, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:144, column:22,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:22,the value of plot_cost is         : 3.691883935109864 

 At row:144, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:144, column:23,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:23,the value of plot_cost is         : 3.725294346823855 

 At row:144, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:144, column:24,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:24,the value of plot_cost is         : 3.75951281894036 

 At row:144, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:144, column:25,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:25,the value of plot_cost is         : 3.7945393514593797 

 At row:144, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:144, column:26,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:26,the value of plot_cost is         : 3.8303739443809137 

 At row:144, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:144, column:27,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:27,the value of plot_cost is         : 3.867016597704964 

 At row:144, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:144, column:28,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:28,the value of plot_cost is         : 3.9044673114315307 

 At row:144, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:144, column:29,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:29,the value of plot_cost is         : 3.942726085560612 

 At row:144, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:144, column:30,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:30,the value of plot_cost is         : 3.9817929200922055 

 At row:144, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:144, column:31,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:31,the value of plot_cost is         : 4.021667815026316 

 At row:144, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:144, column:32,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:32,the value of plot_cost is         : 4.062350770362942 

 At row:144, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:144, column:33,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:33,the value of plot_cost is         : 4.103841786102084 

 At row:144, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:144, column:34,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:34,the value of plot_cost is         : 4.14614086224374 

 At row:144, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:144, column:35,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:35,the value of plot_cost is         : 4.18924799878791 

 At row:144, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:144, column:36,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:36,the value of plot_cost is         : 4.233163195734595 

 At row:144, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:144, column:37,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:37,the value of plot_cost is         : 4.277886453083796 

 At row:144, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:144, column:38,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:38,the value of plot_cost is         : 4.323417770835515 

 At row:144, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:144, column:39,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:39,the value of plot_cost is         : 4.369757148989746 

 At row:144, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:144, column:40,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:40,the value of plot_cost is         : 4.416904587546491 

 At row:144, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:144, column:41,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:41,the value of plot_cost is         : 4.464860086505752 

 At row:144, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:144, column:42,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:42,the value of plot_cost is         : 4.513623645867528 

 At row:144, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:144, column:43,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:43,the value of plot_cost is         : 4.563195265631822 

 At row:144, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:144, column:44,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:44,the value of plot_cost is         : 4.613574945798628 

 At row:144, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:144, column:45,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:45,the value of plot_cost is         : 4.66476268636795 

 At row:144, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:144, column:46,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:46,the value of plot_cost is         : 4.716758487339786 

 At row:144, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:144, column:47,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:47,the value of plot_cost is         : 4.769562348714138 

 At row:144, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:144, column:48,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:48,the value of plot_cost is         : 4.823174270491006 

 At row:144, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:144, column:49,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:49,the value of plot_cost is         : 4.877594252670389 

 At row:144, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:144, column:50,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:50,the value of plot_cost is         : 4.9328222952522855 

 At row:144, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:144, column:51,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:51,the value of plot_cost is         : 4.9888583982366965 

 At row:144, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:144, column:52,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:52,the value of plot_cost is         : 5.045702561623624 

 At row:144, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:144, column:53,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:53,the value of plot_cost is         : 5.103354785413068 

 At row:144, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:144, column:54,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:54,the value of plot_cost is         : 5.1618150696050265 

 At row:144, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:144, column:55,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:55,the value of plot_cost is         : 5.221083414199498 

 At row:144, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:144, column:56,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:56,the value of plot_cost is         : 5.281159819196485 

 At row:144, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:144, column:57,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:57,the value of plot_cost is         : 5.342044284595989 

 At row:144, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:144, column:58,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:58,the value of plot_cost is         : 5.403736810398008 

 At row:144, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:144, column:59,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:59,the value of plot_cost is         : 5.466237396602541 

 At row:144, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:144, column:60,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:60,the value of plot_cost is         : 5.529546043209588 

 At row:144, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:144, column:61,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:61,the value of plot_cost is         : 5.593662750219149 

 At row:144, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:144, column:62,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:62,the value of plot_cost is         : 5.658587517631228 

 At row:144, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:144, column:63,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:63,the value of plot_cost is         : 5.724320345445824 

 At row:144, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:144, column:64,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:64,the value of plot_cost is         : 5.790861233662933 

 At row:144, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:144, column:65,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:65,the value of plot_cost is         : 5.858210182282555 

 At row:144, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:144, column:66,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:66,the value of plot_cost is         : 5.926367191304692 

 At row:144, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:144, column:67,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:67,the value of plot_cost is         : 5.9953322607293495 

 At row:144, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:144, column:68,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:68,the value of plot_cost is         : 6.065105390556518 

 At row:144, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:144, column:69,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:69,the value of plot_cost is         : 6.135686580786201 

 At row:144, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:144, column:70,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:70,the value of plot_cost is         : 6.207075831418399 

 At row:144, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:144, column:71,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:71,the value of plot_cost is         : 6.279273142453112 

 At row:144, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:144, column:72,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:72,the value of plot_cost is         : 6.352278513890342 

 At row:144, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:144, column:73,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:73,the value of plot_cost is         : 6.4260919457300885 

 At row:144, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:144, column:74,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:74,the value of plot_cost is         : 6.5007134379723475 

 At row:144, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:144, column:75,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:75,the value of plot_cost is         : 6.57614299061712 

 At row:144, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:144, column:76,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:76,the value of plot_cost is         : 6.652380603664409 

 At row:144, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:144, column:77,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:77,the value of plot_cost is         : 6.729426277114217 

 At row:144, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:144, column:78,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:78,the value of plot_cost is         : 6.8072800109665375 

 At row:144, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:144, column:79,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:79,the value of plot_cost is         : 6.8859418052213694 

 At row:144, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:144, column:80,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:80,the value of plot_cost is         : 6.965411659878719 

 At row:144, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:144, column:81,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:81,the value of plot_cost is         : 7.045689574938582 

 At row:144, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:144, column:82,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:82,the value of plot_cost is         : 7.126775550400964 

 At row:144, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:144, column:83,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:83,the value of plot_cost is         : 7.208669586265863 

 At row:144, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:144, column:84,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:84,the value of plot_cost is         : 7.2913716825332715 

 At row:144, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:144, column:85,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:85,the value of plot_cost is         : 7.374881839203195 

 At row:144, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:144, column:86,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:86,the value of plot_cost is         : 7.459200056275635 

 At row:144, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:144, column:87,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:87,the value of plot_cost is         : 7.544326333750593 

 At row:144, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:144, column:88,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:88,the value of plot_cost is         : 7.630260671628065 

 At row:144, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:144, column:89,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:89,the value of plot_cost is         : 7.717003069908049 

 At row:144, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:144, column:90,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:90,the value of plot_cost is         : 7.804553528590548 

 At row:144, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:144, column:91,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:91,the value of plot_cost is         : 7.892912047675563 

 At row:144, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:144, column:92,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:92,the value of plot_cost is         : 7.982078627163094 

 At row:144, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:144, column:93,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:93,the value of plot_cost is         : 8.072053267053144 

 At row:144, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:144, column:94,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:94,the value of plot_cost is         : 8.162835967345705 

 At row:144, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:144, column:95,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:95,the value of plot_cost is         : 8.254426728040778 

 At row:144, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:144, column:96,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:96,the value of plot_cost is         : 8.346825549138368 

 At row:144, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:144, column:97,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:97,the value of plot_cost is         : 8.44003243063848 

 At row:144, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:144, column:98,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:98,the value of plot_cost is         : 8.534047372541101 

 At row:144, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:144, column:99,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:99,the value of plot_cost is         : 8.628870374846237 

 At row:144, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:144, column:100,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:100,the value of plot_cost is         : 8.724501437553885 

 At row:144, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:144, column:101,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:101,the value of plot_cost is         : 8.82094056066405 

 At row:144, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:144, column:102,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:102,the value of plot_cost is         : 8.918187744176734 

 At row:144, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:144, column:103,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:103,the value of plot_cost is         : 9.016242988091935 

 At row:144, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:144, column:104,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:104,the value of plot_cost is         : 9.115106292409646 

 At row:144, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:144, column:105,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:105,the value of plot_cost is         : 9.214777657129872 

 At row:144, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:144, column:106,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:106,the value of plot_cost is         : 9.315257082252613 

 At row:144, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:144, column:107,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:107,the value of plot_cost is         : 9.416544567777875 

 At row:144, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:144, column:108,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:108,the value of plot_cost is         : 9.518640113705647 

 At row:144, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:144, column:109,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:109,the value of plot_cost is         : 9.621543720035932 

 At row:144, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:144, column:110,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:110,the value of plot_cost is         : 9.725255386768731 

 At row:144, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:144, column:111,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:111,the value of plot_cost is         : 9.82977511390405 

 At row:144, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:144, column:112,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:112,the value of plot_cost is         : 9.935102901441882 

 At row:144, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:144, column:113,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:113,the value of plot_cost is         : 10.041238749382234 

 At row:144, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:144, column:114,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:114,the value of plot_cost is         : 10.148182657725096 

 At row:144, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:144, column:115,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:115,the value of plot_cost is         : 10.255934626470472 

 At row:144, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:144, column:116,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:116,the value of plot_cost is         : 10.364494655618362 

 At row:144, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:144, column:117,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:117,the value of plot_cost is         : 10.473862745168775 

 At row:144, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:144, column:118,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:118,the value of plot_cost is         : 10.5840388951217 

 At row:144, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:144, column:119,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:119,the value of plot_cost is         : 10.695023105477137 

 At row:144, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:144, column:120,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:120,the value of plot_cost is         : 10.806815376235088 

 At row:144, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:144, column:121,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:121,the value of plot_cost is         : 10.919415707395556 

 At row:144, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:144, column:122,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:122,the value of plot_cost is         : 11.03282409895854 

 At row:144, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:144, column:123,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:123,the value of plot_cost is         : 11.147040550924045 

 At row:144, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:144, column:124,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:124,the value of plot_cost is         : 11.262065063292056 

 At row:144, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:144, column:125,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:125,the value of plot_cost is         : 11.377897636062583 

 At row:144, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:144, column:126,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:126,the value of plot_cost is         : 11.494538269235623 

 At row:144, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:144, column:127,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:127,the value of plot_cost is         : 11.611986962811187 

 At row:144, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:144, column:128,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:128,the value of plot_cost is         : 11.730243716789264 

 At row:144, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:144, column:129,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:129,the value of plot_cost is         : 11.84930853116985 

 At row:144, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:144, column:130,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:130,the value of plot_cost is         : 11.969181405952954 

 At row:144, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:144, column:131,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:131,the value of plot_cost is         : 12.08986234113857 

 At row:144, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:144, column:132,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:132,the value of plot_cost is         : 12.211351336726704 

 At row:144, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:144, column:133,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:133,the value of plot_cost is         : 12.33364839271736 

 At row:144, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:144, column:134,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:134,the value of plot_cost is         : 12.456753509110522 

 At row:144, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:144, column:135,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:135,the value of plot_cost is         : 12.5806666859062 

 At row:144, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:144, column:136,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:136,the value of plot_cost is         : 12.705387923104393 

 At row:144, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:144, column:137,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:137,the value of plot_cost is         : 12.830917220705109 

 At row:144, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:144, column:138,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:138,the value of plot_cost is         : 12.957254578708334 

 At row:144, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:144, column:139,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:139,the value of plot_cost is         : 13.08439999711407 

 At row:144, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:144, column:140,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:140,the value of plot_cost is         : 13.212353475922328 

 At row:144, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:144, column:141,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:141,the value of plot_cost is         : 13.341115015133093 

 At row:144, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:144, column:142,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:142,the value of plot_cost is         : 13.47068461474638 

 At row:144, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:144, column:143,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:143,the value of plot_cost is         : 13.601062274762187 

 At row:144, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:144, column:144,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:144,the value of plot_cost is         : 13.7322479951805 

 At row:144, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:144, column:145,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:145,the value of plot_cost is         : 13.864241776001327 

 At row:144, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:144, column:146,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:146,the value of plot_cost is         : 13.997043617224671 

 At row:144, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:144, column:147,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:147,the value of plot_cost is         : 14.130653518850538 

 At row:144, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:144, column:148,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:148,the value of plot_cost is         : 14.265071480878913 

 At row:144, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:144, column:149,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:149,the value of plot_cost is         : 14.400297503309803 

 At row:144, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:144, column:150,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:150,the value of plot_cost is         : 14.536331586143206 

 At row:144, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:144, column:151,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:151,the value of plot_cost is         : 14.67317372937913 

 At row:144, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:144, column:152,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:152,the value of plot_cost is         : 14.810823933017563 

 At row:144, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:144, column:153,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:153,the value of plot_cost is         : 14.949282197058519 

 At row:144, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:144, column:154,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:154,the value of plot_cost is         : 15.088548521501984 

 At row:144, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:144, column:155,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:155,the value of plot_cost is         : 15.228622906347965 

 At row:144, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:144, column:156,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:156,the value of plot_cost is         : 15.369505351596468 

 At row:144, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:144, column:157,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:157,the value of plot_cost is         : 15.511195857247477 

 At row:144, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:144, column:158,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:158,the value of plot_cost is         : 15.653694423301005 

 At row:144, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:144, column:159,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:159,the value of plot_cost is         : 15.797001049757045 

 At row:144, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:144, column:160,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:160,the value of plot_cost is         : 15.941115736615597 

 At row:144, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:144, column:161,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:161,the value of plot_cost is         : 16.086038483876667 

 At row:144, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:144, column:162,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:162,the value of plot_cost is         : 16.231769291540257 

 At row:144, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:144, column:163,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:163,the value of plot_cost is         : 16.378308159606362 

 At row:144, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:144, column:164,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:164,the value of plot_cost is         : 16.52565508807498 

 At row:144, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:144, column:165,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:165,the value of plot_cost is         : 16.673810076946108 

 At row:144, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:144, column:166,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:166,the value of plot_cost is         : 16.82277312621976 

 At row:144, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:144, column:167,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:167,the value of plot_cost is         : 16.972544235895924 

 At row:144, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:144, column:168,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:168,the value of plot_cost is         : 17.1231234059746 

 At row:144, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:144, column:169,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:169,the value of plot_cost is         : 17.27451063645579 

 At row:144, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:144, column:170,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:170,the value of plot_cost is         : 17.426705927339498 

 At row:144, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:144, column:171,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:171,the value of plot_cost is         : 17.57970927862572 

 At row:144, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:144, column:172,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:172,the value of plot_cost is         : 17.733520690314453 

 At row:144, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:144, column:173,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:173,the value of plot_cost is         : 17.888140162405715 

 At row:144, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:144, column:174,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:174,the value of plot_cost is         : 18.043567694899483 

 At row:144, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:144, column:175,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:175,the value of plot_cost is         : 18.199803287795763 

 At row:144, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:144, column:176,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:176,the value of plot_cost is         : 18.356846941094563 

 At row:144, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:144, column:177,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:177,the value of plot_cost is         : 18.514698654795875 

 At row:144, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:144, column:178,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:178,the value of plot_cost is         : 18.673358428899707 

 At row:144, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:144, column:179,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:179,the value of plot_cost is         : 18.832826263406048 

 At row:144, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:144, column:180,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:180,the value of plot_cost is         : 18.9931021583149 

 At row:144, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:144, column:181,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:181,the value of plot_cost is         : 19.15418611362628 

 At row:144, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:144, column:182,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:182,the value of plot_cost is         : 19.316078129340163 

 At row:144, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:144, column:183,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:183,the value of plot_cost is         : 19.478778205456575 

 At row:144, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:144, column:184,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:184,the value of plot_cost is         : 19.642286341975492 

 At row:144, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:144, column:185,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:185,the value of plot_cost is         : 19.806602538896925 

 At row:144, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:144, column:186,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:186,the value of plot_cost is         : 19.97172679622088 

 At row:144, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:144, column:187,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:187,the value of plot_cost is         : 20.137659113947343 

 At row:144, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:144, column:188,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:188,the value of plot_cost is         : 20.304399492076325 

 At row:144, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:144, column:189,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:189,the value of plot_cost is         : 20.471947930607815 

 At row:144, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:144, column:190,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:190,the value of plot_cost is         : 20.640304429541825 

 At row:144, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:144, column:191,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:191,the value of plot_cost is         : 20.809468988878347 

 At row:144, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:144, column:192,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:192,the value of plot_cost is         : 20.979441608617385 

 At row:144, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:144, column:193,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:193,the value of plot_cost is         : 21.15022228875895 

 At row:144, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:144, column:194,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:194,the value of plot_cost is         : 21.32181102930301 

 At row:144, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:144, column:195,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:195,the value of plot_cost is         : 21.494207830249596 

 At row:144, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:144, column:196,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:196,the value of plot_cost is         : 21.667412691598702 

 At row:144, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:144, column:197,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:197,the value of plot_cost is         : 21.841425613350317 

 At row:144, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:144, column:198,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:198,the value of plot_cost is         : 22.016246595504448 

 At row:144, column:199,the value of plot_t0 is           : 3.0
 At row:144, column:199,the value of plot_t1 is           : 1.8944723618090453
 At row:144, column:199,the value of plot_cost is         : 22.191875638061088 

 At row:145, column:0,the value of plot_t0 is           : -1.0
 At row:145, column:0,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:0,the value of plot_cost is         : 3.34192855880263 

 At row:145, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:145, column:1,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:1,the value of plot_cost is         : 3.3602397847096235 

 At row:145, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:145, column:2,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:2,the value of plot_cost is         : 3.379359071019132 

 At row:145, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:145, column:3,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:3,the value of plot_cost is         : 3.399286417731157 

 At row:145, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:145, column:4,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:4,the value of plot_cost is         : 3.420021824845696 

 At row:145, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:145, column:5,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:5,the value of plot_cost is         : 3.441565292362749 

 At row:145, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:145, column:6,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:6,the value of plot_cost is         : 3.4639168202823183 

 At row:145, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:145, column:7,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:7,the value of plot_cost is         : 3.4870764086044024 

 At row:145, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:145, column:8,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:8,the value of plot_cost is         : 3.511044057329003 

 At row:145, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:145, column:9,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:9,the value of plot_cost is         : 3.535819766456117 

 At row:145, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:145, column:10,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:10,the value of plot_cost is         : 3.561403535985746 

 At row:145, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:145, column:11,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:11,the value of plot_cost is         : 3.5877953659178914 

 At row:145, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:145, column:12,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:12,the value of plot_cost is         : 3.61499525625255 

 At row:145, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:145, column:13,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:13,the value of plot_cost is         : 3.643003206989726 

 At row:145, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:145, column:14,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:14,the value of plot_cost is         : 3.671819218129416 

 At row:145, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:145, column:15,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:15,the value of plot_cost is         : 3.70144328967162 

 At row:145, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:145, column:16,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:16,the value of plot_cost is         : 3.731875421616341 

 At row:145, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:145, column:17,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:17,the value of plot_cost is         : 3.7631156139635746 

 At row:145, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:145, column:18,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:18,the value of plot_cost is         : 3.795163866713326 

 At row:145, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:145, column:19,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:19,the value of plot_cost is         : 3.8280201798655913 

 At row:145, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:145, column:20,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:20,the value of plot_cost is         : 3.861684553420371 

 At row:145, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:145, column:21,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:21,the value of plot_cost is         : 3.8961569873776667 

 At row:145, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:145, column:22,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:22,the value of plot_cost is         : 3.9314374817374764 

 At row:145, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:145, column:23,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:23,the value of plot_cost is         : 3.9675260364998035 

 At row:145, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:145, column:24,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:24,the value of plot_cost is         : 4.004422651664644 

 At row:145, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:145, column:25,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:25,the value of plot_cost is         : 4.0421273272319995 

 At row:145, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:145, column:26,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:26,the value of plot_cost is         : 4.08064006320187 

 At row:145, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:145, column:27,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:27,the value of plot_cost is         : 4.119960859574256 

 At row:145, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:145, column:28,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:28,the value of plot_cost is         : 4.160089716349158 

 At row:145, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:145, column:29,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:29,the value of plot_cost is         : 4.201026633526575 

 At row:145, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:145, column:30,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:30,the value of plot_cost is         : 4.242771611106505 

 At row:145, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:145, column:31,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:31,the value of plot_cost is         : 4.285324649088952 

 At row:145, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:145, column:32,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:32,the value of plot_cost is         : 4.328685747473912 

 At row:145, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:145, column:33,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:33,the value of plot_cost is         : 4.372854906261391 

 At row:145, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:145, column:34,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:34,the value of plot_cost is         : 4.417832125451382 

 At row:145, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:145, column:35,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:35,the value of plot_cost is         : 4.4636174050438875 

 At row:145, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:145, column:36,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:36,the value of plot_cost is         : 4.51021074503891 

 At row:145, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:145, column:37,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:37,the value of plot_cost is         : 4.557612145436446 

 At row:145, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:145, column:38,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:38,the value of plot_cost is         : 4.605821606236499 

 At row:145, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:145, column:39,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:39,the value of plot_cost is         : 4.654839127439067 

 At row:145, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:145, column:40,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:40,the value of plot_cost is         : 4.704664709044147 

 At row:145, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:145, column:41,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:41,the value of plot_cost is         : 4.755298351051745 

 At row:145, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:145, column:42,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:42,the value of plot_cost is         : 4.806740053461858 

 At row:145, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:145, column:43,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:43,the value of plot_cost is         : 4.858989816274485 

 At row:145, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:145, column:44,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:44,the value of plot_cost is         : 4.912047639489629 

 At row:145, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:145, column:45,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:45,the value of plot_cost is         : 4.965913523107285 

 At row:145, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:145, column:46,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:46,the value of plot_cost is         : 5.0205874671274575 

 At row:145, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:145, column:47,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:47,the value of plot_cost is         : 5.076069471550143 

 At row:145, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:145, column:48,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:48,the value of plot_cost is         : 5.132359536375349 

 At row:145, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:145, column:49,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:49,the value of plot_cost is         : 5.1894576616030665 

 At row:145, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:145, column:50,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:50,the value of plot_cost is         : 5.247363847233299 

 At row:145, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:145, column:51,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:51,the value of plot_cost is         : 5.306078093266048 

 At row:145, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:145, column:52,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:52,the value of plot_cost is         : 5.36560039970131 

 At row:145, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:145, column:53,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:53,the value of plot_cost is         : 5.42593076653909 

 At row:145, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:145, column:54,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:54,the value of plot_cost is         : 5.487069193779383 

 At row:145, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:145, column:55,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:55,the value of plot_cost is         : 5.5490156814221905 

 At row:145, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:145, column:56,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:56,the value of plot_cost is         : 5.611770229467514 

 At row:145, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:145, column:57,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:57,the value of plot_cost is         : 5.675332837915355 

 At row:145, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:145, column:58,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:58,the value of plot_cost is         : 5.739703506765707 

 At row:145, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:145, column:59,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:59,the value of plot_cost is         : 5.8048822360185754 

 At row:145, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:145, column:60,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:60,the value of plot_cost is         : 5.87086902567396 

 At row:145, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:145, column:61,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:61,the value of plot_cost is         : 5.937663875731858 

 At row:145, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:145, column:62,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:62,the value of plot_cost is         : 6.005266786192273 

 At row:145, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:145, column:63,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:63,the value of plot_cost is         : 6.073677757055202 

 At row:145, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:145, column:64,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:64,the value of plot_cost is         : 6.1428967883206465 

 At row:145, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:145, column:65,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:65,the value of plot_cost is         : 6.2129238799886055 

 At row:145, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:145, column:66,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:66,the value of plot_cost is         : 6.283759032059078 

 At row:145, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:145, column:67,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:67,the value of plot_cost is         : 6.35540224453207 

 At row:145, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:145, column:68,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:68,the value of plot_cost is         : 6.4278535174075735 

 At row:145, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:145, column:69,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:69,the value of plot_cost is         : 6.501112850685594 

 At row:145, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:145, column:70,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:70,the value of plot_cost is         : 6.575180244366128 

 At row:145, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:145, column:71,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:71,the value of plot_cost is         : 6.650055698449179 

 At row:145, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:145, column:72,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:72,the value of plot_cost is         : 6.725739212934743 

 At row:145, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:145, column:73,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:73,the value of plot_cost is         : 6.802230787822824 

 At row:145, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:145, column:74,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:74,the value of plot_cost is         : 6.879530423113418 

 At row:145, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:145, column:75,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:75,the value of plot_cost is         : 6.957638118806528 

 At row:145, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:145, column:76,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:76,the value of plot_cost is         : 7.036553874902154 

 At row:145, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:145, column:77,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:77,the value of plot_cost is         : 7.1162776914002945 

 At row:145, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:145, column:78,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:78,the value of plot_cost is         : 7.196809568300951 

 At row:145, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:145, column:79,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:79,the value of plot_cost is         : 7.27814950560412 

 At row:145, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:145, column:80,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:80,the value of plot_cost is         : 7.360297503309806 

 At row:145, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:145, column:81,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:81,the value of plot_cost is         : 7.4432535614180075 

 At row:145, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:145, column:82,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:82,the value of plot_cost is         : 7.527017679928722 

 At row:145, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:145, column:83,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:83,the value of plot_cost is         : 7.611589858841954 

 At row:145, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:145, column:84,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:84,the value of plot_cost is         : 7.6969700981577 

 At row:145, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:145, column:85,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:85,the value of plot_cost is         : 7.783158397875961 

 At row:145, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:145, column:86,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:86,the value of plot_cost is         : 7.870154757996738 

 At row:145, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:145, column:87,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:87,the value of plot_cost is         : 7.95795917852003 

 At row:145, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:145, column:88,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:88,the value of plot_cost is         : 8.046571659445835 

 At row:145, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:145, column:89,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:89,the value of plot_cost is         : 8.135992200774156 

 At row:145, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:145, column:90,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:90,the value of plot_cost is         : 8.226220802504992 

 At row:145, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:145, column:91,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:91,the value of plot_cost is         : 8.317257464638345 

 At row:145, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:145, column:92,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:92,the value of plot_cost is         : 8.409102187174211 

 At row:145, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:145, column:93,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:93,the value of plot_cost is         : 8.501754970112593 

 At row:145, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:145, column:94,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:94,the value of plot_cost is         : 8.59521581345349 

 At row:145, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:145, column:95,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:95,the value of plot_cost is         : 8.689484717196903 

 At row:145, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:145, column:96,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:96,the value of plot_cost is         : 8.78456168134283 

 At row:145, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:145, column:97,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:97,the value of plot_cost is         : 8.880446705891272 

 At row:145, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:145, column:98,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:98,the value of plot_cost is         : 8.977139790842228 

 At row:145, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:145, column:99,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:99,the value of plot_cost is         : 9.0746409361957 

 At row:145, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:145, column:100,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:100,the value of plot_cost is         : 9.172950141951686 

 At row:145, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:145, column:101,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:101,the value of plot_cost is         : 9.272067408110189 

 At row:145, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:145, column:102,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:102,the value of plot_cost is         : 9.371992734671208 

 At row:145, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:145, column:103,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:103,the value of plot_cost is         : 9.472726121634741 

 At row:145, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:145, column:104,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:104,the value of plot_cost is         : 9.57426756900079 

 At row:145, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:145, column:105,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:105,the value of plot_cost is         : 9.676617076769352 

 At row:145, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:145, column:106,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:106,the value of plot_cost is         : 9.77977464494043 

 At row:145, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:145, column:107,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:107,the value of plot_cost is         : 9.883740273514023 

 At row:145, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:145, column:108,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:108,the value of plot_cost is         : 9.988513962490131 

 At row:145, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:145, column:109,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:109,the value of plot_cost is         : 10.094095711868752 

 At row:145, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:145, column:110,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:110,the value of plot_cost is         : 10.200485521649894 

 At row:145, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:145, column:111,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:111,the value of plot_cost is         : 10.307683391833548 

 At row:145, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:145, column:112,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:112,the value of plot_cost is         : 10.415689322419713 

 At row:145, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:145, column:113,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:113,the value of plot_cost is         : 10.524503313408397 

 At row:145, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:145, column:114,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:114,the value of plot_cost is         : 10.6341253647996 

 At row:145, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:145, column:115,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:115,the value of plot_cost is         : 10.744555476593312 

 At row:145, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:145, column:116,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:116,the value of plot_cost is         : 10.855793648789538 

 At row:145, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:145, column:117,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:117,the value of plot_cost is         : 10.967839881388281 

 At row:145, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:145, column:118,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:118,the value of plot_cost is         : 11.080694174389542 

 At row:145, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:145, column:119,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:119,the value of plot_cost is         : 11.194356527793317 

 At row:145, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:145, column:120,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:120,the value of plot_cost is         : 11.308826941599607 

 At row:145, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:145, column:121,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:121,the value of plot_cost is         : 11.424105415808407 

 At row:145, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:145, column:122,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:122,the value of plot_cost is         : 11.540191950419727 

 At row:145, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:145, column:123,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:123,the value of plot_cost is         : 11.657086545433563 

 At row:145, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:145, column:124,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:124,the value of plot_cost is         : 11.774789200849915 

 At row:145, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:145, column:125,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:125,the value of plot_cost is         : 11.89329991666878 

 At row:145, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:145, column:126,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:126,the value of plot_cost is         : 12.012618692890157 

 At row:145, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:145, column:127,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:127,the value of plot_cost is         : 12.132745529514054 

 At row:145, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:145, column:128,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:128,the value of plot_cost is         : 12.253680426540463 

 At row:145, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:145, column:129,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:129,the value of plot_cost is         : 12.375423383969384 

 At row:145, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:145, column:130,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:130,the value of plot_cost is         : 12.497974401800827 

 At row:145, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:145, column:131,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:131,the value of plot_cost is         : 12.621333480034783 

 At row:145, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:145, column:132,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:132,the value of plot_cost is         : 12.74550061867125 

 At row:145, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:145, column:133,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:133,the value of plot_cost is         : 12.870475817710238 

 At row:145, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:145, column:134,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:134,the value of plot_cost is         : 12.99625907715174 

 At row:145, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:145, column:135,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:135,the value of plot_cost is         : 13.122850396995755 

 At row:145, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:145, column:136,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:136,the value of plot_cost is         : 13.250249777242283 

 At row:145, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:145, column:137,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:137,the value of plot_cost is         : 13.378457217891329 

 At row:145, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:145, column:138,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:138,the value of plot_cost is         : 13.50747271894289 

 At row:145, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:145, column:139,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:139,the value of plot_cost is         : 13.637296280396964 

 At row:145, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:145, column:140,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:140,the value of plot_cost is         : 13.767927902253557 

 At row:145, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:145, column:141,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:141,the value of plot_cost is         : 13.899367584512662 

 At row:145, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:145, column:142,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:142,the value of plot_cost is         : 14.031615327174283 

 At row:145, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:145, column:143,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:143,the value of plot_cost is         : 14.164671130238421 

 At row:145, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:145, column:144,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:144,the value of plot_cost is         : 14.298534993705072 

 At row:145, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:145, column:145,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:145,the value of plot_cost is         : 14.43320691757424 

 At row:145, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:145, column:146,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:146,the value of plot_cost is         : 14.568686901845918 

 At row:145, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:145, column:147,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:147,the value of plot_cost is         : 14.704974946520117 

 At row:145, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:145, column:148,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:148,the value of plot_cost is         : 14.842071051596827 

 At row:145, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:145, column:149,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:149,the value of plot_cost is         : 14.979975217076055 

 At row:145, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:145, column:150,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:150,the value of plot_cost is         : 15.1186874429578 

 At row:145, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:145, column:151,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:151,the value of plot_cost is         : 15.258207729242054 

 At row:145, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:145, column:152,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:152,the value of plot_cost is         : 15.398536075928824 

 At row:145, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:145, column:153,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:153,the value of plot_cost is         : 15.539672483018112 

 At row:145, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:145, column:154,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:154,the value of plot_cost is         : 15.681616950509914 

 At row:145, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:145, column:155,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:155,the value of plot_cost is         : 15.824369478404236 

 At row:145, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:145, column:156,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:156,the value of plot_cost is         : 15.967930066701067 

 At row:145, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:145, column:157,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:157,the value of plot_cost is         : 16.112298715400414 

 At row:145, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:145, column:158,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:158,the value of plot_cost is         : 16.257475424502275 

 At row:145, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:145, column:159,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:159,the value of plot_cost is         : 16.403460194006655 

 At row:145, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:145, column:160,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:160,the value of plot_cost is         : 16.550253023913545 

 At row:145, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:145, column:161,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:161,the value of plot_cost is         : 16.697853914222954 

 At row:145, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:145, column:162,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:162,the value of plot_cost is         : 16.84626286493487 

 At row:145, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:145, column:163,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:163,the value of plot_cost is         : 16.995479876049313 

 At row:145, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:145, column:164,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:164,the value of plot_cost is         : 17.145504947566266 

 At row:145, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:145, column:165,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:165,the value of plot_cost is         : 17.296338079485736 

 At row:145, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:145, column:166,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:166,the value of plot_cost is         : 17.44797927180772 

 At row:145, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:145, column:167,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:167,the value of plot_cost is         : 17.600428524532216 

 At row:145, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:145, column:168,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:168,the value of plot_cost is         : 17.75368583765923 

 At row:145, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:145, column:169,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:169,the value of plot_cost is         : 17.90775121118876 

 At row:145, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:145, column:170,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:170,the value of plot_cost is         : 18.062624645120803 

 At row:145, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:145, column:171,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:171,the value of plot_cost is         : 18.218306139455365 

 At row:145, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:145, column:172,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:172,the value of plot_cost is         : 18.374795694192432 

 At row:145, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:145, column:173,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:173,the value of plot_cost is         : 18.532093309332026 

 At row:145, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:145, column:174,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:174,the value of plot_cost is         : 18.690198984874126 

 At row:145, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:145, column:175,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:175,the value of plot_cost is         : 18.84911272081875 

 At row:145, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:145, column:176,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:176,the value of plot_cost is         : 19.00883451716588 

 At row:145, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:145, column:177,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:177,the value of plot_cost is         : 19.169364373915528 

 At row:145, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:145, column:178,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:178,the value of plot_cost is         : 19.330702291067695 

 At row:145, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:145, column:179,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:179,the value of plot_cost is         : 19.492848268622375 

 At row:145, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:145, column:180,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:180,the value of plot_cost is         : 19.65580230657957 

 At row:145, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:145, column:181,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:181,the value of plot_cost is         : 19.819564404939275 

 At row:145, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:145, column:182,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:182,the value of plot_cost is         : 19.984134563701502 

 At row:145, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:145, column:183,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:183,the value of plot_cost is         : 20.14951278286624 

 At row:145, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:145, column:184,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:184,the value of plot_cost is         : 20.315699062433495 

 At row:145, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:145, column:185,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:185,the value of plot_cost is         : 20.482693402403267 

 At row:145, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:145, column:186,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:186,the value of plot_cost is         : 20.650495802775552 

 At row:145, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:145, column:187,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:187,the value of plot_cost is         : 20.819106263550353 

 At row:145, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:145, column:188,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:188,the value of plot_cost is         : 20.98852478472767 

 At row:145, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:145, column:189,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:189,the value of plot_cost is         : 21.1587513663075 

 At row:145, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:145, column:190,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:190,the value of plot_cost is         : 21.329786008289844 

 At row:145, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:145, column:191,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:191,the value of plot_cost is         : 21.501628710674705 

 At row:145, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:145, column:192,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:192,the value of plot_cost is         : 21.674279473462075 

 At row:145, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:145, column:193,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:193,the value of plot_cost is         : 21.847738296651965 

 At row:145, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:145, column:194,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:194,the value of plot_cost is         : 22.022005180244378 

 At row:145, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:145, column:195,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:195,the value of plot_cost is         : 22.197080124239292 

 At row:145, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:145, column:196,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:196,the value of plot_cost is         : 22.37296312863673 

 At row:145, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:145, column:197,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:197,the value of plot_cost is         : 22.549654193436684 

 At row:145, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:145, column:198,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:198,the value of plot_cost is         : 22.72715331863915 

 At row:145, column:199,the value of plot_t0 is           : 3.0
 At row:145, column:199,the value of plot_t1 is           : 1.9145728643216082
 At row:145, column:199,the value of plot_cost is         : 22.905460504244132 

 At row:146, column:0,the value of plot_t0 is           : -1.0
 At row:146, column:0,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:0,the value of plot_cost is         : 3.535145613206015 

 At row:146, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:146, column:1,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:1,the value of plot_cost is         : 3.5561349821613435 

 At row:146, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:146, column:2,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:2,the value of plot_cost is         : 3.5779324115191877 

 At row:146, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:146, column:3,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:3,the value of plot_cost is         : 3.600537901279549 

 At row:146, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:146, column:4,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:4,the value of plot_cost is         : 3.6239514514424234 

 At row:146, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:146, column:5,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:5,the value of plot_cost is         : 3.6481730620078126 

 At row:146, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:146, column:6,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:6,the value of plot_cost is         : 3.673202732975716 

 At row:146, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:146, column:7,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:7,the value of plot_cost is         : 3.6990404643461368 

 At row:146, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:146, column:8,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:8,the value of plot_cost is         : 3.7256862561190727 

 At row:146, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:146, column:9,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:9,the value of plot_cost is         : 3.753140108294523 

 At row:146, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:146, column:10,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:10,the value of plot_cost is         : 3.781402020872488 

 At row:146, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:146, column:11,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:11,the value of plot_cost is         : 3.8104719938529668 

 At row:146, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:146, column:12,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:12,the value of plot_cost is         : 3.8403500272359623 

 At row:146, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:146, column:13,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:13,the value of plot_cost is         : 3.8710361210214743 

 At row:146, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:146, column:14,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:14,the value of plot_cost is         : 3.9025302752095 

 At row:146, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:146, column:15,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:15,the value of plot_cost is         : 3.9348324898000393 

 At row:146, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:146, column:16,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:16,the value of plot_cost is         : 3.967942764793095 

 At row:146, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:146, column:17,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:17,the value of plot_cost is         : 4.001861100188665 

 At row:146, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:146, column:18,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:18,the value of plot_cost is         : 4.036587495986753 

 At row:146, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:146, column:19,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:19,the value of plot_cost is         : 4.072121952187354 

 At row:146, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:146, column:20,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:20,the value of plot_cost is         : 4.108464468790469 

 At row:146, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:146, column:21,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:21,the value of plot_cost is         : 4.1456150457961 

 At row:146, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:146, column:22,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:22,the value of plot_cost is         : 4.183573683204246 

 At row:146, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:146, column:23,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:23,the value of plot_cost is         : 4.2223403810149085 

 At row:146, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:146, column:24,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:24,the value of plot_cost is         : 4.261915139228085 

 At row:146, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:146, column:25,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:25,the value of plot_cost is         : 4.302297957843776 

 At row:146, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:146, column:26,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:26,the value of plot_cost is         : 4.343488836861981 

 At row:146, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:146, column:27,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:27,the value of plot_cost is         : 4.3854877762827025 

 At row:146, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:146, column:28,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:28,the value of plot_cost is         : 4.428294776105941 

 At row:146, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:146, column:29,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:29,the value of plot_cost is         : 4.471909836331694 

 At row:146, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:146, column:30,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:30,the value of plot_cost is         : 4.5163329569599595 

 At row:146, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:146, column:31,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:31,the value of plot_cost is         : 4.56156413799074 

 At row:146, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:146, column:32,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:32,the value of plot_cost is         : 4.607603379424038 

 At row:146, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:146, column:33,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:33,the value of plot_cost is         : 4.654450681259852 

 At row:146, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:146, column:34,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:34,the value of plot_cost is         : 4.702106043498179 

 At row:146, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:146, column:35,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:35,the value of plot_cost is         : 4.75056946613902 

 At row:146, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:146, column:36,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:36,the value of plot_cost is         : 4.799840949182377 

 At row:146, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:146, column:37,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:37,the value of plot_cost is         : 4.849920492628249 

 At row:146, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:146, column:38,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:38,the value of plot_cost is         : 4.900808096476639 

 At row:146, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:146, column:39,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:39,the value of plot_cost is         : 4.9525037607275415 

 At row:146, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:146, column:40,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:40,the value of plot_cost is         : 5.0050074853809585 

 At row:146, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:146, column:41,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:41,the value of plot_cost is         : 5.058319270436891 

 At row:146, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:146, column:42,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:42,the value of plot_cost is         : 5.112439115895339 

 At row:146, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:146, column:43,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:43,the value of plot_cost is         : 5.167367021756303 

 At row:146, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:146, column:44,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:44,the value of plot_cost is         : 5.223102988019782 

 At row:146, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:146, column:45,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:45,the value of plot_cost is         : 5.279647014685774 

 At row:146, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:146, column:46,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:46,the value of plot_cost is         : 5.336999101754282 

 At row:146, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:146, column:47,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:47,the value of plot_cost is         : 5.395159249225305 

 At row:146, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:146, column:48,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:48,the value of plot_cost is         : 5.454127457098845 

 At row:146, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:146, column:49,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:49,the value of plot_cost is         : 5.513903725374899 

 At row:146, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:146, column:50,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:50,the value of plot_cost is         : 5.574488054053467 

 At row:146, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:146, column:51,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:51,the value of plot_cost is         : 5.635880443134549 

 At row:146, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:146, column:52,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:52,the value of plot_cost is         : 5.698080892618148 

 At row:146, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:146, column:53,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:53,the value of plot_cost is         : 5.761089402504264 

 At row:146, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:146, column:54,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:54,the value of plot_cost is         : 5.824905972792893 

 At row:146, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:146, column:55,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:55,the value of plot_cost is         : 5.889530603484037 

 At row:146, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:146, column:56,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:56,the value of plot_cost is         : 5.954963294577695 

 At row:146, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:146, column:57,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:57,the value of plot_cost is         : 6.021204046073872 

 At row:146, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:146, column:58,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:58,the value of plot_cost is         : 6.08825285797256 

 At row:146, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:146, column:59,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:59,the value of plot_cost is         : 6.156109730273765 

 At row:146, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:146, column:60,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:60,the value of plot_cost is         : 6.224774662977483 

 At row:146, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:146, column:61,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:61,the value of plot_cost is         : 6.2942476560837175 

 At row:146, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:146, column:62,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:62,the value of plot_cost is         : 6.364528709592468 

 At row:146, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:146, column:63,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:63,the value of plot_cost is         : 6.435617823503733 

 At row:146, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:146, column:64,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:64,the value of plot_cost is         : 6.507514997817513 

 At row:146, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:146, column:65,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:65,the value of plot_cost is         : 6.580220232533808 

 At row:146, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:146, column:66,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:66,the value of plot_cost is         : 6.653733527652617 

 At row:146, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:146, column:67,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:67,the value of plot_cost is         : 6.728054883173944 

 At row:146, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:146, column:68,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:68,the value of plot_cost is         : 6.803184299097783 

 At row:146, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:146, column:69,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:69,the value of plot_cost is         : 6.879121775424139 

 At row:146, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:146, column:70,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:70,the value of plot_cost is         : 6.955867312153009 

 At row:146, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:146, column:71,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:71,the value of plot_cost is         : 7.033420909284393 

 At row:146, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:146, column:72,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:72,the value of plot_cost is         : 7.111782566818295 

 At row:146, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:146, column:73,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:73,the value of plot_cost is         : 7.1909522847547125 

 At row:146, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:146, column:74,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:74,the value of plot_cost is         : 7.270930063093644 

 At row:146, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:146, column:75,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:75,the value of plot_cost is         : 7.351715901835088 

 At row:146, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:146, column:76,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:76,the value of plot_cost is         : 7.433309800979048 

 At row:146, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:146, column:77,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:77,the value of plot_cost is         : 7.515711760525527 

 At row:146, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:146, column:78,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:78,the value of plot_cost is         : 7.598921780474518 

 At row:146, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:146, column:79,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:79,the value of plot_cost is         : 7.682939860826022 

 At row:146, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:146, column:80,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:80,the value of plot_cost is         : 7.7677660015800445 

 At row:146, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:146, column:81,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:81,the value of plot_cost is         : 7.8534002027365775 

 At row:146, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:146, column:82,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:82,the value of plot_cost is         : 7.939842464295631 

 At row:146, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:146, column:83,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:83,the value of plot_cost is         : 8.0270927862572 

 At row:146, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:146, column:84,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:84,the value of plot_cost is         : 8.115151168621281 

 At row:146, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:146, column:85,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:85,the value of plot_cost is         : 8.204017611387876 

 At row:146, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:146, column:86,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:86,the value of plot_cost is         : 8.293692114556988 

 At row:146, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:146, column:87,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:87,the value of plot_cost is         : 8.384174678128616 

 At row:146, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:146, column:88,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:88,the value of plot_cost is         : 8.47546530210276 

 At row:146, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:146, column:89,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:89,the value of plot_cost is         : 8.567563986479415 

 At row:146, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:146, column:90,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:90,the value of plot_cost is         : 8.660470731258586 

 At row:146, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:146, column:91,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:91,the value of plot_cost is         : 8.754185536440273 

 At row:146, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:146, column:92,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:92,the value of plot_cost is         : 8.848708402024476 

 At row:146, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:146, column:93,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:93,the value of plot_cost is         : 8.944039328011195 

 At row:146, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:146, column:94,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:94,the value of plot_cost is         : 9.040178314400427 

 At row:146, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:146, column:95,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:95,the value of plot_cost is         : 9.137125361192174 

 At row:146, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:146, column:96,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:96,the value of plot_cost is         : 9.234880468386436 

 At row:146, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:146, column:97,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:97,the value of plot_cost is         : 9.333443635983215 

 At row:146, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:146, column:98,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:98,the value of plot_cost is         : 9.43281486398251 

 At row:146, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:146, column:99,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:99,the value of plot_cost is         : 9.532994152384317 

 At row:146, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:146, column:100,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:100,the value of plot_cost is         : 9.633981501188638 

 At row:146, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:146, column:101,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:101,the value of plot_cost is         : 9.735776910395476 

 At row:146, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:146, column:102,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:102,the value of plot_cost is         : 9.838380380004828 

 At row:146, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:146, column:103,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:103,the value of plot_cost is         : 9.941791910016699 

 At row:146, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:146, column:104,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:104,the value of plot_cost is         : 10.046011500431081 

 At row:146, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:146, column:105,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:105,the value of plot_cost is         : 10.151039151247979 

 At row:146, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:146, column:106,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:106,the value of plot_cost is         : 10.256874862467392 

 At row:146, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:146, column:107,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:107,the value of plot_cost is         : 10.363518634089322 

 At row:146, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:146, column:108,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:108,the value of plot_cost is         : 10.47097046611377 

 At row:146, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:146, column:109,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:109,the value of plot_cost is         : 10.579230358540729 

 At row:146, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:146, column:110,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:110,the value of plot_cost is         : 10.688298311370199 

 At row:146, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:146, column:111,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:111,the value of plot_cost is         : 10.798174324602186 

 At row:146, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:146, column:112,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:112,the value of plot_cost is         : 10.908858398236694 

 At row:146, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:146, column:113,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:113,the value of plot_cost is         : 11.020350532273714 

 At row:146, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:146, column:114,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:114,the value of plot_cost is         : 11.132650726713246 

 At row:146, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:146, column:115,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:115,the value of plot_cost is         : 11.245758981555298 

 At row:146, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:146, column:116,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:116,the value of plot_cost is         : 11.359675296799857 

 At row:146, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:146, column:117,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:117,the value of plot_cost is         : 11.47439967244694 

 At row:146, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:146, column:118,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:118,the value of plot_cost is         : 11.589932108496535 

 At row:146, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:146, column:119,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:119,the value of plot_cost is         : 11.706272604948646 

 At row:146, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:146, column:120,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:120,the value of plot_cost is         : 11.82342116180327 

 At row:146, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:146, column:121,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:121,the value of plot_cost is         : 11.941377779060408 

 At row:146, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:146, column:122,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:122,the value of plot_cost is         : 12.060142456720063 

 At row:146, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:146, column:123,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:123,the value of plot_cost is         : 12.179715194782236 

 At row:146, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:146, column:124,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:124,the value of plot_cost is         : 12.30009599324692 

 At row:146, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:146, column:125,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:125,the value of plot_cost is         : 12.42128485211412 

 At row:146, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:146, column:126,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:126,the value of plot_cost is         : 12.543281771383834 

 At row:146, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:146, column:127,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:127,the value of plot_cost is         : 12.666086751056065 

 At row:146, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:146, column:128,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:128,the value of plot_cost is         : 12.789699791130815 

 At row:146, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:146, column:129,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:129,the value of plot_cost is         : 12.914120891608071 

 At row:146, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:146, column:130,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:130,the value of plot_cost is         : 13.03935005248785 

 At row:146, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:146, column:131,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:131,the value of plot_cost is         : 13.165387273770136 

 At row:146, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:146, column:132,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:132,the value of plot_cost is         : 13.292232555454945 

 At row:146, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:146, column:133,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:133,the value of plot_cost is         : 13.419885897542265 

 At row:146, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:146, column:134,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:134,the value of plot_cost is         : 13.5483473000321 

 At row:146, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:146, column:135,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:135,the value of plot_cost is         : 13.677616762924451 

 At row:146, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:146, column:136,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:136,the value of plot_cost is         : 13.807694286219316 

 At row:146, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:146, column:137,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:137,the value of plot_cost is         : 13.938579869916701 

 At row:146, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:146, column:138,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:138,the value of plot_cost is         : 14.0702735140166 

 At row:146, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:146, column:139,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:139,the value of plot_cost is         : 14.20277521851901 

 At row:146, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:146, column:140,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:140,the value of plot_cost is         : 14.336084983423934 

 At row:146, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:146, column:141,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:141,the value of plot_cost is         : 14.470202808731374 

 At row:146, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:146, column:142,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:142,the value of plot_cost is         : 14.605128694441333 

 At row:146, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:146, column:143,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:143,the value of plot_cost is         : 14.740862640553807 

 At row:146, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:146, column:144,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:144,the value of plot_cost is         : 14.877404647068792 

 At row:146, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:146, column:145,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:145,the value of plot_cost is         : 15.014754713986296 

 At row:146, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:146, column:146,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:146,the value of plot_cost is         : 15.152912841306309 

 At row:146, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:146, column:147,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:147,the value of plot_cost is         : 15.291879029028843 

 At row:146, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:146, column:148,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:148,the value of plot_cost is         : 15.431653277153892 

 At row:146, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:146, column:149,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:149,the value of plot_cost is         : 15.572235585681456 

 At row:146, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:146, column:150,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:150,the value of plot_cost is         : 15.713625954611532 

 At row:146, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:146, column:151,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:151,the value of plot_cost is         : 15.855824383944125 

 At row:146, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:146, column:152,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:152,the value of plot_cost is         : 15.998830873679228 

 At row:146, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:146, column:153,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:153,the value of plot_cost is         : 16.142645423816855 

 At row:146, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:146, column:154,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:154,the value of plot_cost is         : 16.28726803435699 

 At row:146, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:146, column:155,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:155,the value of plot_cost is         : 16.432698705299643 

 At row:146, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:146, column:156,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:156,the value of plot_cost is         : 16.578937436644818 

 At row:146, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:146, column:157,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:157,the value of plot_cost is         : 16.725984228392498 

 At row:146, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:146, column:158,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:158,the value of plot_cost is         : 16.873839080542695 

 At row:146, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:146, column:159,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:159,the value of plot_cost is         : 17.022501993095407 

 At row:146, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:146, column:160,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:160,the value of plot_cost is         : 17.171972966050635 

 At row:146, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:146, column:161,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:161,the value of plot_cost is         : 17.32225199940838 

 At row:146, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:146, column:162,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:162,the value of plot_cost is         : 17.473339093168633 

 At row:146, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:146, column:163,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:163,the value of plot_cost is         : 17.625234247331413 

 At row:146, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:146, column:164,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:164,the value of plot_cost is         : 17.7779374618967 

 At row:146, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:146, column:165,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:165,the value of plot_cost is         : 17.931448736864503 

 At row:146, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:146, column:166,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:166,the value of plot_cost is         : 18.085768072234828 

 At row:146, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:146, column:167,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:167,the value of plot_cost is         : 18.24089546800766 

 At row:146, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:146, column:168,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:168,the value of plot_cost is         : 18.39683092418301 

 At row:146, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:146, column:169,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:169,the value of plot_cost is         : 18.553574440760872 

 At row:146, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:146, column:170,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:170,the value of plot_cost is         : 18.711126017741247 

 At row:146, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:146, column:171,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:171,the value of plot_cost is         : 18.86948565512414 

 At row:146, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:146, column:172,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:172,the value of plot_cost is         : 19.02865335290955 

 At row:146, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:146, column:173,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:173,the value of plot_cost is         : 19.18862911109748 

 At row:146, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:146, column:174,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:174,the value of plot_cost is         : 19.349412929687915 

 At row:146, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:146, column:175,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:175,the value of plot_cost is         : 19.511004808680873 

 At row:146, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:146, column:176,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:176,the value of plot_cost is         : 19.673404748076347 

 At row:146, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:146, column:177,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:177,the value of plot_cost is         : 19.836612747874327 

 At row:146, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:146, column:178,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:178,the value of plot_cost is         : 20.000628808074826 

 At row:146, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:146, column:179,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:179,the value of plot_cost is         : 20.165452928677844 

 At row:146, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:146, column:180,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:180,the value of plot_cost is         : 20.33108510968337 

 At row:146, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:146, column:181,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:181,the value of plot_cost is         : 20.497525351091415 

 At row:146, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:146, column:182,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:182,the value of plot_cost is         : 20.664773652901975 

 At row:146, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:146, column:183,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:183,the value of plot_cost is         : 20.832830015115054 

 At row:146, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:146, column:184,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:184,the value of plot_cost is         : 21.00169443773064 

 At row:146, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:146, column:185,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:185,the value of plot_cost is         : 21.17136692074875 

 At row:146, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:146, column:186,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:186,the value of plot_cost is         : 21.341847464169376 

 At row:146, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:146, column:187,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:187,the value of plot_cost is         : 21.513136067992505 

 At row:146, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:146, column:188,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:188,the value of plot_cost is         : 21.685232732218157 

 At row:146, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:146, column:189,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:189,the value of plot_cost is         : 21.858137456846325 

 At row:146, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:146, column:190,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:190,the value of plot_cost is         : 22.031850241877 

 At row:146, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:146, column:191,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:191,the value of plot_cost is         : 22.206371087310202 

 At row:146, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:146, column:192,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:192,the value of plot_cost is         : 22.381699993145908 

 At row:146, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:146, column:193,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:193,the value of plot_cost is         : 22.55783695938414 

 At row:146, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:146, column:194,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:194,the value of plot_cost is         : 22.734781986024878 

 At row:146, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:146, column:195,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:195,the value of plot_cost is         : 22.91253507306813 

 At row:146, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:146, column:196,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:196,the value of plot_cost is         : 23.091096220513908 

 At row:146, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:146, column:197,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:197,the value of plot_cost is         : 23.2704654283622 

 At row:146, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:146, column:198,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:198,the value of plot_cost is         : 23.450642696612995 

 At row:146, column:199,the value of plot_t0 is           : 3.0
 At row:146, column:199,the value of plot_t1 is           : 1.9346733668341707
 At row:146, column:199,the value of plot_cost is         : 23.631628025266316 

 At row:147, column:0,the value of plot_t0 is           : -1.0
 At row:147, column:0,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:0,the value of plot_cost is         : 3.740945322448568 

 At row:147, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:147, column:1,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:1,the value of plot_cost is         : 3.7646128344522314 

 At row:147, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:147, column:2,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:2,the value of plot_cost is         : 3.7890884068584127 

 At row:147, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:147, column:3,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:3,the value of plot_cost is         : 3.8143720396671092 

 At row:147, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:147, column:4,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:4,the value of plot_cost is         : 3.8404637328783195 

 At row:147, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:147, column:5,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:5,the value of plot_cost is         : 3.8673634864920445 

 At row:147, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:147, column:6,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:6,the value of plot_cost is         : 3.8950713005082838 

 At row:147, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:147, column:7,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:7,the value of plot_cost is         : 3.92358717492704 

 At row:147, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:147, column:8,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:8,the value of plot_cost is         : 3.9529111097483116 

 At row:147, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:147, column:9,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:9,the value of plot_cost is         : 3.983043104972098 

 At row:147, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:147, column:10,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:10,the value of plot_cost is         : 4.013983160598397 

 At row:147, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:147, column:11,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:11,the value of plot_cost is         : 4.045731276627213 

 At row:147, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:147, column:12,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:12,the value of plot_cost is         : 4.078287453058544 

 At row:147, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:147, column:13,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:13,the value of plot_cost is         : 4.111651689892391 

 At row:147, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:147, column:14,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:14,the value of plot_cost is         : 4.145823987128753 

 At row:147, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:147, column:15,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:15,the value of plot_cost is         : 4.180804344767629 

 At row:147, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:147, column:16,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:16,the value of plot_cost is         : 4.216592762809019 

 At row:147, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:147, column:17,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:17,the value of plot_cost is         : 4.253189241252926 

 At row:147, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:147, column:18,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:18,the value of plot_cost is         : 4.290593780099349 

 At row:147, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:147, column:19,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:19,the value of plot_cost is         : 4.328806379348286 

 At row:147, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:147, column:20,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:20,the value of plot_cost is         : 4.367827038999737 

 At row:147, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:147, column:21,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:21,the value of plot_cost is         : 4.4076557590537035 

 At row:147, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:147, column:22,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:22,the value of plot_cost is         : 4.448292539510184 

 At row:147, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:147, column:23,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:23,the value of plot_cost is         : 4.489737380369184 

 At row:147, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:147, column:24,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:24,the value of plot_cost is         : 4.531990281630696 

 At row:147, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:147, column:25,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:25,the value of plot_cost is         : 4.575051243294723 

 At row:147, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:147, column:26,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:26,the value of plot_cost is         : 4.618920265361264 

 At row:147, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:147, column:27,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:27,the value of plot_cost is         : 4.66359734783032 

 At row:147, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:147, column:28,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:28,the value of plot_cost is         : 4.7090824907018956 

 At row:147, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:147, column:29,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:29,the value of plot_cost is         : 4.755375693975984 

 At row:147, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:147, column:30,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:30,the value of plot_cost is         : 4.802476957652584 

 At row:147, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:147, column:31,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:31,the value of plot_cost is         : 4.850386281731701 

 At row:147, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:147, column:32,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:32,the value of plot_cost is         : 4.899103666213335 

 At row:147, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:147, column:33,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:33,the value of plot_cost is         : 4.9486291110974845 

 At row:147, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:147, column:34,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:34,the value of plot_cost is         : 4.998962616384148 

 At row:147, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:147, column:35,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:35,the value of plot_cost is         : 5.050104182073324 

 At row:147, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:147, column:36,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:36,the value of plot_cost is         : 5.102053808165016 

 At row:147, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:147, column:37,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:37,the value of plot_cost is         : 5.154811494659224 

 At row:147, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:147, column:38,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:38,the value of plot_cost is         : 5.208377241555951 

 At row:147, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:147, column:39,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:39,the value of plot_cost is         : 5.262751048855189 

 At row:147, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:147, column:40,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:40,the value of plot_cost is         : 5.317932916556941 

 At row:147, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:147, column:41,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:41,the value of plot_cost is         : 5.373922844661209 

 At row:147, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:147, column:42,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:42,the value of plot_cost is         : 5.430720833167992 

 At row:147, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:147, column:43,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:43,the value of plot_cost is         : 5.488326882077295 

 At row:147, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:147, column:44,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:44,the value of plot_cost is         : 5.546740991389108 

 At row:147, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:147, column:45,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:45,the value of plot_cost is         : 5.6059631611034355 

 At row:147, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:147, column:46,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:46,the value of plot_cost is         : 5.665993391220279 

 At row:147, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:147, column:47,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:47,the value of plot_cost is         : 5.726831681739637 

 At row:147, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:147, column:48,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:48,the value of plot_cost is         : 5.788478032661513 

 At row:147, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:147, column:49,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:49,the value of plot_cost is         : 5.8509324439859025 

 At row:147, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:147, column:50,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:50,the value of plot_cost is         : 5.914194915712807 

 At row:147, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:147, column:51,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:51,the value of plot_cost is         : 5.978265447842224 

 At row:147, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:147, column:52,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:52,the value of plot_cost is         : 6.043144040374161 

 At row:147, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:147, column:53,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:53,the value of plot_cost is         : 6.1088306933086125 

 At row:147, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:147, column:54,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:54,the value of plot_cost is         : 6.175325406645577 

 At row:147, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:147, column:55,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:55,the value of plot_cost is         : 6.242628180385056 

 At row:147, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:147, column:56,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:56,the value of plot_cost is         : 6.310739014527048 

 At row:147, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:147, column:57,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:57,the value of plot_cost is         : 6.379657909071562 

 At row:147, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:147, column:58,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:58,the value of plot_cost is         : 6.449384864018587 

 At row:147, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:147, column:59,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:59,the value of plot_cost is         : 6.519919879368127 

 At row:147, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:147, column:60,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:60,the value of plot_cost is         : 6.591262955120182 

 At row:147, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:147, column:61,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:61,the value of plot_cost is         : 6.66341409127475 

 At row:147, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:147, column:62,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:62,the value of plot_cost is         : 6.736373287831836 

 At row:147, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:147, column:63,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:63,the value of plot_cost is         : 6.810140544791439 

 At row:147, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:147, column:64,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:64,the value of plot_cost is         : 6.884715862153556 

 At row:147, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:147, column:65,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:65,the value of plot_cost is         : 6.960099239918184 

 At row:147, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:147, column:66,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:66,the value of plot_cost is         : 7.036290678085328 

 At row:147, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:147, column:67,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:67,the value of plot_cost is         : 7.113290176654993 

 At row:147, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:147, column:68,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:68,the value of plot_cost is         : 7.191097735627168 

 At row:147, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:147, column:69,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:69,the value of plot_cost is         : 7.2697133550018584 

 At row:147, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:147, column:70,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:70,the value of plot_cost is         : 7.349137034779064 

 At row:147, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:147, column:71,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:71,the value of plot_cost is         : 7.4293687749587844 

 At row:147, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:147, column:72,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:72,the value of plot_cost is         : 7.510408575541021 

 At row:147, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:147, column:73,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:73,the value of plot_cost is         : 7.5922564365257745 

 At row:147, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:147, column:74,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:74,the value of plot_cost is         : 7.6749123579130405 

 At row:147, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:147, column:75,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:75,the value of plot_cost is         : 7.758376339702821 

 At row:147, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:147, column:76,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:76,the value of plot_cost is         : 7.842648381895117 

 At row:147, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:147, column:77,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:77,the value of plot_cost is         : 7.92772848448993 

 At row:147, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:147, column:78,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:78,the value of plot_cost is         : 8.01361664748726 

 At row:147, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:147, column:79,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:79,the value of plot_cost is         : 8.1003128708871 

 At row:147, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:147, column:80,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:80,the value of plot_cost is         : 8.187817154689455 

 At row:147, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:147, column:81,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:81,the value of plot_cost is         : 8.276129498894328 

 At row:147, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:147, column:82,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:82,the value of plot_cost is         : 8.365249903501715 

 At row:147, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:147, column:83,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:83,the value of plot_cost is         : 8.45517836851162 

 At row:147, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:147, column:84,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:84,the value of plot_cost is         : 8.545914893924035 

 At row:147, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:147, column:85,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:85,the value of plot_cost is         : 8.637459479738967 

 At row:147, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:147, column:86,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:86,the value of plot_cost is         : 8.729812125956414 

 At row:147, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:147, column:87,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:87,the value of plot_cost is         : 8.822972832576378 

 At row:147, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:147, column:88,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:88,the value of plot_cost is         : 8.916941599598857 

 At row:147, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:147, column:89,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:89,the value of plot_cost is         : 9.01171842702385 

 At row:147, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:147, column:90,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:90,the value of plot_cost is         : 9.107303314851356 

 At row:147, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:147, column:91,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:91,the value of plot_cost is         : 9.203696263081376 

 At row:147, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:147, column:92,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:92,the value of plot_cost is         : 9.300897271713916 

 At row:147, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:147, column:93,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:93,the value of plot_cost is         : 9.398906340748972 

 At row:147, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:147, column:94,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:94,the value of plot_cost is         : 9.497723470186541 

 At row:147, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:147, column:95,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:95,the value of plot_cost is         : 9.59734866002662 

 At row:147, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:147, column:96,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:96,the value of plot_cost is         : 9.697781910269219 

 At row:147, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:147, column:97,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:97,the value of plot_cost is         : 9.799023220914338 

 At row:147, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:147, column:98,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:98,the value of plot_cost is         : 9.901072591961967 

 At row:147, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:147, column:99,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:99,the value of plot_cost is         : 10.00393002341211 

 At row:147, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:147, column:100,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:100,the value of plot_cost is         : 10.107595515264766 

 At row:147, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:147, column:101,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:101,the value of plot_cost is         : 10.212069067519938 

 At row:147, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:147, column:102,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:102,the value of plot_cost is         : 10.317350680177627 

 At row:147, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:147, column:103,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:103,the value of plot_cost is         : 10.423440353237837 

 At row:147, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:147, column:104,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:104,the value of plot_cost is         : 10.530338086700555 

 At row:147, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:147, column:105,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:105,the value of plot_cost is         : 10.638043880565787 

 At row:147, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:147, column:106,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:106,the value of plot_cost is         : 10.746557734833534 

 At row:147, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:147, column:107,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:107,the value of plot_cost is         : 10.855879649503803 

 At row:147, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:147, column:108,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:108,the value of plot_cost is         : 10.966009624576584 

 At row:147, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:147, column:109,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:109,the value of plot_cost is         : 11.076947660051875 

 At row:147, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:147, column:110,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:110,the value of plot_cost is         : 11.188693755929684 

 At row:147, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:147, column:111,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:111,the value of plot_cost is         : 11.301247912210007 

 At row:147, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:147, column:112,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:112,the value of plot_cost is         : 11.414610128892848 

 At row:147, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:147, column:113,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:113,the value of plot_cost is         : 11.528780405978207 

 At row:147, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:147, column:114,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:114,the value of plot_cost is         : 11.643758743466075 

 At row:147, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:147, column:115,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:115,the value of plot_cost is         : 11.759545141356458 

 At row:147, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:147, column:116,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:116,the value of plot_cost is         : 11.876139599649356 

 At row:147, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:147, column:117,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:117,the value of plot_cost is         : 11.993542118344777 

 At row:147, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:147, column:118,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:118,the value of plot_cost is         : 12.111752697442705 

 At row:147, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:147, column:119,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:119,the value of plot_cost is         : 12.230771336943153 

 At row:147, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:147, column:120,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:120,the value of plot_cost is         : 12.35059803684611 

 At row:147, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:147, column:121,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:121,the value of plot_cost is         : 12.471232797151583 

 At row:147, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:147, column:122,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:122,the value of plot_cost is         : 12.592675617859575 

 At row:147, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:147, column:123,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:123,the value of plot_cost is         : 12.714926498970087 

 At row:147, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:147, column:124,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:124,the value of plot_cost is         : 12.837985440483106 

 At row:147, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:147, column:125,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:125,the value of plot_cost is         : 12.96185244239864 

 At row:147, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:147, column:126,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:126,the value of plot_cost is         : 13.086527504716688 

 At row:147, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:147, column:127,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:127,the value of plot_cost is         : 13.212010627437259 

 At row:147, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:147, column:128,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:128,the value of plot_cost is         : 13.338301810560342 

 At row:147, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:147, column:129,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:129,the value of plot_cost is         : 13.465401054085937 

 At row:147, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:147, column:130,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:130,the value of plot_cost is         : 13.593308358014045 

 At row:147, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:147, column:131,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:131,the value of plot_cost is         : 13.72202372234467 

 At row:147, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:147, column:132,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:132,the value of plot_cost is         : 13.851547147077813 

 At row:147, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:147, column:133,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:133,the value of plot_cost is         : 13.981878632213474 

 At row:147, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:147, column:134,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:134,the value of plot_cost is         : 14.113018177751647 

 At row:147, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:147, column:135,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:135,the value of plot_cost is         : 14.24496578369233 

 At row:147, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:147, column:136,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:136,the value of plot_cost is         : 14.37772145003553 

 At row:147, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:147, column:137,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:137,the value of plot_cost is         : 14.511285176781248 

 At row:147, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:147, column:138,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:138,the value of plot_cost is         : 14.645656963929484 

 At row:147, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:147, column:139,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:139,the value of plot_cost is         : 14.780836811480231 

 At row:147, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:147, column:140,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:140,the value of plot_cost is         : 14.916824719433492 

 At row:147, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:147, column:141,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:141,the value of plot_cost is         : 15.053620687789266 

 At row:147, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:147, column:142,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:142,the value of plot_cost is         : 15.19122471654756 

 At row:147, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:147, column:143,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:143,the value of plot_cost is         : 15.329636805708372 

 At row:147, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:147, column:144,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:144,the value of plot_cost is         : 15.468856955271693 

 At row:147, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:147, column:145,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:145,the value of plot_cost is         : 15.60888516523753 

 At row:147, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:147, column:146,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:146,the value of plot_cost is         : 15.74972143560588 

 At row:147, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:147, column:147,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:147,the value of plot_cost is         : 15.891365766376751 

 At row:147, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:147, column:148,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:148,the value of plot_cost is         : 16.033818157550133 

 At row:147, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:147, column:149,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:149,the value of plot_cost is         : 16.17707860912603 

 At row:147, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:147, column:150,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:150,the value of plot_cost is         : 16.321147121104445 

 At row:147, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:147, column:151,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:151,the value of plot_cost is         : 16.466023693485372 

 At row:147, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:147, column:152,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:152,the value of plot_cost is         : 16.611708326268815 

 At row:147, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:147, column:153,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:153,the value of plot_cost is         : 16.758201019454777 

 At row:147, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:147, column:154,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:154,the value of plot_cost is         : 16.90550177304325 

 At row:147, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:147, column:155,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:155,the value of plot_cost is         : 17.053610587034235 

 At row:147, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:147, column:156,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:156,the value of plot_cost is         : 17.202527461427746 

 At row:147, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:147, column:157,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:157,the value of plot_cost is         : 17.352252396223758 

 At row:147, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:147, column:158,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:158,the value of plot_cost is         : 17.502785391422297 

 At row:147, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:147, column:159,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:159,the value of plot_cost is         : 17.654126447023344 

 At row:147, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:147, column:160,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:160,the value of plot_cost is         : 17.806275563026908 

 At row:147, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:147, column:161,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:161,the value of plot_cost is         : 17.959232739432988 

 At row:147, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:147, column:162,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:162,the value of plot_cost is         : 18.112997976241576 

 At row:147, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:147, column:163,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:163,the value of plot_cost is         : 18.267571273452692 

 At row:147, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:147, column:164,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:164,the value of plot_cost is         : 18.422952631066313 

 At row:147, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:147, column:165,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:165,the value of plot_cost is         : 18.579142049082453 

 At row:147, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:147, column:166,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:166,the value of plot_cost is         : 18.736139527501113 

 At row:147, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:147, column:167,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:167,the value of plot_cost is         : 18.893945066322274 

 At row:147, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:147, column:168,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:168,the value of plot_cost is         : 19.052558665545963 

 At row:147, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:147, column:169,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:169,the value of plot_cost is         : 19.211980325172163 

 At row:147, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:147, column:170,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:170,the value of plot_cost is         : 19.372210045200873 

 At row:147, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:147, column:171,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:171,the value of plot_cost is         : 19.533247825632113 

 At row:147, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:147, column:172,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:172,the value of plot_cost is         : 19.69509366646585 

 At row:147, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:147, column:173,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:173,the value of plot_cost is         : 19.85774756770212 

 At row:147, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:147, column:174,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:174,the value of plot_cost is         : 20.02120952934089 

 At row:147, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:147, column:175,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:175,the value of plot_cost is         : 20.18547955138218 

 At row:147, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:147, column:176,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:176,the value of plot_cost is         : 20.35055763382599 

 At row:147, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:147, column:177,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:177,the value of plot_cost is         : 20.516443776672308 

 At row:147, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:147, column:178,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:178,the value of plot_cost is         : 20.683137979921142 

 At row:147, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:147, column:179,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:179,the value of plot_cost is         : 20.850640243572496 

 At row:147, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:147, column:180,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:180,the value of plot_cost is         : 21.018950567626355 

 At row:147, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:147, column:181,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:181,the value of plot_cost is         : 21.188068952082745 

 At row:147, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:147, column:182,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:182,the value of plot_cost is         : 21.357995396941632 

 At row:147, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:147, column:183,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:183,the value of plot_cost is         : 21.528729902203043 

 At row:147, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:147, column:184,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:184,the value of plot_cost is         : 21.700272467866974 

 At row:147, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:147, column:185,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:185,the value of plot_cost is         : 21.872623093933413 

 At row:147, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:147, column:186,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:186,the value of plot_cost is         : 22.045781780402372 

 At row:147, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:147, column:187,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:187,the value of plot_cost is         : 22.21974852727384 

 At row:147, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:147, column:188,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:188,the value of plot_cost is         : 22.39452333454783 

 At row:147, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:147, column:189,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:189,the value of plot_cost is         : 22.570106202224327 

 At row:147, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:147, column:190,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:190,the value of plot_cost is         : 22.746497130303347 

 At row:147, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:147, column:191,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:191,the value of plot_cost is         : 22.92369611878488 

 At row:147, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:147, column:192,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:192,the value of plot_cost is         : 23.101703167668923 

 At row:147, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:147, column:193,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:193,the value of plot_cost is         : 23.28051827695549 

 At row:147, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:147, column:194,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:194,the value of plot_cost is         : 23.460141446644563 

 At row:147, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:147, column:195,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:195,the value of plot_cost is         : 23.640572676736156 

 At row:147, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:147, column:196,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:196,the value of plot_cost is         : 23.821811967230264 

 At row:147, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:147, column:197,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:197,the value of plot_cost is         : 24.003859318126892 

 At row:147, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:147, column:198,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:198,the value of plot_cost is         : 24.18671472942603 

 At row:147, column:199,the value of plot_t0 is           : 3.0
 At row:147, column:199,the value of plot_t1 is           : 1.9547738693467336
 At row:147, column:199,the value of plot_cost is         : 24.370378201127675 

 At row:148, column:0,the value of plot_t0 is           : -1.0
 At row:148, column:0,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:0,the value of plot_cost is         : 3.9593276865302824 

 At row:148, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:148, column:1,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:1,the value of plot_cost is         : 3.9856733415822823 

 At row:148, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:148, column:2,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:2,the value of plot_cost is         : 4.012827057036798 

 At row:148, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:148, column:3,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:3,the value of plot_cost is         : 4.040788832893831 

 At row:148, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:148, column:4,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:4,the value of plot_cost is         : 4.069558669153377 

 At row:148, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:148, column:5,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:5,the value of plot_cost is         : 4.099136565815437 

 At row:148, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:148, column:6,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:6,the value of plot_cost is         : 4.129522522880013 

 At row:148, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:148, column:7,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:7,the value of plot_cost is         : 4.160716540347104 

 At row:148, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:148, column:8,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:8,the value of plot_cost is         : 4.192718618216713 

 At row:148, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:148, column:9,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:9,the value of plot_cost is         : 4.225528756488834 

 At row:148, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:148, column:10,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:10,the value of plot_cost is         : 4.2591469551634695 

 At row:148, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:148, column:11,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:11,the value of plot_cost is         : 4.29357321424062 

 At row:148, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:148, column:12,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:12,the value of plot_cost is         : 4.328807533720288 

 At row:148, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:148, column:13,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:13,the value of plot_cost is         : 4.364849913602471 

 At row:148, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:148, column:14,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:14,the value of plot_cost is         : 4.401700353887168 

 At row:148, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:148, column:15,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:15,the value of plot_cost is         : 4.43935885457438 

 At row:148, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:148, column:16,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:16,the value of plot_cost is         : 4.477825415664106 

 At row:148, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:148, column:17,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:17,the value of plot_cost is         : 4.517100037156348 

 At row:148, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:148, column:18,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:18,the value of plot_cost is         : 4.557182719051107 

 At row:148, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:148, column:19,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:19,the value of plot_cost is         : 4.598073461348379 

 At row:148, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:148, column:20,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:20,the value of plot_cost is         : 4.639772264048165 

 At row:148, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:148, column:21,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:21,the value of plot_cost is         : 4.682279127150467 

 At row:148, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:148, column:22,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:22,the value of plot_cost is         : 4.7255940506552845 

 At row:148, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:148, column:23,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:23,the value of plot_cost is         : 4.769717034562619 

 At row:148, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:148, column:24,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:24,the value of plot_cost is         : 4.814648078872468 

 At row:148, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:148, column:25,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:25,the value of plot_cost is         : 4.860387183584829 

 At row:148, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:148, column:26,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:26,the value of plot_cost is         : 4.906934348699707 

 At row:148, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:148, column:27,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:27,the value of plot_cost is         : 4.9542895742171 

 At row:148, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:148, column:28,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:28,the value of plot_cost is         : 5.0024528601370095 

 At row:148, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:148, column:29,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:29,the value of plot_cost is         : 5.0514242064594335 

 At row:148, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:148, column:30,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:30,the value of plot_cost is         : 5.101203613184371 

 At row:148, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:148, column:31,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:31,the value of plot_cost is         : 5.151791080311824 

 At row:148, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:148, column:32,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:32,the value of plot_cost is         : 5.2031866078417925 

 At row:148, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:148, column:33,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:33,the value of plot_cost is         : 5.255390195774278 

 At row:148, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:148, column:34,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:34,the value of plot_cost is         : 5.3084018441092775 

 At row:148, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:148, column:35,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:35,the value of plot_cost is         : 5.3622215528467905 

 At row:148, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:148, column:36,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:36,the value of plot_cost is         : 5.416849321986817 

 At row:148, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:148, column:37,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:37,the value of plot_cost is         : 5.472285151529362 

 At row:148, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:148, column:38,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:38,the value of plot_cost is         : 5.528529041474422 

 At row:148, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:148, column:39,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:39,the value of plot_cost is         : 5.585580991821996 

 At row:148, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:148, column:40,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:40,the value of plot_cost is         : 5.643441002572085 

 At row:148, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:148, column:41,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:41,the value of plot_cost is         : 5.702109073724688 

 At row:148, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:148, column:42,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:42,the value of plot_cost is         : 5.761585205279808 

 At row:148, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:148, column:43,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:43,the value of plot_cost is         : 5.821869397237444 

 At row:148, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:148, column:44,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:44,the value of plot_cost is         : 5.882961649597593 

 At row:148, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:148, column:45,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:45,the value of plot_cost is         : 5.944861962360258 

 At row:148, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:148, column:46,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:46,the value of plot_cost is         : 6.007570335525437 

 At row:148, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:148, column:47,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:47,the value of plot_cost is         : 6.071086769093131 

 At row:148, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:148, column:48,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:48,the value of plot_cost is         : 6.135411263063344 

 At row:148, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:148, column:49,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:49,the value of plot_cost is         : 6.200543817436068 

 At row:148, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:148, column:50,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:50,the value of plot_cost is         : 6.266484432211308 

 At row:148, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:148, column:51,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:51,the value of plot_cost is         : 6.33323310738906 

 At row:148, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:148, column:52,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:52,the value of plot_cost is         : 6.400789842969335 

 At row:148, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:148, column:53,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:53,the value of plot_cost is         : 6.46915463895212 

 At row:148, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:148, column:54,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:54,the value of plot_cost is         : 6.538327495337421 

 At row:148, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:148, column:55,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:55,the value of plot_cost is         : 6.6083084121252345 

 At row:148, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:148, column:56,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:56,the value of plot_cost is         : 6.679097389315563 

 At row:148, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:148, column:57,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:57,the value of plot_cost is         : 6.75069442690841 

 At row:148, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:148, column:58,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:58,the value of plot_cost is         : 6.823099524903773 

 At row:148, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:148, column:59,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:59,the value of plot_cost is         : 6.896312683301649 

 At row:148, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:148, column:60,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:60,the value of plot_cost is         : 6.9703339021020385 

 At row:148, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:148, column:61,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:61,the value of plot_cost is         : 7.045163181304944 

 At row:148, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:148, column:62,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:62,the value of plot_cost is         : 7.120800520910368 

 At row:148, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:148, column:63,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:63,the value of plot_cost is         : 7.197245920918303 

 At row:148, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:148, column:64,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:64,the value of plot_cost is         : 7.274499381328755 

 At row:148, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:148, column:65,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:65,the value of plot_cost is         : 7.35256090214172 

 At row:148, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:148, column:66,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:66,the value of plot_cost is         : 7.4314304833572 

 At row:148, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:148, column:67,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:67,the value of plot_cost is         : 7.511108124975197 

 At row:148, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:148, column:68,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:68,the value of plot_cost is         : 7.591593826995712 

 At row:148, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:148, column:69,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:69,the value of plot_cost is         : 7.672887589418739 

 At row:148, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:148, column:70,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:70,the value of plot_cost is         : 7.754989412244279 

 At row:148, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:148, column:71,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:71,the value of plot_cost is         : 7.837899295472336 

 At row:148, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:148, column:72,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:72,the value of plot_cost is         : 7.921617239102909 

 At row:148, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:148, column:73,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:73,the value of plot_cost is         : 8.006143243135996 

 At row:148, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:148, column:74,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:74,the value of plot_cost is         : 8.0914773075716 

 At row:148, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:148, column:75,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:75,the value of plot_cost is         : 8.177619432409715 

 At row:148, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:148, column:76,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:76,the value of plot_cost is         : 8.264569617650345 

 At row:148, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:148, column:77,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:77,the value of plot_cost is         : 8.352327863293494 

 At row:148, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:148, column:78,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:78,the value of plot_cost is         : 8.440894169339161 

 At row:148, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:148, column:79,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:79,the value of plot_cost is         : 8.530268535787338 

 At row:148, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:148, column:80,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:80,the value of plot_cost is         : 8.62045096263803 

 At row:148, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:148, column:81,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:81,the value of plot_cost is         : 8.711441449891234 

 At row:148, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:148, column:82,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:82,the value of plot_cost is         : 8.80323999754696 

 At row:148, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:148, column:83,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:83,the value of plot_cost is         : 8.8958466056052 

 At row:148, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:148, column:84,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:84,the value of plot_cost is         : 8.989261274065951 

 At row:148, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:148, column:85,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:85,the value of plot_cost is         : 9.083484002929218 

 At row:148, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:148, column:86,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:86,the value of plot_cost is         : 9.178514792195001 

 At row:148, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:148, column:87,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:87,the value of plot_cost is         : 9.2743536418633 

 At row:148, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:148, column:88,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:88,the value of plot_cost is         : 9.371000551934117 

 At row:148, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:148, column:89,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:89,the value of plot_cost is         : 9.468455522407444 

 At row:148, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:148, column:90,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:90,the value of plot_cost is         : 9.566718553283286 

 At row:148, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:148, column:91,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:91,the value of plot_cost is         : 9.665789644561643 

 At row:148, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:148, column:92,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:92,the value of plot_cost is         : 9.76566879624252 

 At row:148, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:148, column:93,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:93,the value of plot_cost is         : 9.86635600832591 

 At row:148, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:148, column:94,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:94,the value of plot_cost is         : 9.967851280811812 

 At row:148, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:148, column:95,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:95,the value of plot_cost is         : 10.07015461370023 

 At row:148, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:148, column:96,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:96,the value of plot_cost is         : 10.173266006991163 

 At row:148, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:148, column:97,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:97,the value of plot_cost is         : 10.277185460684612 

 At row:148, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:148, column:98,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:98,the value of plot_cost is         : 10.381912974780581 

 At row:148, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:148, column:99,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:99,the value of plot_cost is         : 10.48744854927906 

 At row:148, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:148, column:100,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:100,the value of plot_cost is         : 10.593792184180053 

 At row:148, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:148, column:101,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:101,the value of plot_cost is         : 10.70094387948356 

 At row:148, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:148, column:102,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:102,the value of plot_cost is         : 10.808903635189589 

 At row:148, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:148, column:103,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:103,the value of plot_cost is         : 10.917671451298132 

 At row:148, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:148, column:104,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:104,the value of plot_cost is         : 11.027247327809183 

 At row:148, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:148, column:105,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:105,the value of plot_cost is         : 11.137631264722751 

 At row:148, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:148, column:106,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:106,the value of plot_cost is         : 11.248823262038833 

 At row:148, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:148, column:107,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:107,the value of plot_cost is         : 11.360823319757436 

 At row:148, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:148, column:108,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:108,the value of plot_cost is         : 11.473631437878556 

 At row:148, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:148, column:109,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:109,the value of plot_cost is         : 11.587247616402184 

 At row:148, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:148, column:110,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:110,the value of plot_cost is         : 11.701671855328328 

 At row:148, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:148, column:111,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:111,the value of plot_cost is         : 11.816904154656985 

 At row:148, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:148, column:112,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:112,the value of plot_cost is         : 11.932944514388165 

 At row:148, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:148, column:113,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:113,the value of plot_cost is         : 12.04979293452186 

 At row:148, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:148, column:114,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:114,the value of plot_cost is         : 12.167449415058062 

 At row:148, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:148, column:115,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:115,the value of plot_cost is         : 12.285913955996781 

 At row:148, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:148, column:116,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:116,the value of plot_cost is         : 12.405186557338014 

 At row:148, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:148, column:117,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:117,the value of plot_cost is         : 12.525267219081769 

 At row:148, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:148, column:118,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:118,the value of plot_cost is         : 12.646155941228036 

 At row:148, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:148, column:119,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:119,the value of plot_cost is         : 12.767852723776818 

 At row:148, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:148, column:120,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:120,the value of plot_cost is         : 12.890357566728113 

 At row:148, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:148, column:121,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:121,the value of plot_cost is         : 13.013670470081921 

 At row:148, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:148, column:122,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:122,the value of plot_cost is         : 13.137791433838252 

 At row:148, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:148, column:123,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:123,the value of plot_cost is         : 13.262720457997094 

 At row:148, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:148, column:124,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:124,the value of plot_cost is         : 13.38845754255845 

 At row:148, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:148, column:125,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:125,the value of plot_cost is         : 13.51500268752232 

 At row:148, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:148, column:126,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:126,the value of plot_cost is         : 13.642355892888704 

 At row:148, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:148, column:127,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:127,the value of plot_cost is         : 13.770517158657608 

 At row:148, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:148, column:128,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:128,the value of plot_cost is         : 13.89948648482903 

 At row:148, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:148, column:129,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:129,the value of plot_cost is         : 14.02926387140296 

 At row:148, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:148, column:130,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:130,the value of plot_cost is         : 14.159849318379404 

 At row:148, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:148, column:131,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:131,the value of plot_cost is         : 14.291242825758363 

 At row:148, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:148, column:132,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:132,the value of plot_cost is         : 14.423444393539846 

 At row:148, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:148, column:133,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:133,the value of plot_cost is         : 14.55645402172384 

 At row:148, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:148, column:134,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:134,the value of plot_cost is         : 14.690271710310347 

 At row:148, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:148, column:135,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:135,the value of plot_cost is         : 14.824897459299368 

 At row:148, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:148, column:136,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:136,the value of plot_cost is         : 14.960331268690902 

 At row:148, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:148, column:137,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:137,the value of plot_cost is         : 15.096573138484958 

 At row:148, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:148, column:138,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:138,the value of plot_cost is         : 15.23362306868153 

 At row:148, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:148, column:139,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:139,the value of plot_cost is         : 15.371481059280612 

 At row:148, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:148, column:140,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:140,the value of plot_cost is         : 15.510147110282206 

 At row:148, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:148, column:141,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:141,the value of plot_cost is         : 15.649621221686319 

 At row:148, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:148, column:142,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:142,the value of plot_cost is         : 15.78990339349295 

 At row:148, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:148, column:143,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:143,the value of plot_cost is         : 15.930993625702094 

 At row:148, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:148, column:144,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:144,the value of plot_cost is         : 16.072891918313754 

 At row:148, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:148, column:145,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:145,the value of plot_cost is         : 16.215598271327924 

 At row:148, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:148, column:146,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:146,the value of plot_cost is         : 16.359112684744606 

 At row:148, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:148, column:147,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:147,the value of plot_cost is         : 16.503435158563814 

 At row:148, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:148, column:148,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:148,the value of plot_cost is         : 16.64856569278554 

 At row:148, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:148, column:149,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:149,the value of plot_cost is         : 16.79450428740977 

 At row:148, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:148, column:150,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:150,the value of plot_cost is         : 16.941250942436515 

 At row:148, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:148, column:151,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:151,the value of plot_cost is         : 17.088805657865784 

 At row:148, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:148, column:152,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:152,the value of plot_cost is         : 17.237168433697562 

 At row:148, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:148, column:153,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:153,the value of plot_cost is         : 17.38633926993186 

 At row:148, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:148, column:154,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:154,the value of plot_cost is         : 17.536318166568666 

 At row:148, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:148, column:155,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:155,the value of plot_cost is         : 17.68710512360799 

 At row:148, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:148, column:156,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:156,the value of plot_cost is         : 17.83870014104983 

 At row:148, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:148, column:157,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:157,the value of plot_cost is         : 17.99110321889418 

 At row:148, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:148, column:158,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:158,the value of plot_cost is         : 18.144314357141056 

 At row:148, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:148, column:159,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:159,the value of plot_cost is         : 18.29833355579044 

 At row:148, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:148, column:160,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:160,the value of plot_cost is         : 18.453160814842338 

 At row:148, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:148, column:161,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:161,the value of plot_cost is         : 18.608796134296753 

 At row:148, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:148, column:162,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:162,the value of plot_cost is         : 18.765239514153684 

 At row:148, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:148, column:163,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:163,the value of plot_cost is         : 18.92249095441313 

 At row:148, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:148, column:164,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:164,the value of plot_cost is         : 19.080550455075084 

 At row:148, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:148, column:165,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:165,the value of plot_cost is         : 19.23941801613956 

 At row:148, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:148, column:166,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:166,the value of plot_cost is         : 19.399093637606555 

 At row:148, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:148, column:167,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:167,the value of plot_cost is         : 19.55957731947606 

 At row:148, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:148, column:168,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:168,the value of plot_cost is         : 19.72086906174808 

 At row:148, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:148, column:169,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:169,the value of plot_cost is         : 19.88296886442262 

 At row:148, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:148, column:170,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:170,the value of plot_cost is         : 20.045876727499664 

 At row:148, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:148, column:171,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:171,the value of plot_cost is         : 20.209592650979232 

 At row:148, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:148, column:172,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:172,the value of plot_cost is         : 20.374116634861313 

 At row:148, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:148, column:173,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:173,the value of plot_cost is         : 20.53944867914591 

 At row:148, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:148, column:174,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:174,the value of plot_cost is         : 20.70558878383302 

 At row:148, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:148, column:175,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:175,the value of plot_cost is         : 20.872536948922644 

 At row:148, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:148, column:176,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:176,the value of plot_cost is         : 21.040293174414792 

 At row:148, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:148, column:177,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:177,the value of plot_cost is         : 21.208857460309446 

 At row:148, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:148, column:178,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:178,the value of plot_cost is         : 21.37822980660662 

 At row:148, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:148, column:179,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:179,the value of plot_cost is         : 21.5484102133063 

 At row:148, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:148, column:180,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:180,the value of plot_cost is         : 21.7193986804085 

 At row:148, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:148, column:181,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:181,the value of plot_cost is         : 21.891195207913224 

 At row:148, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:148, column:182,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:182,the value of plot_cost is         : 22.06379979582045 

 At row:148, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:148, column:183,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:183,the value of plot_cost is         : 22.2372124441302 

 At row:148, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:148, column:184,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:184,the value of plot_cost is         : 22.41143315284246 

 At row:148, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:148, column:185,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:185,the value of plot_cost is         : 22.586461921957234 

 At row:148, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:148, column:186,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:186,the value of plot_cost is         : 22.762298751474532 

 At row:148, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:148, column:187,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:187,the value of plot_cost is         : 22.938943641394335 

 At row:148, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:148, column:188,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:188,the value of plot_cost is         : 23.116396591716658 

 At row:148, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:148, column:189,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:189,the value of plot_cost is         : 23.294657602441497 

 At row:148, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:148, column:190,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:190,the value of plot_cost is         : 23.47372667356884 

 At row:148, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:148, column:191,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:191,the value of plot_cost is         : 23.653603805098715 

 At row:148, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:148, column:192,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:192,the value of plot_cost is         : 23.834288997031095 

 At row:148, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:148, column:193,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:193,the value of plot_cost is         : 24.015782249365998 

 At row:148, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:148, column:194,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:194,the value of plot_cost is         : 24.19808356210341 

 At row:148, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:148, column:195,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:195,the value of plot_cost is         : 24.381192935243334 

 At row:148, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:148, column:196,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:196,the value of plot_cost is         : 24.56511036878578 

 At row:148, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:148, column:197,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:197,the value of plot_cost is         : 24.74983586273074 

 At row:148, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:148, column:198,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:198,the value of plot_cost is         : 24.93536941707821 

 At row:148, column:199,the value of plot_t0 is           : 3.0
 At row:148, column:199,the value of plot_t1 is           : 1.9748743718592965
 At row:148, column:199,the value of plot_cost is         : 25.1217110318282 

 At row:149, column:0,the value of plot_t0 is           : -1.0
 At row:149, column:0,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:0,the value of plot_cost is         : 4.190292705451163 

 At row:149, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:149, column:1,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:1,the value of plot_cost is         : 4.219316503551498 

 At row:149, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:149, column:2,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:2,the value of plot_cost is         : 4.24914836205435 

 At row:149, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:149, column:3,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:3,the value of plot_cost is         : 4.279788280959718 

 At row:149, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:149, column:4,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:4,the value of plot_cost is         : 4.3112362602676 

 At row:149, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:149, column:5,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:5,the value of plot_cost is         : 4.343492299977997 

 At row:149, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:149, column:6,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:6,the value of plot_cost is         : 4.376556400090907 

 At row:149, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:149, column:7,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:7,the value of plot_cost is         : 4.410428560606335 

 At row:149, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:149, column:8,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:8,the value of plot_cost is         : 4.445108781524278 

 At row:149, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:149, column:9,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:9,the value of plot_cost is         : 4.480597062844736 

 At row:149, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:149, column:10,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:10,the value of plot_cost is         : 4.516893404567707 

 At row:149, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:149, column:11,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:11,the value of plot_cost is         : 4.553997806693194 

 At row:149, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:149, column:12,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:12,the value of plot_cost is         : 4.591910269221197 

 At row:149, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:149, column:13,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:13,the value of plot_cost is         : 4.630630792151716 

 At row:149, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:149, column:14,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:14,the value of plot_cost is         : 4.670159375484748 

 At row:149, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:149, column:15,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:15,the value of plot_cost is         : 4.710496019220296 

 At row:149, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:149, column:16,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:16,the value of plot_cost is         : 4.751640723358358 

 At row:149, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:149, column:17,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:17,the value of plot_cost is         : 4.793593487898935 

 At row:149, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:149, column:18,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:18,the value of plot_cost is         : 4.83635431284203 

 At row:149, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:149, column:19,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:19,the value of plot_cost is         : 4.879923198187639 

 At row:149, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:149, column:20,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:20,the value of plot_cost is         : 4.924300143935761 

 At row:149, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:149, column:21,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:21,the value of plot_cost is         : 4.969485150086399 

 At row:149, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:149, column:22,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:22,the value of plot_cost is         : 5.0154782166395515 

 At row:149, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:149, column:23,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:23,the value of plot_cost is         : 5.062279343595222 

 At row:149, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:149, column:24,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:24,the value of plot_cost is         : 5.109888530953406 

 At row:149, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:149, column:25,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:25,the value of plot_cost is         : 5.158305778714103 

 At row:149, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:149, column:26,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:26,the value of plot_cost is         : 5.207531086877318 

 At row:149, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:149, column:27,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:27,the value of plot_cost is         : 5.257564455443045 

 At row:149, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:149, column:28,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:28,the value of plot_cost is         : 5.3084058844112905 

 At row:149, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:149, column:29,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:29,the value of plot_cost is         : 5.36005537378205 

 At row:149, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:149, column:30,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:30,the value of plot_cost is         : 5.412512923555323 

 At row:149, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:149, column:31,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:31,the value of plot_cost is         : 5.465778533731113 

 At row:149, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:149, column:32,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:32,the value of plot_cost is         : 5.519852204309416 

 At row:149, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:149, column:33,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:33,the value of plot_cost is         : 5.5747339352902365 

 At row:149, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:149, column:34,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:34,the value of plot_cost is         : 5.6304237266735715 

 At row:149, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:149, column:35,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:35,the value of plot_cost is         : 5.68692157845942 

 At row:149, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:149, column:36,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:36,the value of plot_cost is         : 5.744227490647785 

 At row:149, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:149, column:37,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:37,the value of plot_cost is         : 5.802341463238664 

 At row:149, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:149, column:38,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:38,the value of plot_cost is         : 5.86126349623206 

 At row:149, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:149, column:39,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:39,the value of plot_cost is         : 5.920993589627971 

 At row:149, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:149, column:40,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:40,the value of plot_cost is         : 5.981531743426393 

 At row:149, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:149, column:41,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:41,the value of plot_cost is         : 6.042877957627334 

 At row:149, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:149, column:42,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:42,the value of plot_cost is         : 6.105032232230788 

 At row:149, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:149, column:43,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:43,the value of plot_cost is         : 6.167994567236762 

 At row:149, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:149, column:44,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:44,the value of plot_cost is         : 6.231764962645245 

 At row:149, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:149, column:45,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:45,the value of plot_cost is         : 6.296343418456246 

 At row:149, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:149, column:46,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:46,the value of plot_cost is         : 6.361729934669761 

 At row:149, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:149, column:47,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:47,the value of plot_cost is         : 6.427924511285791 

 At row:149, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:149, column:48,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:48,the value of plot_cost is         : 6.494927148304338 

 At row:149, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:149, column:49,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:49,the value of plot_cost is         : 6.562737845725399 

 At row:149, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:149, column:50,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:50,the value of plot_cost is         : 6.631356603548975 

 At row:149, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:149, column:51,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:51,the value of plot_cost is         : 6.700783421775065 

 At row:149, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:149, column:52,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:52,the value of plot_cost is         : 6.7710183004036715 

 At row:149, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:149, column:53,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:53,the value of plot_cost is         : 6.842061239434794 

 At row:149, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:149, column:54,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:54,the value of plot_cost is         : 6.91391223886843 

 At row:149, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:149, column:55,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:55,the value of plot_cost is         : 6.986571298704579 

 At row:149, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:149, column:56,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:56,the value of plot_cost is         : 7.060038418943246 

 At row:149, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:149, column:57,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:57,the value of plot_cost is         : 7.134313599584428 

 At row:149, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:149, column:58,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:58,the value of plot_cost is         : 7.209396840628126 

 At row:149, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:149, column:59,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:59,the value of plot_cost is         : 7.285288142074338 

 At row:149, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:149, column:60,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:60,the value of plot_cost is         : 7.3619875039230624 

 At row:149, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:149, column:61,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:61,the value of plot_cost is         : 7.439494926174305 

 At row:149, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:149, column:62,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:62,the value of plot_cost is         : 7.517810408828063 

 At row:149, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:149, column:63,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:63,the value of plot_cost is         : 7.596933951884335 

 At row:149, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:149, column:64,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:64,the value of plot_cost is         : 7.676865555343123 

 At row:149, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:149, column:65,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:65,the value of plot_cost is         : 7.757605219204423 

 At row:149, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:149, column:66,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:66,the value of plot_cost is         : 7.83915294346824 

 At row:149, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:149, column:67,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:67,the value of plot_cost is         : 7.921508728134573 

 At row:149, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:149, column:68,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:68,the value of plot_cost is         : 8.004672573203422 

 At row:149, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:149, column:69,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:69,the value of plot_cost is         : 8.088644478674784 

 At row:149, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:149, column:70,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:70,the value of plot_cost is         : 8.17342444454866 

 At row:149, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:149, column:71,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:71,the value of plot_cost is         : 8.259012470825054 

 At row:149, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:149, column:72,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:72,the value of plot_cost is         : 8.345408557503962 

 At row:149, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:149, column:73,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:73,the value of plot_cost is         : 8.432612704585386 

 At row:149, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:149, column:74,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:74,the value of plot_cost is         : 8.520624912069323 

 At row:149, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:149, column:75,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:75,the value of plot_cost is         : 8.609445179955776 

 At row:149, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:149, column:76,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:76,the value of plot_cost is         : 8.699073508244743 

 At row:149, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:149, column:77,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:77,the value of plot_cost is         : 8.789509896936227 

 At row:149, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:149, column:78,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:78,the value of plot_cost is         : 8.880754346030226 

 At row:149, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:149, column:79,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:79,the value of plot_cost is         : 8.97280685552674 

 At row:149, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:149, column:80,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:80,the value of plot_cost is         : 9.065667425425765 

 At row:149, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:149, column:81,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:81,the value of plot_cost is         : 9.15933605572731 

 At row:149, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:149, column:82,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:82,the value of plot_cost is         : 9.25381274643137 

 At row:149, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:149, column:83,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:83,the value of plot_cost is         : 9.349097497537944 

 At row:149, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:149, column:84,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:84,the value of plot_cost is         : 9.445190309047033 

 At row:149, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:149, column:85,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:85,the value of plot_cost is         : 9.542091180958636 

 At row:149, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:149, column:86,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:86,the value of plot_cost is         : 9.639800113272756 

 At row:149, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:149, column:87,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:87,the value of plot_cost is         : 9.738317105989388 

 At row:149, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:149, column:88,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:88,the value of plot_cost is         : 9.83764215910854 

 At row:149, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:149, column:89,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:89,the value of plot_cost is         : 9.937775272630205 

 At row:149, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:149, column:90,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:90,the value of plot_cost is         : 10.038716446554382 

 At row:149, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:149, column:91,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:91,the value of plot_cost is         : 10.140465680881077 

 At row:149, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:149, column:92,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:92,the value of plot_cost is         : 10.243022975610288 

 At row:149, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:149, column:93,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:93,the value of plot_cost is         : 10.34638833074201 

 At row:149, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:149, column:94,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:94,the value of plot_cost is         : 10.450561746276252 

 At row:149, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:149, column:95,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:95,the value of plot_cost is         : 10.555543222213004 

 At row:149, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:149, column:96,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:96,the value of plot_cost is         : 10.661332758552277 

 At row:149, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:149, column:97,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:97,the value of plot_cost is         : 10.767930355294062 

 At row:149, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:149, column:98,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:98,the value of plot_cost is         : 10.875336012438362 

 At row:149, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:149, column:99,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:99,the value of plot_cost is         : 10.983549729985176 

 At row:149, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:149, column:100,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:100,the value of plot_cost is         : 11.092571507934506 

 At row:149, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:149, column:101,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:101,the value of plot_cost is         : 11.202401346286349 

 At row:149, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:149, column:102,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:102,the value of plot_cost is         : 11.313039245040713 

 At row:149, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:149, column:103,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:103,the value of plot_cost is         : 11.424485204197588 

 At row:149, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:149, column:104,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:104,the value of plot_cost is         : 11.536739223756978 

 At row:149, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:149, column:105,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:105,the value of plot_cost is         : 11.649801303718883 

 At row:149, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:149, column:106,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:106,the value of plot_cost is         : 11.763671444083304 

 At row:149, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:149, column:107,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:107,the value of plot_cost is         : 11.878349644850239 

 At row:149, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:149, column:108,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:108,the value of plot_cost is         : 11.993835906019692 

 At row:149, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:149, column:109,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:109,the value of plot_cost is         : 12.11013022759166 

 At row:149, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:149, column:110,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:110,the value of plot_cost is         : 12.227232609566139 

 At row:149, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:149, column:111,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:111,the value of plot_cost is         : 12.345143051943133 

 At row:149, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:149, column:112,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:112,the value of plot_cost is         : 12.463861554722646 

 At row:149, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:149, column:113,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:113,the value of plot_cost is         : 12.583388117904672 

 At row:149, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:149, column:114,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:114,the value of plot_cost is         : 12.703722741489218 

 At row:149, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:149, column:115,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:115,the value of plot_cost is         : 12.82486542547627 

 At row:149, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:149, column:116,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:116,the value of plot_cost is         : 12.946816169865842 

 At row:149, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:149, column:117,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:117,the value of plot_cost is         : 13.069574974657929 

 At row:149, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:149, column:118,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:118,the value of plot_cost is         : 13.193141839852533 

 At row:149, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:149, column:119,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:119,the value of plot_cost is         : 13.317516765449648 

 At row:149, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:149, column:120,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:120,the value of plot_cost is         : 13.442699751449283 

 At row:149, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:149, column:121,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:121,the value of plot_cost is         : 13.568690797851426 

 At row:149, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:149, column:122,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:122,the value of plot_cost is         : 13.695489904656089 

 At row:149, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:149, column:123,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:123,the value of plot_cost is         : 13.823097071863268 

 At row:149, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:149, column:124,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:124,the value of plot_cost is         : 13.951512299472961 

 At row:149, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:149, column:125,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:125,the value of plot_cost is         : 14.080735587485167 

 At row:149, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:149, column:126,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:126,the value of plot_cost is         : 14.210766935899889 

 At row:149, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:149, column:127,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:127,the value of plot_cost is         : 14.341606344717128 

 At row:149, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:149, column:128,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:128,the value of plot_cost is         : 14.473253813936882 

 At row:149, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:149, column:129,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:129,the value of plot_cost is         : 14.605709343559148 

 At row:149, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:149, column:130,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:130,the value of plot_cost is         : 14.738972933583932 

 At row:149, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:149, column:131,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:131,the value of plot_cost is         : 14.873044584011227 

 At row:149, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:149, column:132,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:132,the value of plot_cost is         : 15.007924294841041 

 At row:149, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:149, column:133,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:133,the value of plot_cost is         : 15.14361206607337 

 At row:149, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:149, column:134,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:134,the value of plot_cost is         : 15.280107897708213 

 At row:149, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:149, column:135,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:135,the value of plot_cost is         : 15.417411789745573 

 At row:149, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:149, column:136,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:136,the value of plot_cost is         : 15.555523742185443 

 At row:149, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:149, column:137,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:137,the value of plot_cost is         : 15.694443755027836 

 At row:149, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:149, column:138,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:138,the value of plot_cost is         : 15.834171828272737 

 At row:149, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:149, column:139,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:139,the value of plot_cost is         : 15.97470796192016 

 At row:149, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:149, column:140,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:140,the value of plot_cost is         : 16.11605215597009 

 At row:149, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:149, column:141,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:141,the value of plot_cost is         : 16.258204410422536 

 At row:149, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:149, column:142,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:142,the value of plot_cost is         : 16.4011647252775 

 At row:149, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:149, column:143,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:143,the value of plot_cost is         : 16.54493310053498 

 At row:149, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:149, column:144,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:144,the value of plot_cost is         : 16.689509536194972 

 At row:149, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:149, column:145,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:145,the value of plot_cost is         : 16.834894032257484 

 At row:149, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:149, column:146,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:146,the value of plot_cost is         : 16.98108658872251 

 At row:149, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:149, column:147,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:147,the value of plot_cost is         : 17.12808720559005 

 At row:149, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:149, column:148,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:148,the value of plot_cost is         : 17.2758958828601 

 At row:149, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:149, column:149,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:149,the value of plot_cost is         : 17.424512620532674 

 At row:149, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:149, column:150,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:150,the value of plot_cost is         : 17.57393741860776 

 At row:149, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:149, column:151,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:151,the value of plot_cost is         : 17.72417027708536 

 At row:149, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:149, column:152,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:152,the value of plot_cost is         : 17.875211195965473 

 At row:149, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:149, column:153,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:153,the value of plot_cost is         : 18.027060175248103 

 At row:149, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:149, column:154,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:154,the value of plot_cost is         : 18.179717214933248 

 At row:149, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:149, column:155,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:155,the value of plot_cost is         : 18.33318231502091 

 At row:149, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:149, column:156,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:156,the value of plot_cost is         : 18.487455475511084 

 At row:149, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:149, column:157,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:157,the value of plot_cost is         : 18.642536696403774 

 At row:149, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:149, column:158,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:158,the value of plot_cost is         : 18.798425977698976 

 At row:149, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:149, column:159,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:159,the value of plot_cost is         : 18.955123319396705 

 At row:149, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:149, column:160,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:160,the value of plot_cost is         : 19.112628721496936 

 At row:149, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:149, column:161,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:161,the value of plot_cost is         : 19.27094218399969 

 At row:149, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:149, column:162,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:162,the value of plot_cost is         : 19.43006370690495 

 At row:149, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:149, column:163,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:163,the value of plot_cost is         : 19.589993290212732 

 At row:149, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:149, column:164,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:164,the value of plot_cost is         : 19.750730933923027 

 At row:149, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:149, column:165,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:165,the value of plot_cost is         : 19.912276638035838 

 At row:149, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:149, column:166,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:166,the value of plot_cost is         : 20.07463040255117 

 At row:149, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:149, column:167,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:167,the value of plot_cost is         : 20.237792227469004 

 At row:149, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:149, column:168,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:168,the value of plot_cost is         : 20.401762112789363 

 At row:149, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:149, column:169,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:169,the value of plot_cost is         : 20.566540058512235 

 At row:149, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:149, column:170,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:170,the value of plot_cost is         : 20.73212606463762 

 At row:149, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:149, column:171,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:171,the value of plot_cost is         : 20.898520131165526 

 At row:149, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:149, column:172,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:172,the value of plot_cost is         : 21.065722258095935 

 At row:149, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:149, column:173,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:173,the value of plot_cost is         : 21.23373244542887 

 At row:149, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:149, column:174,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:174,the value of plot_cost is         : 21.402550693164315 

 At row:149, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:149, column:175,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:175,the value of plot_cost is         : 21.572177001302276 

 At row:149, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:149, column:176,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:176,the value of plot_cost is         : 21.74261136984276 

 At row:149, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:149, column:177,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:177,the value of plot_cost is         : 21.91385379878575 

 At row:149, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:149, column:178,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:178,the value of plot_cost is         : 22.085904288131257 

 At row:149, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:149, column:179,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:179,the value of plot_cost is         : 22.258762837879278 

 At row:149, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:149, column:180,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:180,the value of plot_cost is         : 22.432429448029815 

 At row:149, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:149, column:181,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:181,the value of plot_cost is         : 22.606904118582868 

 At row:149, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:149, column:182,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:182,the value of plot_cost is         : 22.78218684953843 

 At row:149, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:149, column:183,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:183,the value of plot_cost is         : 22.95827764089652 

 At row:149, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:149, column:184,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:184,the value of plot_cost is         : 23.135176492657113 

 At row:149, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:149, column:185,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:185,the value of plot_cost is         : 23.312883404820226 

 At row:149, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:149, column:186,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:186,the value of plot_cost is         : 23.49139837738586 

 At row:149, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:149, column:187,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:187,the value of plot_cost is         : 23.670721410354 

 At row:149, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:149, column:188,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:188,the value of plot_cost is         : 23.850852503724656 

 At row:149, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:149, column:189,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:189,the value of plot_cost is         : 24.03179165749783 

 At row:149, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:149, column:190,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:190,the value of plot_cost is         : 24.213538871673517 

 At row:149, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:149, column:191,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:191,the value of plot_cost is         : 24.39609414625172 

 At row:149, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:149, column:192,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:192,the value of plot_cost is         : 24.57945748123244 

 At row:149, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:149, column:193,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:193,the value of plot_cost is         : 24.76362887661567 

 At row:149, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:149, column:194,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:194,the value of plot_cost is         : 24.94860833240142 

 At row:149, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:149, column:195,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:195,the value of plot_cost is         : 25.134395848589683 

 At row:149, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:149, column:196,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:196,the value of plot_cost is         : 25.320991425180466 

 At row:149, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:149, column:197,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:197,the value of plot_cost is         : 25.50839506217376 

 At row:149, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:149, column:198,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:198,the value of plot_cost is         : 25.69660675956957 

 At row:149, column:199,the value of plot_t0 is           : 3.0
 At row:149, column:199,the value of plot_t1 is           : 1.9949748743718594
 At row:149, column:199,the value of plot_cost is         : 25.885626517367893 

 At row:150, column:0,the value of plot_t0 is           : -1.0
 At row:150, column:0,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:0,the value of plot_cost is         : 4.433840379211206 

 At row:150, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:150, column:1,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:1,the value of plot_cost is         : 4.465542320359877 

 At row:150, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:150, column:2,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:2,the value of plot_cost is         : 4.498052321911065 

 At row:150, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:150, column:3,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:3,the value of plot_cost is         : 4.531370383864769 

 At row:150, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:150, column:4,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:4,the value of plot_cost is         : 4.565496506220987 

 At row:150, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:150, column:5,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:5,the value of plot_cost is         : 4.60043068897972 

 At row:150, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:150, column:6,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:6,the value of plot_cost is         : 4.6361729321409655 

 At row:150, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:150, column:7,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:7,the value of plot_cost is         : 4.672723235704729 

 At row:150, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:150, column:8,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:8,the value of plot_cost is         : 4.710081599671008 

 At row:150, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:150, column:9,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:9,the value of plot_cost is         : 4.748248024039802 

 At row:150, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:150, column:10,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:10,the value of plot_cost is         : 4.787222508811108 

 At row:150, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:150, column:11,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:11,the value of plot_cost is         : 4.827005053984931 

 At row:150, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:150, column:12,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:12,the value of plot_cost is         : 4.867595659561269 

 At row:150, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:150, column:13,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:13,the value of plot_cost is         : 4.9089943255401245 

 At row:150, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:150, column:14,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:14,the value of plot_cost is         : 4.951201051921493 

 At row:150, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:150, column:15,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:15,the value of plot_cost is         : 4.994215838705375 

 At row:150, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:150, column:16,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:16,the value of plot_cost is         : 5.038038685891774 

 At row:150, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:150, column:17,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:17,the value of plot_cost is         : 5.082669593480687 

 At row:150, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:150, column:18,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:18,the value of plot_cost is         : 5.128108561472118 

 At row:150, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:150, column:19,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:19,the value of plot_cost is         : 5.174355589866061 

 At row:150, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:150, column:20,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:20,the value of plot_cost is         : 5.221410678662519 

 At row:150, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:150, column:21,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:21,the value of plot_cost is         : 5.269273827861492 

 At row:150, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:150, column:22,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:22,the value of plot_cost is         : 5.317945037462981 

 At row:150, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:150, column:23,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:23,the value of plot_cost is         : 5.367424307466988 

 At row:150, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:150, column:24,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:24,the value of plot_cost is         : 5.417711637873507 

 At row:150, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:150, column:25,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:25,the value of plot_cost is         : 5.46880702868254 

 At row:150, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:150, column:26,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:26,the value of plot_cost is         : 5.520710479894089 

 At row:150, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:150, column:27,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:27,the value of plot_cost is         : 5.573421991508153 

 At row:150, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:150, column:28,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:28,the value of plot_cost is         : 5.626941563524736 

 At row:150, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:150, column:29,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:29,the value of plot_cost is         : 5.6812691959438295 

 At row:150, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:150, column:30,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:30,the value of plot_cost is         : 5.736404888765438 

 At row:150, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:150, column:31,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:31,the value of plot_cost is         : 5.792348641989564 

 At row:150, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:150, column:32,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:32,the value of plot_cost is         : 5.849100455616203 

 At row:150, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:150, column:33,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:33,the value of plot_cost is         : 5.9066603296453595 

 At row:150, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:150, column:34,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:34,the value of plot_cost is         : 5.96502826407703 

 At row:150, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:150, column:35,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:35,the value of plot_cost is         : 6.024204258911215 

 At row:150, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:150, column:36,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:36,the value of plot_cost is         : 6.084188314147914 

 At row:150, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:150, column:37,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:37,the value of plot_cost is         : 6.144980429787129 

 At row:150, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:150, column:38,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:38,the value of plot_cost is         : 6.206580605828863 

 At row:150, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:150, column:39,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:39,the value of plot_cost is         : 6.268988842273107 

 At row:150, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:150, column:40,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:40,the value of plot_cost is         : 6.332205139119868 

 At row:150, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:150, column:41,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:41,the value of plot_cost is         : 6.396229496369142 

 At row:150, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:150, column:42,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:42,the value of plot_cost is         : 6.461061914020933 

 At row:150, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:150, column:43,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:43,the value of plot_cost is         : 6.526702392075241 

 At row:150, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:150, column:44,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:44,the value of plot_cost is         : 6.593150930532063 

 At row:150, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:150, column:45,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:45,the value of plot_cost is         : 6.660407529391397 

 At row:150, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:150, column:46,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:46,the value of plot_cost is         : 6.728472188653248 

 At row:150, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:150, column:47,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:47,the value of plot_cost is         : 6.797344908317614 

 At row:150, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:150, column:48,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:48,the value of plot_cost is         : 6.867025688384498 

 At row:150, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:150, column:49,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:49,the value of plot_cost is         : 6.937514528853893 

 At row:150, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:150, column:50,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:50,the value of plot_cost is         : 7.008811429725805 

 At row:150, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:150, column:51,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:51,the value of plot_cost is         : 7.0809163910002315 

 At row:150, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:150, column:52,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:52,the value of plot_cost is         : 7.153829412677173 

 At row:150, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:150, column:53,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:53,the value of plot_cost is         : 7.227550494756631 

 At row:150, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:150, column:54,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:54,the value of plot_cost is         : 7.302079637238602 

 At row:150, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:150, column:55,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:55,the value of plot_cost is         : 7.3774168401230895 

 At row:150, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:150, column:56,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:56,the value of plot_cost is         : 7.45356210341009 

 At row:150, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:150, column:57,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:57,the value of plot_cost is         : 7.530515427099609 

 At row:150, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:150, column:58,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:58,the value of plot_cost is         : 7.608276811191644 

 At row:150, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:150, column:59,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:59,the value of plot_cost is         : 7.686846255686189 

 At row:150, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:150, column:60,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:60,the value of plot_cost is         : 7.76622376058325 

 At row:150, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:150, column:61,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:61,the value of plot_cost is         : 7.846409325882827 

 At row:150, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:150, column:62,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:62,the value of plot_cost is         : 7.927402951584921 

 At row:150, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:150, column:63,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:63,the value of plot_cost is         : 8.00920463768953 

 At row:150, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:150, column:64,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:64,the value of plot_cost is         : 8.091814384196653 

 At row:150, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:150, column:65,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:65,the value of plot_cost is         : 8.17523219110629 

 At row:150, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:150, column:66,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:66,the value of plot_cost is         : 8.25945805841844 

 At row:150, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:150, column:67,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:67,the value of plot_cost is         : 8.34449198613311 

 At row:150, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:150, column:68,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:68,the value of plot_cost is         : 8.430333974250296 

 At row:150, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:150, column:69,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:69,the value of plot_cost is         : 8.516984022769993 

 At row:150, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:150, column:70,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:70,the value of plot_cost is         : 8.604442131692204 

 At row:150, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:150, column:71,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:71,the value of plot_cost is         : 8.692708301016934 

 At row:150, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:150, column:72,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:72,the value of plot_cost is         : 8.781782530744179 

 At row:150, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:150, column:73,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:73,the value of plot_cost is         : 8.871664820873937 

 At row:150, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:150, column:74,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:74,the value of plot_cost is         : 8.96235517140621 

 At row:150, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:150, column:75,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:75,the value of plot_cost is         : 9.053853582340997 

 At row:150, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:150, column:76,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:76,the value of plot_cost is         : 9.146160053678301 

 At row:150, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:150, column:77,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:77,the value of plot_cost is         : 9.239274585418121 

 At row:150, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:150, column:78,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:78,the value of plot_cost is         : 9.333197177560457 

 At row:150, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:150, column:79,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:79,the value of plot_cost is         : 9.427927830105306 

 At row:150, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:150, column:80,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:80,the value of plot_cost is         : 9.523466543052669 

 At row:150, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:150, column:81,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:81,the value of plot_cost is         : 9.619813316402547 

 At row:150, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:150, column:82,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:82,the value of plot_cost is         : 9.716968150154942 

 At row:150, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:150, column:83,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:83,the value of plot_cost is         : 9.814931044309851 

 At row:150, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:150, column:84,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:84,the value of plot_cost is         : 9.913701998867277 

 At row:150, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:150, column:85,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:85,the value of plot_cost is         : 10.013281013827216 

 At row:150, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:150, column:86,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:86,the value of plot_cost is         : 10.113668089189671 

 At row:150, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:150, column:87,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:87,the value of plot_cost is         : 10.214863224954643 

 At row:150, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:150, column:88,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:88,the value of plot_cost is         : 10.316866421122127 

 At row:150, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:150, column:89,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:89,the value of plot_cost is         : 10.419677677692126 

 At row:150, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:150, column:90,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:90,the value of plot_cost is         : 10.52329699466464 

 At row:150, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:150, column:91,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:91,the value of plot_cost is         : 10.62772437203967 

 At row:150, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:150, column:92,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:92,the value of plot_cost is         : 10.732959809817219 

 At row:150, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:150, column:93,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:93,the value of plot_cost is         : 10.839003307997277 

 At row:150, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:150, column:94,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:94,the value of plot_cost is         : 10.945854866579854 

 At row:150, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:150, column:95,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:95,the value of plot_cost is         : 11.053514485564945 

 At row:150, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:150, column:96,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:96,the value of plot_cost is         : 11.161982164952548 

 At row:150, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:150, column:97,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:97,the value of plot_cost is         : 11.27125790474267 

 At row:150, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:150, column:98,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:98,the value of plot_cost is         : 11.381341704935307 

 At row:150, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:150, column:99,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:99,the value of plot_cost is         : 11.492233565530457 

 At row:150, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:150, column:100,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:100,the value of plot_cost is         : 11.603933486528124 

 At row:150, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:150, column:101,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:101,the value of plot_cost is         : 11.716441467928302 

 At row:150, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:150, column:102,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:102,the value of plot_cost is         : 11.829757509731 

 At row:150, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:150, column:103,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:103,the value of plot_cost is         : 11.943881611936213 

 At row:150, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:150, column:104,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:104,the value of plot_cost is         : 12.058813774543939 

 At row:150, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:150, column:105,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:105,the value of plot_cost is         : 12.174553997554177 

 At row:150, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:150, column:106,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:106,the value of plot_cost is         : 12.291102280966932 

 At row:150, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:150, column:107,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:107,the value of plot_cost is         : 12.408458624782208 

 At row:150, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:150, column:108,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:108,the value of plot_cost is         : 12.526623028999998 

 At row:150, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:150, column:109,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:109,the value of plot_cost is         : 12.645595493620297 

 At row:150, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:150, column:110,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:110,the value of plot_cost is         : 12.765376018643114 

 At row:150, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:150, column:111,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:111,the value of plot_cost is         : 12.885964604068443 

 At row:150, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:150, column:112,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:112,the value of plot_cost is         : 13.007361249896292 

 At row:150, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:150, column:113,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:113,the value of plot_cost is         : 13.129565956126656 

 At row:150, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:150, column:114,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:114,the value of plot_cost is         : 13.252578722759532 

 At row:150, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:150, column:115,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:115,the value of plot_cost is         : 13.376399549794922 

 At row:150, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:150, column:116,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:116,the value of plot_cost is         : 13.501028437232828 

 At row:150, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:150, column:117,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:117,the value of plot_cost is         : 13.626465385073253 

 At row:150, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:150, column:118,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:118,the value of plot_cost is         : 13.752710393316192 

 At row:150, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:150, column:119,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:119,the value of plot_cost is         : 13.879763461961645 

 At row:150, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:150, column:120,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:120,the value of plot_cost is         : 14.00762459100961 

 At row:150, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:150, column:121,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:121,the value of plot_cost is         : 14.136293780460093 

 At row:150, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:150, column:122,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:122,the value of plot_cost is         : 14.265771030313093 

 At row:150, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:150, column:123,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:123,the value of plot_cost is         : 14.396056340568606 

 At row:150, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:150, column:124,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:124,the value of plot_cost is         : 14.527149711226635 

 At row:150, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:150, column:125,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:125,the value of plot_cost is         : 14.659051142287177 

 At row:150, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:150, column:126,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:126,the value of plot_cost is         : 14.791760633750235 

 At row:150, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:150, column:127,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:127,the value of plot_cost is         : 14.92527818561581 

 At row:150, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:150, column:128,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:128,the value of plot_cost is         : 15.059603797883897 

 At row:150, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:150, column:129,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:129,the value of plot_cost is         : 15.1947374705545 

 At row:150, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:150, column:130,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:130,the value of plot_cost is         : 15.33067920362762 

 At row:150, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:150, column:131,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:131,the value of plot_cost is         : 15.46742899710325 

 At row:150, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:150, column:132,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:132,the value of plot_cost is         : 15.604986850981401 

 At row:150, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:150, column:133,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:133,the value of plot_cost is         : 15.743352765262065 

 At row:150, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:150, column:134,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:134,the value of plot_cost is         : 15.882526739945245 

 At row:150, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:150, column:135,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:135,the value of plot_cost is         : 16.02250877503094 

 At row:150, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:150, column:136,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:136,the value of plot_cost is         : 16.163298870519146 

 At row:150, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:150, column:137,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:137,the value of plot_cost is         : 16.304897026409872 

 At row:150, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:150, column:138,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:138,the value of plot_cost is         : 16.447303242703114 

 At row:150, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:150, column:139,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:139,the value of plot_cost is         : 16.590517519398865 

 At row:150, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:150, column:140,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:140,the value of plot_cost is         : 16.734539856497136 

 At row:150, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:150, column:141,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:141,the value of plot_cost is         : 16.87937025399792 

 At row:150, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:150, column:142,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:142,the value of plot_cost is         : 17.02500871190122 

 At row:150, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:150, column:143,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:143,the value of plot_cost is         : 17.171455230207034 

 At row:150, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:150, column:144,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:144,the value of plot_cost is         : 17.31870980891537 

 At row:150, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:150, column:145,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:145,the value of plot_cost is         : 17.46677244802621 

 At row:150, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:150, column:146,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:146,the value of plot_cost is         : 17.61564314753957 

 At row:150, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:150, column:147,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:147,the value of plot_cost is         : 17.765321907455444 

 At row:150, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:150, column:148,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:148,the value of plot_cost is         : 17.915808727773836 

 At row:150, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:150, column:149,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:149,the value of plot_cost is         : 18.067103608494737 

 At row:150, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:150, column:150,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:150,the value of plot_cost is         : 18.21920654961816 

 At row:150, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:150, column:151,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:151,the value of plot_cost is         : 18.3721175511441 

 At row:150, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:150, column:152,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:152,the value of plot_cost is         : 18.525836613072542 

 At row:150, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:150, column:153,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:153,the value of plot_cost is         : 18.680363735403514 

 At row:150, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:150, column:154,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:154,the value of plot_cost is         : 18.835698918136995 

 At row:150, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:150, column:155,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:155,the value of plot_cost is         : 18.991842161272988 

 At row:150, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:150, column:156,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:156,the value of plot_cost is         : 19.1487934648115 

 At row:150, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:150, column:157,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:157,the value of plot_cost is         : 19.30655282875253 

 At row:150, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:150, column:158,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:158,the value of plot_cost is         : 19.46512025309607 

 At row:150, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:150, column:159,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:159,the value of plot_cost is         : 19.624495737842125 

 At row:150, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:150, column:160,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:160,the value of plot_cost is         : 19.784679282990695 

 At row:150, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:150, column:161,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:161,the value of plot_cost is         : 19.945670888541784 

 At row:150, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:150, column:162,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:162,the value of plot_cost is         : 20.10747055449538 

 At row:150, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:150, column:163,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:163,the value of plot_cost is         : 20.2700782808515 

 At row:150, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:150, column:164,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:164,the value of plot_cost is         : 20.433494067610134 

 At row:150, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:150, column:165,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:165,the value of plot_cost is         : 20.597717914771277 

 At row:150, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:150, column:166,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:166,the value of plot_cost is         : 20.762749822334943 

 At row:150, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:150, column:167,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:167,the value of plot_cost is         : 20.928589790301118 

 At row:150, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:150, column:168,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:168,the value of plot_cost is         : 21.09523781866981 

 At row:150, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:150, column:169,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:169,the value of plot_cost is         : 21.262693907441015 

 At row:150, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:150, column:170,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:170,the value of plot_cost is         : 21.43095805661474 

 At row:150, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:150, column:171,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:171,the value of plot_cost is         : 21.600030266190977 

 At row:150, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:150, column:172,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:172,the value of plot_cost is         : 21.76991053616972 

 At row:150, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:150, column:173,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:173,the value of plot_cost is         : 21.940598866550996 

 At row:150, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:150, column:174,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:174,the value of plot_cost is         : 22.11209525733478 

 At row:150, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:150, column:175,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:175,the value of plot_cost is         : 22.284399708521075 

 At row:150, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:150, column:176,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:176,the value of plot_cost is         : 22.45751222010989 

 At row:150, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:150, column:177,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:177,the value of plot_cost is         : 22.631432792101215 

 At row:150, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:150, column:178,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:178,the value of plot_cost is         : 22.806161424495063 

 At row:150, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:150, column:179,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:179,the value of plot_cost is         : 22.981698117291415 

 At row:150, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:150, column:180,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:180,the value of plot_cost is         : 23.158042870490288 

 At row:150, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:150, column:181,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:181,the value of plot_cost is         : 23.33519568409168 

 At row:150, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:150, column:182,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:182,the value of plot_cost is         : 23.51315655809558 

 At row:150, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:150, column:183,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:183,the value of plot_cost is         : 23.691925492501998 

 At row:150, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:150, column:184,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:184,the value of plot_cost is         : 23.871502487310934 

 At row:150, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:150, column:185,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:185,the value of plot_cost is         : 24.05188754252238 

 At row:150, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:150, column:186,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:186,the value of plot_cost is         : 24.23308065813635 

 At row:150, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:150, column:187,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:187,the value of plot_cost is         : 24.41508183415282 

 At row:150, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:150, column:188,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:188,the value of plot_cost is         : 24.59789107057182 

 At row:150, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:150, column:189,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:189,the value of plot_cost is         : 24.78150836739332 

 At row:150, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:150, column:190,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:190,the value of plot_cost is         : 24.96593372461735 

 At row:150, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:150, column:191,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:191,the value of plot_cost is         : 25.15116714224389 

 At row:150, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:150, column:192,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:192,the value of plot_cost is         : 25.33720862027294 

 At row:150, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:150, column:193,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:193,the value of plot_cost is         : 25.52405815870451 

 At row:150, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:150, column:194,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:194,the value of plot_cost is         : 25.711715757538602 

 At row:150, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:150, column:195,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:195,the value of plot_cost is         : 25.900181416775197 

 At row:150, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:150, column:196,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:196,the value of plot_cost is         : 26.089455136414312 

 At row:150, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:150, column:197,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:197,the value of plot_cost is         : 26.27953691645594 

 At row:150, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:150, column:198,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:198,the value of plot_cost is         : 26.470426756900075 

 At row:150, column:199,the value of plot_t0 is           : 3.0
 At row:150, column:199,the value of plot_t1 is           : 2.0150753768844223
 At row:150, column:199,the value of plot_cost is         : 26.662124657746737 

 At row:151, column:0,the value of plot_t0 is           : -1.0
 At row:151, column:0,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:0,the value of plot_cost is         : 4.689970707810413 

 At row:151, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:151, column:1,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:1,the value of plot_cost is         : 4.72435079200742 

 At row:151, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:151, column:2,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:2,the value of plot_cost is         : 4.759538936606944 

 At row:151, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:151, column:3,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:3,the value of plot_cost is         : 4.795535141608983 

 At row:151, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:151, column:4,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:4,the value of plot_cost is         : 4.832339407013537 

 At row:151, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:151, column:5,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:5,the value of plot_cost is         : 4.869951732820604 

 At row:151, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:151, column:6,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:6,the value of plot_cost is         : 4.908372119030186 

 At row:151, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:151, column:7,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:7,the value of plot_cost is         : 4.9476005656422855 

 At row:151, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:151, column:8,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:8,the value of plot_cost is         : 4.987637072656901 

 At row:151, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:151, column:9,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:9,the value of plot_cost is         : 5.0284816400740295 

 At row:151, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:151, column:10,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:10,the value of plot_cost is         : 5.070134267893672 

 At row:151, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:151, column:11,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:11,the value of plot_cost is         : 5.11259495611583 

 At row:151, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:151, column:12,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:12,the value of plot_cost is         : 5.155863704740505 

 At row:151, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:151, column:13,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:13,the value of plot_cost is         : 5.199940513767696 

 At row:151, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:151, column:14,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:14,the value of plot_cost is         : 5.2448253831974005 

 At row:151, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:151, column:15,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:15,the value of plot_cost is         : 5.290518313029618 

 At row:151, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:151, column:16,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:16,the value of plot_cost is         : 5.337019303264351 

 At row:151, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:151, column:17,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:17,the value of plot_cost is         : 5.3843283539016005 

 At row:151, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:151, column:18,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:18,the value of plot_cost is         : 5.432445464941367 

 At row:151, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:151, column:19,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:19,the value of plot_cost is         : 5.481370636383646 

 At row:151, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:151, column:20,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:20,the value of plot_cost is         : 5.531103868228441 

 At row:151, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:151, column:21,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:21,the value of plot_cost is         : 5.581645160475748 

 At row:151, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:151, column:22,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:22,the value of plot_cost is         : 5.632994513125575 

 At row:151, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:151, column:23,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:23,the value of plot_cost is         : 5.685151926177917 

 At row:151, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:151, column:24,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:24,the value of plot_cost is         : 5.738117399632771 

 At row:151, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:151, column:25,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:25,the value of plot_cost is         : 5.791890933490141 

 At row:151, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:151, column:26,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:26,the value of plot_cost is         : 5.846472527750024 

 At row:151, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:151, column:27,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:27,the value of plot_cost is         : 5.901862182412425 

 At row:151, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:151, column:28,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:28,the value of plot_cost is         : 5.958059897477343 

 At row:151, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:151, column:29,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:29,the value of plot_cost is         : 6.015065672944773 

 At row:151, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:151, column:30,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:30,the value of plot_cost is         : 6.072879508814718 

 At row:151, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:151, column:31,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:31,the value of plot_cost is         : 6.131501405087176 

 At row:151, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:151, column:32,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:32,the value of plot_cost is         : 6.1909313617621535 

 At row:151, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:151, column:33,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:33,the value of plot_cost is         : 6.251169378839646 

 At row:151, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:151, column:34,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:34,the value of plot_cost is         : 6.312215456319652 

 At row:151, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:151, column:35,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:35,the value of plot_cost is         : 6.3740695942021715 

 At row:151, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:151, column:36,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:36,the value of plot_cost is         : 6.436731792487206 

 At row:151, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:151, column:37,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:37,the value of plot_cost is         : 6.500202051174758 

 At row:151, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:151, column:38,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:38,the value of plot_cost is         : 6.564480370264827 

 At row:151, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:151, column:39,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:39,the value of plot_cost is         : 6.629566749757407 

 At row:151, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:151, column:40,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:40,the value of plot_cost is         : 6.6954611896525025 

 At row:151, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:151, column:41,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:41,the value of plot_cost is         : 6.762163689950114 

 At row:151, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:151, column:42,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:42,the value of plot_cost is         : 6.82967425065024 

 At row:151, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:151, column:43,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:43,the value of plot_cost is         : 6.8979928717528844 

 At row:151, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:151, column:44,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:44,the value of plot_cost is         : 6.967119553258041 

 At row:151, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:151, column:45,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:45,the value of plot_cost is         : 7.037054295165713 

 At row:151, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:151, column:46,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:46,the value of plot_cost is         : 7.107797097475897 

 At row:151, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:151, column:47,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:47,the value of plot_cost is         : 7.179347960188599 

 At row:151, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:151, column:48,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:48,the value of plot_cost is         : 7.25170688330382 

 At row:151, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:151, column:49,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:49,the value of plot_cost is         : 7.324873866821552 

 At row:151, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:151, column:50,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:50,the value of plot_cost is         : 7.398848910741798 

 At row:151, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:151, column:51,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:51,the value of plot_cost is         : 7.473632015064558 

 At row:151, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:151, column:52,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:52,the value of plot_cost is         : 7.549223179789838 

 At row:151, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:151, column:53,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:53,the value of plot_cost is         : 7.625622404917632 

 At row:151, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:151, column:54,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:54,the value of plot_cost is         : 7.702829690447939 

 At row:151, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:151, column:55,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:55,the value of plot_cost is         : 7.780845036380762 

 At row:151, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:151, column:56,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:56,the value of plot_cost is         : 7.859668442716097 

 At row:151, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:151, column:57,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:57,the value of plot_cost is         : 7.939299909453954 

 At row:151, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:151, column:58,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:58,the value of plot_cost is         : 8.019739436594321 

 At row:151, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:151, column:59,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:59,the value of plot_cost is         : 8.100987024137204 

 At row:151, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:151, column:60,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:60,the value of plot_cost is         : 8.1830426720826 

 At row:151, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:151, column:61,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:61,the value of plot_cost is         : 8.265906380430511 

 At row:151, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:151, column:62,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:62,the value of plot_cost is         : 8.349578149180942 

 At row:151, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:151, column:63,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:63,the value of plot_cost is         : 8.434057978333888 

 At row:151, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:151, column:64,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:64,the value of plot_cost is         : 8.519345867889346 

 At row:151, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:151, column:65,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:65,the value of plot_cost is         : 8.605441817847318 

 At row:151, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:151, column:66,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:66,the value of plot_cost is         : 8.692345828207806 

 At row:151, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:151, column:67,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:67,the value of plot_cost is         : 8.780057898970812 

 At row:151, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:151, column:68,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:68,the value of plot_cost is         : 8.868578030136332 

 At row:151, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:151, column:69,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:69,the value of plot_cost is         : 8.957906221704366 

 At row:151, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:151, column:70,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:70,the value of plot_cost is         : 9.048042473674913 

 At row:151, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:151, column:71,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:71,the value of plot_cost is         : 9.138986786047976 

 At row:151, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:151, column:72,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:72,the value of plot_cost is         : 9.230739158823557 

 At row:151, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:151, column:73,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:73,the value of plot_cost is         : 9.323299592001652 

 At row:151, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:151, column:74,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:74,the value of plot_cost is         : 9.416668085582263 

 At row:151, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:151, column:75,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:75,the value of plot_cost is         : 9.510844639565384 

 At row:151, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:151, column:76,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:76,the value of plot_cost is         : 9.605829253951022 

 At row:151, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:151, column:77,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:77,the value of plot_cost is         : 9.701621928739181 

 At row:151, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:151, column:78,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:78,the value of plot_cost is         : 9.798222663929852 

 At row:151, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:151, column:79,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:79,the value of plot_cost is         : 9.895631459523036 

 At row:151, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:151, column:80,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:80,the value of plot_cost is         : 9.993848315518735 

 At row:151, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:151, column:81,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:81,the value of plot_cost is         : 10.092873231916947 

 At row:151, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:151, column:82,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:82,the value of plot_cost is         : 10.19270620871768 

 At row:151, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:151, column:83,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:83,the value of plot_cost is         : 10.293347245920927 

 At row:151, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:151, column:84,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:84,the value of plot_cost is         : 10.394796343526686 

 At row:151, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:151, column:85,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:85,the value of plot_cost is         : 10.497053501534962 

 At row:151, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:151, column:86,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:86,the value of plot_cost is         : 10.60011871994575 

 At row:151, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:151, column:87,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:87,the value of plot_cost is         : 10.703991998759058 

 At row:151, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:151, column:88,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:88,the value of plot_cost is         : 10.80867333797488 

 At row:151, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:151, column:89,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:89,the value of plot_cost is         : 10.914162737593216 

 At row:151, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:151, column:90,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:90,the value of plot_cost is         : 11.020460197614064 

 At row:151, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:151, column:91,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:91,the value of plot_cost is         : 11.12756571803743 

 At row:151, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:151, column:92,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:92,the value of plot_cost is         : 11.23547929886331 

 At row:151, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:151, column:93,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:93,the value of plot_cost is         : 11.344200940091712 

 At row:151, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:151, column:94,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:94,the value of plot_cost is         : 11.45373064172262 

 At row:151, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:151, column:95,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:95,the value of plot_cost is         : 11.564068403756043 

 At row:151, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:151, column:96,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:96,the value of plot_cost is         : 11.675214226191985 

 At row:151, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:151, column:97,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:97,the value of plot_cost is         : 11.787168109030443 

 At row:151, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:151, column:98,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:98,the value of plot_cost is         : 11.899930052271417 

 At row:151, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:151, column:99,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:99,the value of plot_cost is         : 12.013500055914903 

 At row:151, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:151, column:100,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:100,the value of plot_cost is         : 12.127878119960902 

 At row:151, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:151, column:101,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:101,the value of plot_cost is         : 12.243064244409416 

 At row:151, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:151, column:102,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:102,the value of plot_cost is         : 12.35905842926045 

 At row:151, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:151, column:103,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:103,the value of plot_cost is         : 12.475860674514003 

 At row:151, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:151, column:104,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:104,the value of plot_cost is         : 12.59347098017006 

 At row:151, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:151, column:105,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:105,the value of plot_cost is         : 12.711889346228638 

 At row:151, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:151, column:106,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:106,the value of plot_cost is         : 12.831115772689728 

 At row:151, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:151, column:107,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:107,the value of plot_cost is         : 12.951150259553339 

 At row:151, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:151, column:108,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:108,the value of plot_cost is         : 13.071992806819463 

 At row:151, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:151, column:109,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:109,the value of plot_cost is         : 13.193643414488099 

 At row:151, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:151, column:110,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:110,the value of plot_cost is         : 13.316102082559247 

 At row:151, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:151, column:111,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:111,the value of plot_cost is         : 13.439368811032915 

 At row:151, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:151, column:112,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:112,the value of plot_cost is         : 13.563443599909098 

 At row:151, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:151, column:113,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:113,the value of plot_cost is         : 13.688326449187802 

 At row:151, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:151, column:114,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:114,the value of plot_cost is         : 13.814017358869014 

 At row:151, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:151, column:115,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:115,the value of plot_cost is         : 13.94051632895274 

 At row:151, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:151, column:116,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:116,the value of plot_cost is         : 14.06782335943898 

 At row:151, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:151, column:117,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:117,the value of plot_cost is         : 14.195938450327741 

 At row:151, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:151, column:118,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:118,the value of plot_cost is         : 14.324861601619016 

 At row:151, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:151, column:119,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:119,the value of plot_cost is         : 14.454592813312804 

 At row:151, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:151, column:120,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:120,the value of plot_cost is         : 14.585132085409105 

 At row:151, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:151, column:121,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:121,the value of plot_cost is         : 14.716479417907923 

 At row:151, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:151, column:122,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:122,the value of plot_cost is         : 14.848634810809259 

 At row:151, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:151, column:123,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:123,the value of plot_cost is         : 14.981598264113112 

 At row:151, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:151, column:124,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:124,the value of plot_cost is         : 15.115369777819474 

 At row:151, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:151, column:125,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:125,the value of plot_cost is         : 15.249949351928347 

 At row:151, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:151, column:126,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:126,the value of plot_cost is         : 15.385336986439743 

 At row:151, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:151, column:127,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:127,the value of plot_cost is         : 15.521532681353657 

 At row:151, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:151, column:128,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:128,the value of plot_cost is         : 15.658536436670081 

 At row:151, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:151, column:129,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:129,the value of plot_cost is         : 15.796348252389018 

 At row:151, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:151, column:130,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:130,the value of plot_cost is         : 15.93496812851047 

 At row:151, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:151, column:131,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:131,the value of plot_cost is         : 16.07439606503444 

 At row:151, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:151, column:132,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:132,the value of plot_cost is         : 16.214632061960923 

 At row:151, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:151, column:133,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:133,the value of plot_cost is         : 16.355676119289928 

 At row:151, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:151, column:134,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:134,the value of plot_cost is         : 16.49752823702144 

 At row:151, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:151, column:135,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:135,the value of plot_cost is         : 16.640188415155468 

 At row:151, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:151, column:136,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:136,the value of plot_cost is         : 16.78365665369201 

 At row:151, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:151, column:137,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:137,the value of plot_cost is         : 16.927932952631078 

 At row:151, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:151, column:138,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:138,the value of plot_cost is         : 17.073017311972652 

 At row:151, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:151, column:139,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:139,the value of plot_cost is         : 17.218909731716742 

 At row:151, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:151, column:140,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:140,the value of plot_cost is         : 17.365610211863345 

 At row:151, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:151, column:141,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:141,the value of plot_cost is         : 17.513118752412463 

 At row:151, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:151, column:142,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:142,the value of plot_cost is         : 17.661435353364098 

 At row:151, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:151, column:143,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:143,the value of plot_cost is         : 17.810560014718256 

 At row:151, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:151, column:144,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:144,the value of plot_cost is         : 17.96049273647492 

 At row:151, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:151, column:145,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:145,the value of plot_cost is         : 18.111233518634098 

 At row:151, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:151, column:146,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:146,the value of plot_cost is         : 18.26278236119579 

 At row:151, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:151, column:147,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:147,the value of plot_cost is         : 18.415139264160008 

 At row:151, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:151, column:148,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:148,the value of plot_cost is         : 18.568304227526735 

 At row:151, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:151, column:149,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:149,the value of plot_cost is         : 18.722277251295974 

 At row:151, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:151, column:150,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:150,the value of plot_cost is         : 18.87705833546773 

 At row:151, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:151, column:151,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:151,the value of plot_cost is         : 19.032647480041994 

 At row:151, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:151, column:152,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:152,the value of plot_cost is         : 19.189044685018782 

 At row:151, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:151, column:153,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:153,the value of plot_cost is         : 19.346249950398093 

 At row:151, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:151, column:154,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:154,the value of plot_cost is         : 19.504263276179906 

 At row:151, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:151, column:155,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:155,the value of plot_cost is         : 19.66308466236423 

 At row:151, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:151, column:156,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:156,the value of plot_cost is         : 19.82271410895109 

 At row:151, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:151, column:157,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:157,the value of plot_cost is         : 19.983151615940447 

 At row:151, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:151, column:158,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:158,the value of plot_cost is         : 20.14439718333232 

 At row:151, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:151, column:159,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:159,the value of plot_cost is         : 20.306450811126712 

 At row:151, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:151, column:160,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:160,the value of plot_cost is         : 20.46931249932362 

 At row:151, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:151, column:161,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:161,the value of plot_cost is         : 20.63298224792304 

 At row:151, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:151, column:162,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:162,the value of plot_cost is         : 20.797460056924972 

 At row:151, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:151, column:163,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:163,the value of plot_cost is         : 20.962745926329433 

 At row:151, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:151, column:164,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:164,the value of plot_cost is         : 21.1288398561364 

 At row:151, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:151, column:165,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:165,the value of plot_cost is         : 21.295741846345877 

 At row:151, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:151, column:166,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:166,the value of plot_cost is         : 21.463451896957885 

 At row:151, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:151, column:167,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:167,the value of plot_cost is         : 21.631970007972395 

 At row:151, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:151, column:168,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:168,the value of plot_cost is         : 21.801296179389425 

 At row:151, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:151, column:169,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:169,the value of plot_cost is         : 21.971430411208964 

 At row:151, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:151, column:170,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:170,the value of plot_cost is         : 22.14237270343102 

 At row:151, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:151, column:171,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:171,the value of plot_cost is         : 22.314123056055593 

 At row:151, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:151, column:172,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:172,the value of plot_cost is         : 22.486681469082676 

 At row:151, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:151, column:173,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:173,the value of plot_cost is         : 22.66004794251229 

 At row:151, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:151, column:174,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:174,the value of plot_cost is         : 22.8342224763444 

 At row:151, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:151, column:175,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:175,the value of plot_cost is         : 23.009205070579036 

 At row:151, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:151, column:176,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:176,the value of plot_cost is         : 23.184995725216186 

 At row:151, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:151, column:177,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:177,the value of plot_cost is         : 23.361594440255846 

 At row:151, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:151, column:178,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:178,the value of plot_cost is         : 23.53900121569803 

 At row:151, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:151, column:179,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:179,the value of plot_cost is         : 23.71721605154272 

 At row:151, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:151, column:180,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:180,the value of plot_cost is         : 23.896238947789925 

 At row:151, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:151, column:181,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:181,the value of plot_cost is         : 24.07606990443965 

 At row:151, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:151, column:182,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:182,the value of plot_cost is         : 24.25670892149189 

 At row:151, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:151, column:183,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:183,the value of plot_cost is         : 24.438155998946645 

 At row:151, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:151, column:184,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:184,the value of plot_cost is         : 24.620411136803916 

 At row:151, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:151, column:185,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:185,the value of plot_cost is         : 24.8034743350637 

 At row:151, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:151, column:186,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:186,the value of plot_cost is         : 24.987345593726 

 At row:151, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:151, column:187,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:187,the value of plot_cost is         : 25.172024912790818 

 At row:151, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:151, column:188,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:188,the value of plot_cost is         : 25.357512292258143 

 At row:151, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:151, column:189,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:189,the value of plot_cost is         : 25.543807732127988 

 At row:151, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:151, column:190,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:190,the value of plot_cost is         : 25.730911232400345 

 At row:151, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:151, column:191,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:191,the value of plot_cost is         : 25.91882279307522 

 At row:151, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:151, column:192,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:192,the value of plot_cost is         : 26.107542414152604 

 At row:151, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:151, column:193,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:193,the value of plot_cost is         : 26.297070095632513 

 At row:151, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:151, column:194,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:194,the value of plot_cost is         : 26.487405837514935 

 At row:151, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:151, column:195,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:195,the value of plot_cost is         : 26.678549639799872 

 At row:151, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:151, column:196,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:196,the value of plot_cost is         : 26.87050150248733 

 At row:151, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:151, column:197,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:197,the value of plot_cost is         : 27.06326142557729 

 At row:151, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:151, column:198,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:198,the value of plot_cost is         : 27.25682940906977 

 At row:151, column:199,the value of plot_t0 is           : 3.0
 At row:151, column:199,the value of plot_t1 is           : 2.035175879396985
 At row:151, column:199,the value of plot_cost is         : 27.451205452964764 

 At row:152, column:0,the value of plot_t0 is           : -1.0
 At row:152, column:0,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:0,the value of plot_cost is         : 4.958683691248775 

 At row:152, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:152, column:1,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:1,the value of plot_cost is         : 4.995741918494119 

 At row:152, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:152, column:2,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:2,the value of plot_cost is         : 5.033608206141978 

 At row:152, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:152, column:3,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:3,the value of plot_cost is         : 5.072282554192353 

 At row:152, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:152, column:4,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:4,the value of plot_cost is         : 5.111764962645243 

 At row:152, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:152, column:5,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:5,the value of plot_cost is         : 5.152055431500646 

 At row:152, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:152, column:6,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:6,the value of plot_cost is         : 5.193153960758565 

 At row:152, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:152, column:7,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:7,the value of plot_cost is         : 5.235060550418999 

 At row:152, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:152, column:8,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:8,the value of plot_cost is         : 5.2777752004819485 

 At row:152, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:152, column:9,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:9,the value of plot_cost is         : 5.321297910947414 

 At row:152, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:152, column:10,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:10,the value of plot_cost is         : 5.365628681815392 

 At row:152, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:152, column:11,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:11,the value of plot_cost is         : 5.4107675130858865 

 At row:152, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:152, column:12,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:12,the value of plot_cost is         : 5.456714404758896 

 At row:152, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:152, column:13,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:13,the value of plot_cost is         : 5.503469356834422 

 At row:152, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:152, column:14,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:14,the value of plot_cost is         : 5.551032369312463 

 At row:152, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:152, column:15,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:15,the value of plot_cost is         : 5.599403442193016 

 At row:152, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:152, column:16,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:16,the value of plot_cost is         : 5.648582575476086 

 At row:152, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:152, column:17,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:17,the value of plot_cost is         : 5.698569769161671 

 At row:152, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:152, column:18,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:18,the value of plot_cost is         : 5.749365023249773 

 At row:152, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:152, column:19,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:19,the value of plot_cost is         : 5.800968337740388 

 At row:152, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:152, column:20,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:20,the value of plot_cost is         : 5.853379712633517 

 At row:152, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:152, column:21,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:21,the value of plot_cost is         : 5.906599147929161 

 At row:152, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:152, column:22,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:22,the value of plot_cost is         : 5.9606266436273225 

 At row:152, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:152, column:23,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:23,the value of plot_cost is         : 6.015462199728 

 At row:152, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:152, column:24,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:24,the value of plot_cost is         : 6.071105816231191 

 At row:152, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:152, column:25,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:25,the value of plot_cost is         : 6.127557493136895 

 At row:152, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:152, column:26,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:26,the value of plot_cost is         : 6.184817230445115 

 At row:152, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:152, column:27,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:27,the value of plot_cost is         : 6.242885028155851 

 At row:152, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:152, column:28,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:28,the value of plot_cost is         : 6.301760886269104 

 At row:152, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:152, column:29,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:29,the value of plot_cost is         : 6.36144480478487 

 At row:152, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:152, column:30,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:30,the value of plot_cost is         : 6.421936783703151 

 At row:152, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:152, column:31,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:31,the value of plot_cost is         : 6.483236823023946 

 At row:152, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:152, column:32,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:32,the value of plot_cost is         : 6.545344922747257 

 At row:152, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:152, column:33,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:33,the value of plot_cost is         : 6.608261082873087 

 At row:152, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:152, column:34,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:34,the value of plot_cost is         : 6.671985303401428 

 At row:152, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:152, column:35,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:35,the value of plot_cost is         : 6.736517584332284 

 At row:152, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:152, column:36,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:36,the value of plot_cost is         : 6.8018579256656535 

 At row:152, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:152, column:37,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:37,the value of plot_cost is         : 6.868006327401541 

 At row:152, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:152, column:38,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:38,the value of plot_cost is         : 6.934962789539946 

 At row:152, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:152, column:39,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:39,the value of plot_cost is         : 7.002727312080862 

 At row:152, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:152, column:40,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:40,the value of plot_cost is         : 7.071299895024294 

 At row:152, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:152, column:41,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:41,the value of plot_cost is         : 7.140680538370239 

 At row:152, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:152, column:42,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:42,the value of plot_cost is         : 7.210869242118701 

 At row:152, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:152, column:43,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:43,the value of plot_cost is         : 7.2818660062696825 

 At row:152, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:152, column:44,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:44,the value of plot_cost is         : 7.353670830823174 

 At row:152, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:152, column:45,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:45,the value of plot_cost is         : 7.426283715779181 

 At row:152, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:152, column:46,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:46,the value of plot_cost is         : 7.499704661137701 

 At row:152, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:152, column:47,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:47,the value of plot_cost is         : 7.573933666898739 

 At row:152, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:152, column:48,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:48,the value of plot_cost is         : 7.648970733062295 

 At row:152, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:152, column:49,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:49,the value of plot_cost is         : 7.724815859628362 

 At row:152, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:152, column:50,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:50,the value of plot_cost is         : 7.801469046596945 

 At row:152, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:152, column:51,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:51,the value of plot_cost is         : 7.8789302939680415 

 At row:152, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:152, column:52,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:52,the value of plot_cost is         : 7.957199601741653 

 At row:152, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:152, column:53,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:53,the value of plot_cost is         : 8.036276969917786 

 At row:152, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:152, column:54,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:54,the value of plot_cost is         : 8.11616239849643 

 At row:152, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:152, column:55,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:55,the value of plot_cost is         : 8.196855887477586 

 At row:152, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:152, column:56,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:56,the value of plot_cost is         : 8.278357436861258 

 At row:152, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:152, column:57,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:57,the value of plot_cost is         : 8.360667046647452 

 At row:152, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:152, column:58,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:58,the value of plot_cost is         : 8.443784716836154 

 At row:152, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:152, column:59,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:59,the value of plot_cost is         : 8.527710447427372 

 At row:152, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:152, column:60,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:60,the value of plot_cost is         : 8.612444238421105 

 At row:152, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:152, column:61,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:61,the value of plot_cost is         : 8.697986089817352 

 At row:152, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:152, column:62,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:62,the value of plot_cost is         : 8.784336001616117 

 At row:152, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:152, column:63,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:63,the value of plot_cost is         : 8.8714939738174 

 At row:152, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:152, column:64,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:64,the value of plot_cost is         : 8.95946000642119 

 At row:152, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:152, column:65,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:65,the value of plot_cost is         : 9.0482340994275 

 At row:152, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:152, column:66,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:66,the value of plot_cost is         : 9.137816252836322 

 At row:152, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:152, column:67,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:67,the value of plot_cost is         : 9.228206466647668 

 At row:152, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:152, column:68,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:68,the value of plot_cost is         : 9.31940474086152 

 At row:152, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:152, column:69,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:69,the value of plot_cost is         : 9.41141107547789 

 At row:152, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:152, column:70,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:70,the value of plot_cost is         : 9.504225470496772 

 At row:152, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:152, column:71,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:71,the value of plot_cost is         : 9.597847925918172 

 At row:152, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:152, column:72,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:72,the value of plot_cost is         : 9.692278441742085 

 At row:152, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:152, column:73,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:73,the value of plot_cost is         : 9.78751701796852 

 At row:152, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:152, column:74,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:74,the value of plot_cost is         : 9.883563654597465 

 At row:152, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:152, column:75,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:75,the value of plot_cost is         : 9.980418351628925 

 At row:152, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:152, column:76,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:76,the value of plot_cost is         : 10.078081109062898 

 At row:152, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:152, column:77,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:77,the value of plot_cost is         : 10.176551926899394 

 At row:152, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:152, column:78,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:78,the value of plot_cost is         : 10.2758308051384 

 At row:152, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:152, column:79,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:79,the value of plot_cost is         : 10.375917743779917 

 At row:152, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:152, column:80,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:80,the value of plot_cost is         : 10.47681274282395 

 At row:152, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:152, column:81,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:81,the value of plot_cost is         : 10.5785158022705 

 At row:152, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:152, column:82,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:82,the value of plot_cost is         : 10.681026922119566 

 At row:152, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:152, column:83,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:83,the value of plot_cost is         : 10.78434610237115 

 At row:152, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:152, column:84,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:84,the value of plot_cost is         : 10.888473343025247 

 At row:152, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:152, column:85,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:85,the value of plot_cost is         : 10.993408644081855 

 At row:152, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:152, column:86,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:86,the value of plot_cost is         : 11.09915200554098 

 At row:152, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:152, column:87,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:87,the value of plot_cost is         : 11.205703427402629 

 At row:152, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:152, column:88,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:88,the value of plot_cost is         : 11.313062909666785 

 At row:152, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:152, column:89,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:89,the value of plot_cost is         : 11.421230452333452 

 At row:152, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:152, column:90,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:90,the value of plot_cost is         : 11.530206055402637 

 At row:152, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:152, column:91,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:91,the value of plot_cost is         : 11.639989718874336 

 At row:152, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:152, column:92,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:92,the value of plot_cost is         : 11.750581442748551 

 At row:152, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:152, column:93,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:93,the value of plot_cost is         : 11.861981227025291 

 At row:152, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:152, column:94,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:94,the value of plot_cost is         : 11.974189071704537 

 At row:152, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:152, column:95,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:95,the value of plot_cost is         : 12.087204976786296 

 At row:152, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:152, column:96,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:96,the value of plot_cost is         : 12.201028942270572 

 At row:152, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:152, column:97,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:97,the value of plot_cost is         : 12.315660968157369 

 At row:152, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:152, column:98,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:98,the value of plot_cost is         : 12.431101054446676 

 At row:152, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:152, column:99,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:99,the value of plot_cost is         : 12.547349201138497 

 At row:152, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:152, column:100,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:100,the value of plot_cost is         : 12.664405408232831 

 At row:152, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:152, column:101,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:101,the value of plot_cost is         : 12.782269675729683 

 At row:152, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:152, column:102,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:102,the value of plot_cost is         : 12.90094200362905 

 At row:152, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:152, column:103,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:103,the value of plot_cost is         : 13.02042239193094 

 At row:152, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:152, column:104,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:104,the value of plot_cost is         : 13.140710840635336 

 At row:152, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:152, column:105,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:105,the value of plot_cost is         : 13.261807349742245 

 At row:152, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:152, column:106,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:106,the value of plot_cost is         : 13.383711919251672 

 At row:152, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:152, column:107,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:107,the value of plot_cost is         : 13.50642454916362 

 At row:152, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:152, column:108,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:108,the value of plot_cost is         : 13.62994523947808 

 At row:152, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:152, column:109,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:109,the value of plot_cost is         : 13.75427399019505 

 At row:152, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:152, column:110,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:110,the value of plot_cost is         : 13.879410801314537 

 At row:152, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:152, column:111,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:111,the value of plot_cost is         : 14.005355672836536 

 At row:152, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:152, column:112,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:112,the value of plot_cost is         : 14.132108604761054 

 At row:152, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:152, column:113,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:113,the value of plot_cost is         : 14.259669597088097 

 At row:152, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:152, column:114,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:114,the value of plot_cost is         : 14.388038649817641 

 At row:152, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:152, column:115,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:115,the value of plot_cost is         : 14.517215762949705 

 At row:152, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:152, column:116,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:116,the value of plot_cost is         : 14.647200936484282 

 At row:152, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:152, column:117,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:117,the value of plot_cost is         : 14.77799417042138 

 At row:152, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:152, column:118,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:118,the value of plot_cost is         : 14.909595464760992 

 At row:152, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:152, column:119,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:119,the value of plot_cost is         : 15.042004819503111 

 At row:152, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:152, column:120,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:120,the value of plot_cost is         : 15.17522223464775 

 At row:152, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:152, column:121,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:121,the value of plot_cost is         : 15.309247710194901 

 At row:152, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:152, column:122,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:122,the value of plot_cost is         : 15.444081246144568 

 At row:152, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:152, column:123,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:123,the value of plot_cost is         : 15.57972284249676 

 At row:152, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:152, column:124,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:124,the value of plot_cost is         : 15.716172499251458 

 At row:152, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:152, column:125,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:125,the value of plot_cost is         : 15.853430216408672 

 At row:152, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:152, column:126,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:126,the value of plot_cost is         : 15.9914959939684 

 At row:152, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:152, column:127,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:127,the value of plot_cost is         : 16.13036983193065 

 At row:152, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:152, column:128,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:128,the value of plot_cost is         : 16.27005173029541 

 At row:152, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:152, column:129,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:129,the value of plot_cost is         : 16.410541689062683 

 At row:152, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:152, column:130,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:130,the value of plot_cost is         : 16.55183970823247 

 At row:152, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:152, column:131,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:131,the value of plot_cost is         : 16.693945787804775 

 At row:152, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:152, column:132,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:132,the value of plot_cost is         : 16.836859927779592 

 At row:152, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:152, column:133,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:133,the value of plot_cost is         : 16.980582128156936 

 At row:152, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:152, column:134,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:134,the value of plot_cost is         : 17.125112388936785 

 At row:152, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:152, column:135,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:135,the value of plot_cost is         : 17.270450710119146 

 At row:152, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:152, column:136,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:136,the value of plot_cost is         : 17.416597091704023 

 At row:152, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:152, column:137,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:137,the value of plot_cost is         : 17.56355153369143 

 At row:152, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:152, column:138,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:138,the value of plot_cost is         : 17.711314036081337 

 At row:152, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:152, column:139,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:139,the value of plot_cost is         : 17.859884598873762 

 At row:152, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:152, column:140,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:140,the value of plot_cost is         : 18.0092632220687 

 At row:152, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:152, column:141,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:141,the value of plot_cost is         : 18.159449905666154 

 At row:152, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:152, column:142,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:142,the value of plot_cost is         : 18.310444649666124 

 At row:152, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:152, column:143,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:143,the value of plot_cost is         : 18.462247454068617 

 At row:152, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:152, column:144,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:144,the value of plot_cost is         : 18.61485831887362 

 At row:152, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:152, column:145,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:145,the value of plot_cost is         : 18.768277244081133 

 At row:152, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:152, column:146,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:146,the value of plot_cost is         : 18.92250422969116 

 At row:152, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:152, column:147,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:147,the value of plot_cost is         : 19.077539275703717 

 At row:152, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:152, column:148,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:148,the value of plot_cost is         : 19.23338238211878 

 At row:152, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:152, column:149,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:149,the value of plot_cost is         : 19.39003354893635 

 At row:152, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:152, column:150,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:150,the value of plot_cost is         : 19.547492776156442 

 At row:152, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:152, column:151,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:151,the value of plot_cost is         : 19.705760063779042 

 At row:152, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:152, column:152,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:152,the value of plot_cost is         : 19.864835411804165 

 At row:152, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:152, column:153,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:153,the value of plot_cost is         : 20.024718820231815 

 At row:152, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:152, column:154,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:154,the value of plot_cost is         : 20.185410289061963 

 At row:152, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:152, column:155,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:155,the value of plot_cost is         : 20.346909818294623 

 At row:152, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:152, column:156,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:156,the value of plot_cost is         : 20.509217407929814 

 At row:152, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:152, column:157,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:157,the value of plot_cost is         : 20.672333057967514 

 At row:152, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:152, column:158,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:158,the value of plot_cost is         : 20.836256768407722 

 At row:152, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:152, column:159,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:159,the value of plot_cost is         : 21.000988539250447 

 At row:152, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:152, column:160,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:160,the value of plot_cost is         : 21.166528370495687 

 At row:152, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:152, column:161,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:161,the value of plot_cost is         : 21.332876262143444 

 At row:152, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:152, column:162,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:162,the value of plot_cost is         : 21.500032214193716 

 At row:152, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:152, column:163,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:163,the value of plot_cost is         : 21.66799622664651 

 At row:152, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:152, column:164,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:164,the value of plot_cost is         : 21.836768299501816 

 At row:152, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:152, column:165,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:165,the value of plot_cost is         : 22.006348432759626 

 At row:152, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:152, column:166,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:166,the value of plot_cost is         : 22.17673662641997 

 At row:152, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:152, column:167,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:167,the value of plot_cost is         : 22.347932880482816 

 At row:152, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:152, column:168,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:168,the value of plot_cost is         : 22.519937194948177 

 At row:152, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:152, column:169,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:169,the value of plot_cost is         : 22.692749569816055 

 At row:152, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:152, column:170,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:170,the value of plot_cost is         : 22.86637000508644 

 At row:152, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:152, column:171,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:171,the value of plot_cost is         : 23.04079850075935 

 At row:152, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:152, column:172,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:172,the value of plot_cost is         : 23.21603505683477 

 At row:152, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:152, column:173,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:173,the value of plot_cost is         : 23.392079673312722 

 At row:152, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:152, column:174,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:174,the value of plot_cost is         : 23.568932350193172 

 At row:152, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:152, column:175,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:175,the value of plot_cost is         : 23.746593087476136 

 At row:152, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:152, column:176,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:176,the value of plot_cost is         : 23.925061885161636 

 At row:152, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:152, column:177,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:177,the value of plot_cost is         : 24.10433874324963 

 At row:152, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:152, column:178,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:178,the value of plot_cost is         : 24.284423661740142 

 At row:152, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:152, column:179,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:179,the value of plot_cost is         : 24.465316640633166 

 At row:152, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:152, column:180,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:180,the value of plot_cost is         : 24.64701767992871 

 At row:152, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:152, column:181,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:181,the value of plot_cost is         : 24.829526779626768 

 At row:152, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:152, column:182,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:182,the value of plot_cost is         : 25.012843939727336 

 At row:152, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:152, column:183,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:183,the value of plot_cost is         : 25.196969160230434 

 At row:152, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:152, column:184,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:184,the value of plot_cost is         : 25.38190244113605 

 At row:152, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:152, column:185,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:185,the value of plot_cost is         : 25.56764378244416 

 At row:152, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:152, column:186,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:186,the value of plot_cost is         : 25.754193184154804 

 At row:152, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:152, column:187,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:187,the value of plot_cost is         : 25.94155064626795 

 At row:152, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:152, column:188,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:188,the value of plot_cost is         : 26.129716168783617 

 At row:152, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:152, column:189,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:189,the value of plot_cost is         : 26.31868975170179 

 At row:152, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:152, column:190,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:190,the value of plot_cost is         : 26.508471395022482 

 At row:152, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:152, column:191,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:191,the value of plot_cost is         : 26.699061098745695 

 At row:152, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:152, column:192,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:192,the value of plot_cost is         : 26.890458862871412 

 At row:152, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:152, column:193,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:193,the value of plot_cost is         : 27.08266468739966 

 At row:152, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:152, column:194,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:194,the value of plot_cost is         : 27.275678572330413 

 At row:152, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:152, column:195,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:195,the value of plot_cost is         : 27.46950051766369 

 At row:152, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:152, column:196,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:196,the value of plot_cost is         : 27.664130523399482 

 At row:152, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:152, column:197,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:197,the value of plot_cost is         : 27.859568589537787 

 At row:152, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:152, column:198,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:198,the value of plot_cost is         : 28.055814716078594 

 At row:152, column:199,the value of plot_t0 is           : 3.0
 At row:152, column:199,the value of plot_t1 is           : 2.0552763819095476
 At row:152, column:199,the value of plot_cost is         : 28.252868903021927 

 At row:153, column:0,the value of plot_t0 is           : -1.0
 At row:153, column:0,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:0,the value of plot_cost is         : 5.239979329526311 

 At row:153, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:153, column:1,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:1,the value of plot_cost is         : 5.27971569981999 

 At row:153, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:153, column:2,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:2,the value of plot_cost is         : 5.320260130516185 

 At row:153, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:153, column:3,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:3,the value of plot_cost is         : 5.361612621614896 

 At row:153, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:153, column:4,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:4,the value of plot_cost is         : 5.403773173116121 

 At row:153, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:153, column:5,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:5,the value of plot_cost is         : 5.446741785019859 

 At row:153, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:153, column:6,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:6,the value of plot_cost is         : 5.490518457326114 

 At row:153, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:153, column:7,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:7,the value of plot_cost is         : 5.535103190034884 

 At row:153, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:153, column:8,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:8,the value of plot_cost is         : 5.580495983146171 

 At row:153, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:153, column:9,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:9,the value of plot_cost is         : 5.62669683665997 

 At row:153, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:153, column:10,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:10,the value of plot_cost is         : 5.673705750576285 

 At row:153, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:153, column:11,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:11,the value of plot_cost is         : 5.721522724895115 

 At row:153, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:153, column:12,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:12,the value of plot_cost is         : 5.770147759616459 

 At row:153, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:153, column:13,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:13,the value of plot_cost is         : 5.819580854740321 

 At row:153, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:153, column:14,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:14,the value of plot_cost is         : 5.869822010266698 

 At row:153, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:153, column:15,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:15,the value of plot_cost is         : 5.920871226195588 

 At row:153, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:153, column:16,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:16,the value of plot_cost is         : 5.9727285025269925 

 At row:153, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:153, column:17,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:17,the value of plot_cost is         : 6.025393839260912 

 At row:153, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:153, column:18,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:18,the value of plot_cost is         : 6.078867236397351 

 At row:153, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:153, column:19,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:19,the value of plot_cost is         : 6.133148693936302 

 At row:153, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:153, column:20,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:20,the value of plot_cost is         : 6.188238211877768 

 At row:153, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:153, column:21,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:21,the value of plot_cost is         : 6.244135790221749 

 At row:153, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:153, column:22,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:22,the value of plot_cost is         : 6.300841428968244 

 At row:153, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:153, column:23,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:23,the value of plot_cost is         : 6.358355128117257 

 At row:153, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:153, column:24,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:24,the value of plot_cost is         : 6.416676887668783 

 At row:153, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:153, column:25,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:25,the value of plot_cost is         : 6.475806707622825 

 At row:153, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:153, column:26,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:26,the value of plot_cost is         : 6.535744587979381 

 At row:153, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:153, column:27,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:27,the value of plot_cost is         : 6.5964905287384505 

 At row:153, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:153, column:28,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:28,the value of plot_cost is         : 6.658044529900041 

 At row:153, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:153, column:29,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:29,the value of plot_cost is         : 6.720406591464142 

 At row:153, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:153, column:30,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:30,the value of plot_cost is         : 6.783576713430758 

 At row:153, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:153, column:31,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:31,the value of plot_cost is         : 6.84755489579989 

 At row:153, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:153, column:32,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:32,the value of plot_cost is         : 6.912341138571536 

 At row:153, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:153, column:33,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:33,the value of plot_cost is         : 6.977935441745702 

 At row:153, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:153, column:34,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:34,the value of plot_cost is         : 7.044337805322379 

 At row:153, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:153, column:35,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:35,the value of plot_cost is         : 7.11154822930157 

 At row:153, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:153, column:36,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:36,the value of plot_cost is         : 7.1795667136832755 

 At row:153, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:153, column:37,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:37,the value of plot_cost is         : 7.248393258467497 

 At row:153, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:153, column:38,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:38,the value of plot_cost is         : 7.318027863654239 

 At row:153, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:153, column:39,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:39,the value of plot_cost is         : 7.388470529243492 

 At row:153, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:153, column:40,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:40,the value of plot_cost is         : 7.459721255235257 

 At row:153, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:153, column:41,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:41,the value of plot_cost is         : 7.531780041629541 

 At row:153, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:153, column:42,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:42,the value of plot_cost is         : 7.6046468884263385 

 At row:153, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:153, column:43,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:43,the value of plot_cost is         : 7.678321795625654 

 At row:153, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:153, column:44,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:44,the value of plot_cost is         : 7.7528047632274815 

 At row:153, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:153, column:45,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:45,the value of plot_cost is         : 7.828095791231824 

 At row:153, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:153, column:46,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:46,the value of plot_cost is         : 7.904194879638682 

 At row:153, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:153, column:47,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:47,the value of plot_cost is         : 7.981102028448054 

 At row:153, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:153, column:48,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:48,the value of plot_cost is         : 8.058817237659945 

 At row:153, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:153, column:49,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:49,the value of plot_cost is         : 8.137340507274349 

 At row:153, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:153, column:50,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:50,the value of plot_cost is         : 8.216671837291265 

 At row:153, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:153, column:51,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:51,the value of plot_cost is         : 8.2968112277107 

 At row:153, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:153, column:52,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:52,the value of plot_cost is         : 8.377758678532647 

 At row:153, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:153, column:53,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:53,the value of plot_cost is         : 8.459514189757115 

 At row:153, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:153, column:54,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:54,the value of plot_cost is         : 8.542077761384094 

 At row:153, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:153, column:55,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:55,the value of plot_cost is         : 8.625449393413588 

 At row:153, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:153, column:56,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:56,the value of plot_cost is         : 8.709629085845595 

 At row:153, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:153, column:57,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:57,the value of plot_cost is         : 8.794616838680124 

 At row:153, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:153, column:58,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:58,the value of plot_cost is         : 8.880412651917162 

 At row:153, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:153, column:59,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:59,the value of plot_cost is         : 8.967016525556716 

 At row:153, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:153, column:60,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:60,the value of plot_cost is         : 9.054428459598784 

 At row:153, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:153, column:61,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:61,the value of plot_cost is         : 9.142648454043368 

 At row:153, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:153, column:62,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:62,the value of plot_cost is         : 9.231676508890466 

 At row:153, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:153, column:63,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:63,the value of plot_cost is         : 9.321512624140086 

 At row:153, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:153, column:64,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:64,the value of plot_cost is         : 9.412156799792216 

 At row:153, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:153, column:65,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:65,the value of plot_cost is         : 9.503609035846859 

 At row:153, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:153, column:66,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:66,the value of plot_cost is         : 9.59586933230402 

 At row:153, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:153, column:67,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:67,the value of plot_cost is         : 9.688937689163698 

 At row:153, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:153, column:68,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:68,the value of plot_cost is         : 9.782814106425887 

 At row:153, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:153, column:69,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:69,the value of plot_cost is         : 9.87749858409059 

 At row:153, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:153, column:70,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:70,the value of plot_cost is         : 9.97299112215781 

 At row:153, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:153, column:71,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:71,the value of plot_cost is         : 10.069291720627547 

 At row:153, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:153, column:72,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:72,the value of plot_cost is         : 10.166400379499795 

 At row:153, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:153, column:73,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:73,the value of plot_cost is         : 10.264317098774564 

 At row:153, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:153, column:74,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:74,the value of plot_cost is         : 10.363041878451845 

 At row:153, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:153, column:75,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:75,the value of plot_cost is         : 10.46257471853164 

 At row:153, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:153, column:76,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:76,the value of plot_cost is         : 10.56291561901395 

 At row:153, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:153, column:77,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:77,the value of plot_cost is         : 10.66406457989878 

 At row:153, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:153, column:78,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:78,the value of plot_cost is         : 10.766021601186118 

 At row:153, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:153, column:79,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:79,the value of plot_cost is         : 10.868786682875976 

 At row:153, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:153, column:80,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:80,the value of plot_cost is         : 10.972359824968345 

 At row:153, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:153, column:81,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:81,the value of plot_cost is         : 11.076741027463232 

 At row:153, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:153, column:82,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:82,the value of plot_cost is         : 11.181930290360631 

 At row:153, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:153, column:83,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:83,the value of plot_cost is         : 11.28792761366055 

 At row:153, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:153, column:84,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:84,the value of plot_cost is         : 11.394732997362983 

 At row:153, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:153, column:85,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:85,the value of plot_cost is         : 11.502346441467928 

 At row:153, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:153, column:86,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:86,the value of plot_cost is         : 11.61076794597539 

 At row:153, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:153, column:87,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:87,the value of plot_cost is         : 11.71999751088537 

 At row:153, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:153, column:88,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:88,the value of plot_cost is         : 11.83003513619786 

 At row:153, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:153, column:89,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:89,the value of plot_cost is         : 11.940880821912867 

 At row:153, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:153, column:90,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:90,the value of plot_cost is         : 12.052534568030389 

 At row:153, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:153, column:91,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:91,the value of plot_cost is         : 12.164996374550423 

 At row:153, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:153, column:92,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:92,the value of plot_cost is         : 12.278266241472977 

 At row:153, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:153, column:93,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:93,the value of plot_cost is         : 12.392344168798049 

 At row:153, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:153, column:94,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:94,the value of plot_cost is         : 12.50723015652563 

 At row:153, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:153, column:95,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:95,the value of plot_cost is         : 12.622924204655726 

 At row:153, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:153, column:96,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:96,the value of plot_cost is         : 12.739426313188337 

 At row:153, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:153, column:97,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:97,the value of plot_cost is         : 12.85673648212347 

 At row:153, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:153, column:98,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:98,the value of plot_cost is         : 12.974854711461111 

 At row:153, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:153, column:99,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:99,the value of plot_cost is         : 13.09378100120127 

 At row:153, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:153, column:100,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:100,the value of plot_cost is         : 13.21351535134394 

 At row:153, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:153, column:101,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:101,the value of plot_cost is         : 13.33405776188913 

 At row:153, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:153, column:102,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:102,the value of plot_cost is         : 13.455408232836831 

 At row:153, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:153, column:103,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:103,the value of plot_cost is         : 13.577566764187054 

 At row:153, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:153, column:104,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:104,the value of plot_cost is         : 13.700533355939788 

 At row:153, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:153, column:105,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:105,the value of plot_cost is         : 13.824308008095034 

 At row:153, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:153, column:106,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:106,the value of plot_cost is         : 13.948890720652795 

 At row:153, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:153, column:107,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:107,the value of plot_cost is         : 14.07428149361308 

 At row:153, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:153, column:108,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:108,the value of plot_cost is         : 14.200480326975873 

 At row:153, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:153, column:109,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:109,the value of plot_cost is         : 14.32748722074118 

 At row:153, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:153, column:110,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:110,the value of plot_cost is         : 14.455302174909002 

 At row:153, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:153, column:111,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:111,the value of plot_cost is         : 14.583925189479341 

 At row:153, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:153, column:112,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:112,the value of plot_cost is         : 14.713356264452194 

 At row:153, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:153, column:113,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:113,the value of plot_cost is         : 14.843595399827567 

 At row:153, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:153, column:114,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:114,the value of plot_cost is         : 14.97464259560545 

 At row:153, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:153, column:115,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:115,the value of plot_cost is         : 15.106497851785852 

 At row:153, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:153, column:116,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:116,the value of plot_cost is         : 15.239161168368764 

 At row:153, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:153, column:117,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:117,the value of plot_cost is         : 15.372632545354199 

 At row:153, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:153, column:118,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:118,the value of plot_cost is         : 15.50691198274214 

 At row:153, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:153, column:119,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:119,the value of plot_cost is         : 15.641999480532599 

 At row:153, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:153, column:120,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:120,the value of plot_cost is         : 15.777895038725575 

 At row:153, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:153, column:121,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:121,the value of plot_cost is         : 15.914598657321061 

 At row:153, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:153, column:122,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:122,the value of plot_cost is         : 16.052110336319064 

 At row:153, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:153, column:123,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:123,the value of plot_cost is         : 16.19043007571959 

 At row:153, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:153, column:124,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:124,the value of plot_cost is         : 16.329557875522624 

 At row:153, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:153, column:125,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:125,the value of plot_cost is         : 16.46949373572818 

 At row:153, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:153, column:126,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:126,the value of plot_cost is         : 16.61023765633624 

 At row:153, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:153, column:127,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:127,the value of plot_cost is         : 16.75178963734682 

 At row:153, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:153, column:128,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:128,the value of plot_cost is         : 16.894149678759916 

 At row:153, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:153, column:129,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:129,the value of plot_cost is         : 17.03731778057553 

 At row:153, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:153, column:130,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:130,the value of plot_cost is         : 17.181293942793655 

 At row:153, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:153, column:131,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:131,the value of plot_cost is         : 17.32607816541429 

 At row:153, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:153, column:132,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:132,the value of plot_cost is         : 17.471670448437443 

 At row:153, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:153, column:133,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:133,the value of plot_cost is         : 17.618070791863122 

 At row:153, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:153, column:134,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:134,the value of plot_cost is         : 17.765279195691306 

 At row:153, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:153, column:135,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:135,the value of plot_cost is         : 17.913295659922007 

 At row:153, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:153, column:136,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:136,the value of plot_cost is         : 18.062120184555223 

 At row:153, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:153, column:137,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:137,the value of plot_cost is         : 18.21175276959096 

 At row:153, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:153, column:138,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:138,the value of plot_cost is         : 18.362193415029203 

 At row:153, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:153, column:139,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:139,the value of plot_cost is         : 18.513442120869968 

 At row:153, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:153, column:140,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:140,the value of plot_cost is         : 18.665498887113245 

 At row:153, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:153, column:141,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:141,the value of plot_cost is         : 18.81836371375903 

 At row:153, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:153, column:142,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:142,the value of plot_cost is         : 18.972036600807332 

 At row:153, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:153, column:143,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:143,the value of plot_cost is         : 19.126517548258164 

 At row:153, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:153, column:144,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:144,the value of plot_cost is         : 19.281806556111498 

 At row:153, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:153, column:145,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:145,the value of plot_cost is         : 19.437903624367355 

 At row:153, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:153, column:146,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:146,the value of plot_cost is         : 19.594808753025717 

 At row:153, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:153, column:147,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:147,the value of plot_cost is         : 19.752521942086602 

 At row:153, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:153, column:148,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:148,the value of plot_cost is         : 19.91104319155 

 At row:153, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:153, column:149,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:149,the value of plot_cost is         : 20.070372501415914 

 At row:153, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:153, column:150,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:150,the value of plot_cost is         : 20.230509871684337 

 At row:153, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:153, column:151,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:151,the value of plot_cost is         : 20.391455302355276 

 At row:153, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:153, column:152,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:152,the value of plot_cost is         : 20.55320879342873 

 At row:153, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:153, column:153,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:153,the value of plot_cost is         : 20.715770344904712 

 At row:153, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:153, column:154,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:154,the value of plot_cost is         : 20.879139956783195 

 At row:153, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:153, column:155,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:155,the value of plot_cost is         : 21.0433176290642 

 At row:153, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:153, column:156,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:156,the value of plot_cost is         : 21.208303361747724 

 At row:153, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:153, column:157,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:157,the value of plot_cost is         : 21.374097154833755 

 At row:153, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:153, column:158,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:158,the value of plot_cost is         : 21.540699008322303 

 At row:153, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:153, column:159,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:159,the value of plot_cost is         : 21.70810892221337 

 At row:153, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:153, column:160,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:160,the value of plot_cost is         : 21.876326896506942 

 At row:153, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:153, column:161,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:161,the value of plot_cost is         : 22.045352931203038 

 At row:153, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:153, column:162,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:162,the value of plot_cost is         : 22.21518702630164 

 At row:153, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:153, column:163,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:163,the value of plot_cost is         : 22.38582918180277 

 At row:153, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:153, column:164,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:164,the value of plot_cost is         : 22.557279397706406 

 At row:153, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:153, column:165,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:165,the value of plot_cost is         : 22.729537674012562 

 At row:153, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:153, column:166,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:166,the value of plot_cost is         : 22.902604010721237 

 At row:153, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:153, column:167,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:167,the value of plot_cost is         : 23.076478407832415 

 At row:153, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:153, column:168,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:168,the value of plot_cost is         : 23.25116086534611 

 At row:153, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:153, column:169,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:169,the value of plot_cost is         : 23.42665138326233 

 At row:153, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:153, column:170,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:170,the value of plot_cost is         : 23.60294996158106 

 At row:153, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:153, column:171,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:171,the value of plot_cost is         : 23.7800566003023 

 At row:153, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:153, column:172,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:172,the value of plot_cost is         : 23.957971299426053 

 At row:153, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:153, column:173,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:173,the value of plot_cost is         : 24.136694058952333 

 At row:153, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:153, column:174,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:174,the value of plot_cost is         : 24.316224878881126 

 At row:153, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:153, column:175,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:175,the value of plot_cost is         : 24.496563759212435 

 At row:153, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:153, column:176,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:176,the value of plot_cost is         : 24.677710699946253 

 At row:153, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:153, column:177,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:177,the value of plot_cost is         : 24.859665701082587 

 At row:153, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:153, column:178,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:178,the value of plot_cost is         : 25.042428762621434 

 At row:153, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:153, column:179,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:179,the value of plot_cost is         : 25.2259998845628 

 At row:153, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:153, column:180,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:180,the value of plot_cost is         : 25.410379066906682 

 At row:153, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:153, column:181,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:181,the value of plot_cost is         : 25.595566309653073 

 At row:153, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:153, column:182,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:182,the value of plot_cost is         : 25.78156161280198 

 At row:153, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:153, column:183,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:183,the value of plot_cost is         : 25.968364976353406 

 At row:153, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:153, column:184,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:184,the value of plot_cost is         : 26.155976400307345 

 At row:153, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:153, column:185,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:185,the value of plot_cost is         : 26.34439588466381 

 At row:153, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:153, column:186,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:186,the value of plot_cost is         : 26.53362342942279 

 At row:153, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:153, column:187,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:187,the value of plot_cost is         : 26.723659034584266 

 At row:153, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:153, column:188,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:188,the value of plot_cost is         : 26.91450270014827 

 At row:153, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:153, column:189,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:189,the value of plot_cost is         : 27.106154426114788 

 At row:153, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:153, column:190,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:190,the value of plot_cost is         : 27.298614212483812 

 At row:153, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:153, column:191,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:191,the value of plot_cost is         : 27.491882059255357 

 At row:153, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:153, column:192,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:192,the value of plot_cost is         : 27.685957966429413 

 At row:153, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:153, column:193,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:193,the value of plot_cost is         : 27.880841934005996 

 At row:153, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:153, column:194,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:194,the value of plot_cost is         : 28.076533961985092 

 At row:153, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:153, column:195,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:195,the value of plot_cost is         : 28.273034050366697 

 At row:153, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:153, column:196,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:196,the value of plot_cost is         : 28.47034219915082 

 At row:153, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:153, column:197,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:197,the value of plot_cost is         : 28.668458408337454 

 At row:153, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:153, column:198,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:198,the value of plot_cost is         : 28.867382677926603 

 At row:153, column:199,the value of plot_t0 is           : 3.0
 At row:153, column:199,the value of plot_t1 is           : 2.0753768844221105
 At row:153, column:199,the value of plot_cost is         : 29.06711500791827 

 At row:154, column:0,the value of plot_t0 is           : -1.0
 At row:154, column:0,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:0,the value of plot_cost is         : 5.533857622643009 

 At row:154, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:154, column:1,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:1,the value of plot_cost is         : 5.576272135985024 

 At row:154, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:154, column:2,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:2,the value of plot_cost is         : 5.619494709729553 

 At row:154, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:154, column:3,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:3,the value of plot_cost is         : 5.663525343876602 

 At row:154, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:154, column:4,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:4,the value of plot_cost is         : 5.708364038426162 

 At row:154, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:154, column:5,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:5,the value of plot_cost is         : 5.754010793378236 

 At row:154, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:154, column:6,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:6,the value of plot_cost is         : 5.800465608732825 

 At row:154, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:154, column:7,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:7,the value of plot_cost is         : 5.847728484489931 

 At row:154, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:154, column:8,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:8,the value of plot_cost is         : 5.8957994206495545 

 At row:154, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:154, column:9,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:9,the value of plot_cost is         : 5.944678417211691 

 At row:154, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:154, column:10,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:10,the value of plot_cost is         : 5.994365474176341 

 At row:154, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:154, column:11,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:11,the value of plot_cost is         : 6.044860591543506 

 At row:154, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:154, column:12,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:12,the value of plot_cost is         : 6.096163769313187 

 At row:154, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:154, column:13,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:13,the value of plot_cost is         : 6.148275007485385 

 At row:154, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:154, column:14,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:14,the value of plot_cost is         : 6.2011943060600965 

 At row:154, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:154, column:15,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:15,the value of plot_cost is         : 6.254921665037321 

 At row:154, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:154, column:16,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:16,the value of plot_cost is         : 6.309457084417064 

 At row:154, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:154, column:17,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:17,the value of plot_cost is         : 6.364800564199318 

 At row:154, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:154, column:18,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:18,the value of plot_cost is         : 6.420952104384092 

 At row:154, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:154, column:19,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:19,the value of plot_cost is         : 6.47791170497138 

 At row:154, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:154, column:20,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:20,the value of plot_cost is         : 6.5356793659611805 

 At row:154, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:154, column:21,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:21,the value of plot_cost is         : 6.594255087353496 

 At row:154, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:154, column:22,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:22,the value of plot_cost is         : 6.653638869148327 

 At row:154, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:154, column:23,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:23,the value of plot_cost is         : 6.713830711345676 

 At row:154, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:154, column:24,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:24,the value of plot_cost is         : 6.774830613945539 

 At row:154, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:154, column:25,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:25,the value of plot_cost is         : 6.836638576947915 

 At row:154, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:154, column:26,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:26,the value of plot_cost is         : 6.8992546003528075 

 At row:154, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:154, column:27,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:27,the value of plot_cost is         : 6.962678684160213 

 At row:154, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:154, column:28,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:28,the value of plot_cost is         : 7.026910828370139 

 At row:154, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:154, column:29,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:29,the value of plot_cost is         : 7.091951032982576 

 At row:154, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:154, column:30,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:30,the value of plot_cost is         : 7.157799297997528 

 At row:154, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:154, column:31,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:31,the value of plot_cost is         : 7.224455623414994 

 At row:154, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:154, column:32,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:32,the value of plot_cost is         : 7.2919200092349765 

 At row:154, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:154, column:33,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:33,the value of plot_cost is         : 7.360192455457479 

 At row:154, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:154, column:34,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:34,the value of plot_cost is         : 7.42927296208249 

 At row:154, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:154, column:35,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:35,the value of plot_cost is         : 7.499161529110017 

 At row:154, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:154, column:36,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:36,the value of plot_cost is         : 7.569858156540062 

 At row:154, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:154, column:37,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:37,the value of plot_cost is         : 7.641362844372617 

 At row:154, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:154, column:38,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:38,the value of plot_cost is         : 7.713675592607695 

 At row:154, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:154, column:39,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:39,the value of plot_cost is         : 7.786796401245283 

 At row:154, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:154, column:40,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:40,the value of plot_cost is         : 7.860725270285386 

 At row:154, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:154, column:41,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:41,the value of plot_cost is         : 7.935462199728003 

 At row:154, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:154, column:42,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:42,the value of plot_cost is         : 8.011007189573137 

 At row:154, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:154, column:43,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:43,the value of plot_cost is         : 8.087360239820788 

 At row:154, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:154, column:44,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:44,the value of plot_cost is         : 8.16452135047095 

 At row:154, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:154, column:45,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:45,the value of plot_cost is         : 8.24249052152363 

 At row:154, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:154, column:46,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:46,the value of plot_cost is         : 8.321267752978825 

 At row:154, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:154, column:47,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:47,the value of plot_cost is         : 8.40085304483653 

 At row:154, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:154, column:48,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:48,the value of plot_cost is         : 8.481246397096758 

 At row:154, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:154, column:49,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:49,the value of plot_cost is         : 8.562447809759497 

 At row:154, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:154, column:50,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:50,the value of plot_cost is         : 8.644457282824751 

 At row:154, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:154, column:51,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:51,the value of plot_cost is         : 8.727274816292521 

 At row:154, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:154, column:52,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:52,the value of plot_cost is         : 8.810900410162803 

 At row:154, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:154, column:53,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:53,the value of plot_cost is         : 8.895334064435607 

 At row:154, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:154, column:54,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:54,the value of plot_cost is         : 8.980575779110922 

 At row:154, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:154, column:55,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:55,the value of plot_cost is         : 9.066625554188748 

 At row:154, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:154, column:56,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:56,the value of plot_cost is         : 9.153483389669095 

 At row:154, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:154, column:57,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:57,the value of plot_cost is         : 9.241149285551959 

 At row:154, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:154, column:58,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:58,the value of plot_cost is         : 9.329623241837332 

 At row:154, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:154, column:59,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:59,the value of plot_cost is         : 9.418905258525221 

 At row:154, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:154, column:60,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:60,the value of plot_cost is         : 9.508995335615625 

 At row:154, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:154, column:61,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:61,the value of plot_cost is         : 9.599893473108544 

 At row:154, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:154, column:62,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:62,the value of plot_cost is         : 9.69159967100398 

 At row:154, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:154, column:63,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:63,the value of plot_cost is         : 9.784113929301936 

 At row:154, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:154, column:64,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:64,the value of plot_cost is         : 9.8774362480024 

 At row:154, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:154, column:65,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:65,the value of plot_cost is         : 9.971566627105378 

 At row:154, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:154, column:66,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:66,the value of plot_cost is         : 10.066505066610874 

 At row:154, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:154, column:67,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:67,the value of plot_cost is         : 10.16225156651889 

 At row:154, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:154, column:68,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:68,the value of plot_cost is         : 10.258806126829414 

 At row:154, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:154, column:69,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:69,the value of plot_cost is         : 10.356168747542455 

 At row:154, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:154, column:70,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:70,the value of plot_cost is         : 10.454339428658008 

 At row:154, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:154, column:71,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:71,the value of plot_cost is         : 10.553318170176079 

 At row:154, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:154, column:72,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:72,the value of plot_cost is         : 10.653104972096664 

 At row:154, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:154, column:73,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:73,the value of plot_cost is         : 10.75369983441977 

 At row:154, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:154, column:74,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:74,the value of plot_cost is         : 10.855102757145387 

 At row:154, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:154, column:75,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:75,the value of plot_cost is         : 10.957313740273515 

 At row:154, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:154, column:76,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:76,the value of plot_cost is         : 11.060332783804162 

 At row:154, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:154, column:77,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:77,the value of plot_cost is         : 11.164159887737329 

 At row:154, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:154, column:78,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:78,the value of plot_cost is         : 11.268795052073004 

 At row:154, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:154, column:79,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:79,the value of plot_cost is         : 11.374238276811196 

 At row:154, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:154, column:80,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:80,the value of plot_cost is         : 11.4804895619519 

 At row:154, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:154, column:81,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:81,the value of plot_cost is         : 11.587548907495123 

 At row:154, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:154, column:82,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:82,the value of plot_cost is         : 11.695416313440859 

 At row:154, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:154, column:83,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:83,the value of plot_cost is         : 11.804091779789115 

 At row:154, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:154, column:84,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:84,the value of plot_cost is         : 11.913575306539883 

 At row:154, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:154, column:85,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:85,the value of plot_cost is         : 12.023866893693162 

 At row:154, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:154, column:86,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:86,the value of plot_cost is         : 12.13496654124896 

 At row:154, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:154, column:87,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:87,the value of plot_cost is         : 12.246874249207275 

 At row:154, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:154, column:88,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:88,the value of plot_cost is         : 12.359590017568104 

 At row:154, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:154, column:89,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:89,the value of plot_cost is         : 12.473113846331447 

 At row:154, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:154, column:90,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:90,the value of plot_cost is         : 12.587445735497303 

 At row:154, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:154, column:91,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:91,the value of plot_cost is         : 12.702585685065676 

 At row:154, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:154, column:92,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:92,the value of plot_cost is         : 12.818533695036564 

 At row:154, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:154, column:93,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:93,the value of plot_cost is         : 12.935289765409967 

 At row:154, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:154, column:94,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:94,the value of plot_cost is         : 13.052853896185885 

 At row:154, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:154, column:95,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:95,the value of plot_cost is         : 13.17122608736432 

 At row:154, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:154, column:96,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:96,the value of plot_cost is         : 13.290406338945266 

 At row:154, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:154, column:97,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:97,the value of plot_cost is         : 13.410394650928733 

 At row:154, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:154, column:98,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:98,the value of plot_cost is         : 13.531191023314712 

 At row:154, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:154, column:99,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:99,the value of plot_cost is         : 13.652795456103206 

 At row:154, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:154, column:100,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:100,the value of plot_cost is         : 13.775207949294213 

 At row:154, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:154, column:101,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:101,the value of plot_cost is         : 13.898428502887734 

 At row:154, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:154, column:102,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:102,the value of plot_cost is         : 14.022457116883771 

 At row:154, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:154, column:103,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:103,the value of plot_cost is         : 14.147293791282332 

 At row:154, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:154, column:104,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:104,the value of plot_cost is         : 14.272938526083399 

 At row:154, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:154, column:105,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:105,the value of plot_cost is         : 14.39939132128698 

 At row:154, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:154, column:106,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:106,the value of plot_cost is         : 14.526652176893082 

 At row:154, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:154, column:107,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:107,the value of plot_cost is         : 14.6547210929017 

 At row:154, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:154, column:108,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:108,the value of plot_cost is         : 14.78359806931283 

 At row:154, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:154, column:109,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:109,the value of plot_cost is         : 14.913283106126475 

 At row:154, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:154, column:110,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:110,the value of plot_cost is         : 15.043776203342633 

 At row:154, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:154, column:111,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:111,the value of plot_cost is         : 15.175077360961303 

 At row:154, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:154, column:112,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:112,the value of plot_cost is         : 15.307186578982492 

 At row:154, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:154, column:113,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:113,the value of plot_cost is         : 15.440103857406204 

 At row:154, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:154, column:114,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:114,the value of plot_cost is         : 15.573829196232424 

 At row:154, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:154, column:115,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:115,the value of plot_cost is         : 15.708362595461157 

 At row:154, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:154, column:116,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:116,the value of plot_cost is         : 15.843704055092408 

 At row:154, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:154, column:117,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:117,the value of plot_cost is         : 15.979853575126176 

 At row:154, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:154, column:118,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:118,the value of plot_cost is         : 16.116811155562456 

 At row:154, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:154, column:119,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:119,the value of plot_cost is         : 16.25457679640125 

 At row:154, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:154, column:120,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:120,the value of plot_cost is         : 16.39315049764256 

 At row:154, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:154, column:121,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:121,the value of plot_cost is         : 16.532532259286384 

 At row:154, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:154, column:122,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:122,the value of plot_cost is         : 16.672722081332722 

 At row:154, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:154, column:123,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:123,the value of plot_cost is         : 16.813719963781583 

 At row:154, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:154, column:124,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:124,the value of plot_cost is         : 16.955525906632953 

 At row:154, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:154, column:125,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:125,the value of plot_cost is         : 17.09813990988684 

 At row:154, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:154, column:126,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:126,the value of plot_cost is         : 17.241561973543238 

 At row:154, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:154, column:127,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:127,the value of plot_cost is         : 17.38579209760216 

 At row:154, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:154, column:128,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:128,the value of plot_cost is         : 17.53083028206359 

 At row:154, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:154, column:129,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:129,the value of plot_cost is         : 17.676676526927533 

 At row:154, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:154, column:130,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:130,the value of plot_cost is         : 17.823330832193996 

 At row:154, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:154, column:131,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:131,the value of plot_cost is         : 17.97079319786297 

 At row:154, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:154, column:132,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:132,the value of plot_cost is         : 18.119063623934462 

 At row:154, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:154, column:133,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:133,the value of plot_cost is         : 18.26814211040847 

 At row:154, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:154, column:134,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:134,the value of plot_cost is         : 18.418028657284992 

 At row:154, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:154, column:135,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:135,the value of plot_cost is         : 18.568723264564028 

 At row:154, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:154, column:136,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:136,the value of plot_cost is         : 18.720225932245576 

 At row:154, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:154, column:137,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:137,the value of plot_cost is         : 18.872536660329654 

 At row:154, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:154, column:138,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:138,the value of plot_cost is         : 19.02565544881623 

 At row:154, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:154, column:139,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:139,the value of plot_cost is         : 19.179582297705327 

 At row:154, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:154, column:140,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:140,the value of plot_cost is         : 19.33431720699694 

 At row:154, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:154, column:141,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:141,the value of plot_cost is         : 19.489860176691067 

 At row:154, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:154, column:142,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:142,the value of plot_cost is         : 19.646211206787708 

 At row:154, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:154, column:143,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:143,the value of plot_cost is         : 19.80337029728687 

 At row:154, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:154, column:144,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:144,the value of plot_cost is         : 19.961337448188544 

 At row:154, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:154, column:145,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:145,the value of plot_cost is         : 20.12011265949273 

 At row:154, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:154, column:146,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:146,the value of plot_cost is         : 20.27969593119943 

 At row:154, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:154, column:147,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:147,the value of plot_cost is         : 20.44008726330865 

 At row:154, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:154, column:148,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:148,the value of plot_cost is         : 20.601286655820388 

 At row:154, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:154, column:149,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:149,the value of plot_cost is         : 20.763294108734627 

 At row:154, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:154, column:150,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:150,the value of plot_cost is         : 20.926109622051396 

 At row:154, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:154, column:151,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:151,the value of plot_cost is         : 21.089733195770673 

 At row:154, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:154, column:152,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:152,the value of plot_cost is         : 21.254164829892463 

 At row:154, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:154, column:153,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:153,the value of plot_cost is         : 21.419404524416773 

 At row:154, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:154, column:154,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:154,the value of plot_cost is         : 21.5854522793436 

 At row:154, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:154, column:155,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:155,the value of plot_cost is         : 21.75230809467294 

 At row:154, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:154, column:156,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:156,the value of plot_cost is         : 21.9199719704048 

 At row:154, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:154, column:157,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:157,the value of plot_cost is         : 22.088443906539165 

 At row:154, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:154, column:158,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:158,the value of plot_cost is         : 22.257723903076045 

 At row:154, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:154, column:159,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:159,the value of plot_cost is         : 22.427811960015443 

 At row:154, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:154, column:160,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:160,the value of plot_cost is         : 22.598708077357358 

 At row:154, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:154, column:161,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:161,the value of plot_cost is         : 22.770412255101785 

 At row:154, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:154, column:162,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:162,the value of plot_cost is         : 22.942924493248725 

 At row:154, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:154, column:163,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:163,the value of plot_cost is         : 23.116244791798188 

 At row:154, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:154, column:164,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:164,the value of plot_cost is         : 23.290373150750163 

 At row:154, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:154, column:165,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:165,the value of plot_cost is         : 23.465309570104655 

 At row:154, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:154, column:166,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:166,the value of plot_cost is         : 23.641054049861665 

 At row:154, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:154, column:167,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:167,the value of plot_cost is         : 23.81760659002118 

 At row:154, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:154, column:168,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:168,the value of plot_cost is         : 23.994967190583214 

 At row:154, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:154, column:169,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:169,the value of plot_cost is         : 24.173135851547762 

 At row:154, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:154, column:170,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:170,the value of plot_cost is         : 24.35211257291483 

 At row:154, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:154, column:171,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:171,the value of plot_cost is         : 24.531897354684407 

 At row:154, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:154, column:172,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:172,the value of plot_cost is         : 24.7124901968565 

 At row:154, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:154, column:173,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:173,the value of plot_cost is         : 24.89389109943111 

 At row:154, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:154, column:174,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:174,the value of plot_cost is         : 25.076100062408237 

 At row:154, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:154, column:175,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:175,the value of plot_cost is         : 25.259117085787885 

 At row:154, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:154, column:176,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:176,the value of plot_cost is         : 25.44294216957004 

 At row:154, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:154, column:177,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:177,the value of plot_cost is         : 25.627575313754708 

 At row:154, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:154, column:178,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:178,the value of plot_cost is         : 25.813016518341897 

 At row:154, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:154, column:179,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:179,the value of plot_cost is         : 25.999265783331587 

 At row:154, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:154, column:180,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:180,the value of plot_cost is         : 26.186323108723812 

 At row:154, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:154, column:181,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:181,the value of plot_cost is         : 26.37418849451854 

 At row:154, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:154, column:182,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:182,the value of plot_cost is         : 26.562861940715784 

 At row:154, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:154, column:183,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:183,the value of plot_cost is         : 26.75234344731554 

 At row:154, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:154, column:184,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:184,the value of plot_cost is         : 26.942633014317828 

 At row:154, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:154, column:185,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:185,the value of plot_cost is         : 27.13373064172262 

 At row:154, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:154, column:186,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:186,the value of plot_cost is         : 27.325636329529928 

 At row:154, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:154, column:187,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:187,the value of plot_cost is         : 27.51835007773975 

 At row:154, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:154, column:188,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:188,the value of plot_cost is         : 27.71187188635208 

 At row:154, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:154, column:189,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:189,the value of plot_cost is         : 27.90620175536693 

 At row:154, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:154, column:190,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:190,the value of plot_cost is         : 28.101339684784296 

 At row:154, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:154, column:191,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:191,the value of plot_cost is         : 28.297285674604176 

 At row:154, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:154, column:192,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:192,the value of plot_cost is         : 28.49403972482657 

 At row:154, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:154, column:193,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:193,the value of plot_cost is         : 28.691601835451486 

 At row:154, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:154, column:194,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:194,the value of plot_cost is         : 28.889972006478914 

 At row:154, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:154, column:195,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:195,the value of plot_cost is         : 29.08915023790886 

 At row:154, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:154, column:196,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:196,the value of plot_cost is         : 29.28913652974132 

 At row:154, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:154, column:197,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:197,the value of plot_cost is         : 29.489930881976296 

 At row:154, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:154, column:198,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:198,the value of plot_cost is         : 29.691533294613777 

 At row:154, column:199,the value of plot_t0 is           : 3.0
 At row:154, column:199,the value of plot_t1 is           : 2.0954773869346734
 At row:154, column:199,the value of plot_cost is         : 29.893943767653774 

 At row:155, column:0,the value of plot_t0 is           : -1.0
 At row:155, column:0,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:0,the value of plot_cost is         : 5.84031857059887 

 At row:155, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:155, column:1,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:1,the value of plot_cost is         : 5.88541122698922 

 At row:155, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:155, column:2,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:2,the value of plot_cost is         : 5.931311943782086 

 At row:155, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:155, column:3,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:3,the value of plot_cost is         : 5.978020720977469 

 At row:155, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:155, column:4,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:4,the value of plot_cost is         : 6.025537558575366 

 At row:155, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:155, column:5,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:5,the value of plot_cost is         : 6.0738624565757755 

 At row:155, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:155, column:6,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:6,the value of plot_cost is         : 6.122995414978701 

 At row:155, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:155, column:7,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:7,the value of plot_cost is         : 6.172936433784142 

 At row:155, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:155, column:8,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:8,the value of plot_cost is         : 6.223685512992101 

 At row:155, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:155, column:9,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:9,the value of plot_cost is         : 6.275242652602572 

 At row:155, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:155, column:10,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:10,the value of plot_cost is         : 6.327607852615559 

 At row:155, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:155, column:11,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:11,the value of plot_cost is         : 6.380781113031059 

 At row:155, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:155, column:12,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:12,the value of plot_cost is         : 6.434762433849076 

 At row:155, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:155, column:13,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:13,the value of plot_cost is         : 6.4895518150696105 

 At row:155, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:155, column:14,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:14,the value of plot_cost is         : 6.545149256692657 

 At row:155, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:155, column:15,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:15,the value of plot_cost is         : 6.601554758718218 

 At row:155, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:155, column:16,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:16,the value of plot_cost is         : 6.658768321146295 

 At row:155, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:155, column:17,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:17,the value of plot_cost is         : 6.716789943976887 

 At row:155, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:155, column:18,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:18,the value of plot_cost is         : 6.775619627209996 

 At row:155, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:155, column:19,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:19,the value of plot_cost is         : 6.8352573708456195 

 At row:155, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:155, column:20,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:20,the value of plot_cost is         : 6.895703174883755 

 At row:155, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:155, column:21,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:21,the value of plot_cost is         : 6.956957039324408 

 At row:155, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:155, column:22,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:22,the value of plot_cost is         : 7.019018964167573 

 At row:155, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:155, column:23,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:23,the value of plot_cost is         : 7.08188894941326 

 At row:155, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:155, column:24,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:24,the value of plot_cost is         : 7.145566995061458 

 At row:155, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:155, column:25,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:25,the value of plot_cost is         : 7.21005310111217 

 At row:155, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:155, column:26,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:26,the value of plot_cost is         : 7.2753472675653965 

 At row:155, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:155, column:27,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:27,the value of plot_cost is         : 7.341449494421139 

 At row:155, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:155, column:28,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:28,the value of plot_cost is         : 7.408359781679402 

 At row:155, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:155, column:29,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:29,the value of plot_cost is         : 7.476078129340174 

 At row:155, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:155, column:30,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:30,the value of plot_cost is         : 7.544604537403461 

 At row:155, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:155, column:31,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:31,the value of plot_cost is         : 7.6139390058692635 

 At row:155, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:155, column:32,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:32,the value of plot_cost is         : 7.684081534737581 

 At row:155, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:155, column:33,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:33,the value of plot_cost is         : 7.755032124008419 

 At row:155, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:155, column:34,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:34,the value of plot_cost is         : 7.826790773681767 

 At row:155, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:155, column:35,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:35,the value of plot_cost is         : 7.89935748375763 

 At row:155, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:155, column:36,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:36,the value of plot_cost is         : 7.972732254236007 

 At row:155, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:155, column:37,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:37,the value of plot_cost is         : 8.0469150851169 

 At row:155, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:155, column:38,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:38,the value of plot_cost is         : 8.121905976400313 

 At row:155, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:155, column:39,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:39,the value of plot_cost is         : 8.197704928086237 

 At row:155, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:155, column:40,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:40,the value of plot_cost is         : 8.274311940174675 

 At row:155, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:155, column:41,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:41,the value of plot_cost is         : 8.351727012665627 

 At row:155, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:155, column:42,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:42,the value of plot_cost is         : 8.429950145559097 

 At row:155, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:155, column:43,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:43,the value of plot_cost is         : 8.508981338855085 

 At row:155, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:155, column:44,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:44,the value of plot_cost is         : 8.588820592553585 

 At row:155, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:155, column:45,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:45,the value of plot_cost is         : 8.669467906654598 

 At row:155, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:155, column:46,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:46,the value of plot_cost is         : 8.750923281158128 

 At row:155, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:155, column:47,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:47,the value of plot_cost is         : 8.833186716064171 

 At row:155, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:155, column:48,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:48,the value of plot_cost is         : 8.916258211372735 

 At row:155, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:155, column:49,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:49,the value of plot_cost is         : 9.000137767083809 

 At row:155, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:155, column:50,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:50,the value of plot_cost is         : 9.0848253831974 

 At row:155, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:155, column:51,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:51,the value of plot_cost is         : 9.170321059713503 

 At row:155, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:155, column:52,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:52,the value of plot_cost is         : 9.256624796632126 

 At row:155, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:155, column:53,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:53,the value of plot_cost is         : 9.343736593953262 

 At row:155, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:155, column:54,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:54,the value of plot_cost is         : 9.431656451676913 

 At row:155, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:155, column:55,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:55,the value of plot_cost is         : 9.520384369803075 

 At row:155, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:155, column:56,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:56,the value of plot_cost is         : 9.609920348331755 

 At row:155, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:155, column:57,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:57,the value of plot_cost is         : 9.700264387262953 

 At row:155, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:155, column:58,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:58,the value of plot_cost is         : 9.791416486596665 

 At row:155, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:155, column:59,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:59,the value of plot_cost is         : 9.883376646332891 

 At row:155, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:155, column:60,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:60,the value of plot_cost is         : 9.976144866471632 

 At row:155, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:155, column:61,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:61,the value of plot_cost is         : 10.069721147012887 

 At row:155, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:155, column:62,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:62,the value of plot_cost is         : 10.164105487956661 

 At row:155, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:155, column:63,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:63,the value of plot_cost is         : 10.259297889302948 

 At row:155, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:155, column:64,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:64,the value of plot_cost is         : 10.355298351051747 

 At row:155, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:155, column:65,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:65,the value of plot_cost is         : 10.452106873203064 

 At row:155, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:155, column:66,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:66,the value of plot_cost is         : 10.549723455756894 

 At row:155, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:155, column:67,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:67,the value of plot_cost is         : 10.648148098713241 

 At row:155, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:155, column:68,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:68,the value of plot_cost is         : 10.747380802072104 

 At row:155, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:155, column:69,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:69,the value of plot_cost is         : 10.84742156583348 

 At row:155, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:155, column:70,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:70,the value of plot_cost is         : 10.94827038999737 

 At row:155, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:155, column:71,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:71,the value of plot_cost is         : 11.049927274563776 

 At row:155, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:155, column:72,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:72,the value of plot_cost is         : 11.152392219532702 

 At row:155, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:155, column:73,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:73,the value of plot_cost is         : 11.25566522490414 

 At row:155, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:155, column:74,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:74,the value of plot_cost is         : 11.359746290678093 

 At row:155, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:155, column:75,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:75,the value of plot_cost is         : 11.464635416854557 

 At row:155, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:155, column:76,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:76,the value of plot_cost is         : 11.570332603433537 

 At row:155, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:155, column:77,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:77,the value of plot_cost is         : 11.676837850415035 

 At row:155, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:155, column:78,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:78,the value of plot_cost is         : 11.784151157799055 

 At row:155, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:155, column:79,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:79,the value of plot_cost is         : 11.892272525585582 

 At row:155, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:155, column:80,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:80,the value of plot_cost is         : 12.00120195377462 

 At row:155, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:155, column:81,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:81,the value of plot_cost is         : 12.110939442366178 

 At row:155, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:155, column:82,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:82,the value of plot_cost is         : 12.221484991360256 

 At row:155, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:155, column:83,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:83,the value of plot_cost is         : 12.332838600756844 

 At row:155, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:155, column:84,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:84,the value of plot_cost is         : 12.445000270555944 

 At row:155, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:155, column:85,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:85,the value of plot_cost is         : 12.557970000757564 

 At row:155, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:155, column:86,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:86,the value of plot_cost is         : 12.67174779136169 

 At row:155, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:155, column:87,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:87,the value of plot_cost is         : 12.786333642368342 

 At row:155, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:155, column:88,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:88,the value of plot_cost is         : 12.901727553777512 

 At row:155, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:155, column:89,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:89,the value of plot_cost is         : 13.017929525589189 

 At row:155, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:155, column:90,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:90,the value of plot_cost is         : 13.13493955780338 

 At row:155, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:155, column:91,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:91,the value of plot_cost is         : 13.252757650420087 

 At row:155, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:155, column:92,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:92,the value of plot_cost is         : 13.371383803439317 

 At row:155, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:155, column:93,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:93,the value of plot_cost is         : 13.490818016861056 

 At row:155, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:155, column:94,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:94,the value of plot_cost is         : 13.611060290685307 

 At row:155, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:155, column:95,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:95,the value of plot_cost is         : 13.732110624912073 

 At row:155, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:155, column:96,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:96,the value of plot_cost is         : 13.853969019541356 

 At row:155, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:155, column:97,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:97,the value of plot_cost is         : 13.976635474573158 

 At row:155, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:155, column:98,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:98,the value of plot_cost is         : 14.100109990007475 

 At row:155, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:155, column:99,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:99,the value of plot_cost is         : 14.224392565844303 

 At row:155, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:155, column:100,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:100,the value of plot_cost is         : 14.349483202083647 

 At row:155, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:155, column:101,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:101,the value of plot_cost is         : 14.475381898725503 

 At row:155, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:155, column:102,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:102,the value of plot_cost is         : 14.602088655769883 

 At row:155, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:155, column:103,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:103,the value of plot_cost is         : 14.729603473216775 

 At row:155, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:155, column:104,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:104,the value of plot_cost is         : 14.857926351066178 

 At row:155, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:155, column:105,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:105,the value of plot_cost is         : 14.987057289318095 

 At row:155, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:155, column:106,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:106,the value of plot_cost is         : 15.11699628797253 

 At row:155, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:155, column:107,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:107,the value of plot_cost is         : 15.247743347029479 

 At row:155, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:155, column:108,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:108,the value of plot_cost is         : 15.379298466488951 

 At row:155, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:155, column:109,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:109,the value of plot_cost is         : 15.51166164635093 

 At row:155, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:155, column:110,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:110,the value of plot_cost is         : 15.644832886615424 

 At row:155, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:155, column:111,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:111,the value of plot_cost is         : 15.77881218728243 

 At row:155, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:155, column:112,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:112,the value of plot_cost is         : 15.91359954835196 

 At row:155, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:155, column:113,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:113,the value of plot_cost is         : 16.049194969824004 

 At row:155, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:155, column:114,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:114,the value of plot_cost is         : 16.185598451698556 

 At row:155, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:155, column:115,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:115,the value of plot_cost is         : 16.32280999397563 

 At row:155, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:155, column:116,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:116,the value of plot_cost is         : 16.46082959665521 

 At row:155, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:155, column:117,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:117,the value of plot_cost is         : 16.599657259737313 

 At row:155, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:155, column:118,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:118,the value of plot_cost is         : 16.739292983221937 

 At row:155, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:155, column:119,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:119,the value of plot_cost is         : 16.879736767109062 

 At row:155, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:155, column:120,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:120,the value of plot_cost is         : 17.020988611398707 

 At row:155, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:155, column:121,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:121,the value of plot_cost is         : 17.163048516090868 

 At row:155, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:155, column:122,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:122,the value of plot_cost is         : 17.305916481185548 

 At row:155, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:155, column:123,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:123,the value of plot_cost is         : 17.44959250668274 

 At row:155, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:155, column:124,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:124,the value of plot_cost is         : 17.594076592582446 

 At row:155, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:155, column:125,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:125,the value of plot_cost is         : 17.739368738884664 

 At row:155, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:155, column:126,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:126,the value of plot_cost is         : 17.8854689455894 

 At row:155, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:155, column:127,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:127,the value of plot_cost is         : 18.032377212696655 

 At row:155, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:155, column:128,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:128,the value of plot_cost is         : 18.18009354020643 

 At row:155, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:155, column:129,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:129,the value of plot_cost is         : 18.328617928118703 

 At row:155, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:155, column:130,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:130,the value of plot_cost is         : 18.4779503764335 

 At row:155, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:155, column:131,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:131,the value of plot_cost is         : 18.62809088515081 

 At row:155, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:155, column:132,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:132,the value of plot_cost is         : 18.77903945427064 

 At row:155, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:155, column:133,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:133,the value of plot_cost is         : 18.930796083792988 

 At row:155, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:155, column:134,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:134,the value of plot_cost is         : 19.083360773717843 

 At row:155, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:155, column:135,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:135,the value of plot_cost is         : 19.236733524045214 

 At row:155, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:155, column:136,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:136,the value of plot_cost is         : 19.390914334775097 

 At row:155, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:155, column:137,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:137,the value of plot_cost is         : 19.545903205907507 

 At row:155, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:155, column:138,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:138,the value of plot_cost is         : 19.70170013744243 

 At row:155, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:155, column:139,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:139,the value of plot_cost is         : 19.858305129379858 

 At row:155, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:155, column:140,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:140,the value of plot_cost is         : 20.0157181817198 

 At row:155, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:155, column:141,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:141,the value of plot_cost is         : 20.173939294462265 

 At row:155, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:155, column:142,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:142,the value of plot_cost is         : 20.332968467607245 

 At row:155, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:155, column:143,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:143,the value of plot_cost is         : 20.492805701154744 

 At row:155, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:155, column:144,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:144,the value of plot_cost is         : 20.653450995104752 

 At row:155, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:155, column:145,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:145,the value of plot_cost is         : 20.81490434945727 

 At row:155, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:155, column:146,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:146,the value of plot_cost is         : 20.977165764212305 

 At row:155, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:155, column:147,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:147,the value of plot_cost is         : 21.14023523936986 

 At row:155, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:155, column:148,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:148,the value of plot_cost is         : 21.304112774929937 

 At row:155, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:155, column:149,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:149,the value of plot_cost is         : 21.468798370892515 

 At row:155, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:155, column:150,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:150,the value of plot_cost is         : 21.634292027257615 

 At row:155, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:155, column:151,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:151,the value of plot_cost is         : 21.80059374402523 

 At row:155, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:155, column:152,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:152,the value of plot_cost is         : 21.967703521195357 

 At row:155, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:155, column:153,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:153,the value of plot_cost is         : 22.135621358768006 

 At row:155, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:155, column:154,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:154,the value of plot_cost is         : 22.304347256743167 

 At row:155, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:155, column:155,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:155,the value of plot_cost is         : 22.473881215120837 

 At row:155, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:155, column:156,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:156,the value of plot_cost is         : 22.64422323390103 

 At row:155, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:155, column:157,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:157,the value of plot_cost is         : 22.81537331308373 

 At row:155, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:155, column:158,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:158,the value of plot_cost is         : 22.987331452668954 

 At row:155, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:155, column:159,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:159,the value of plot_cost is         : 23.160097652656685 

 At row:155, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:155, column:160,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:160,the value of plot_cost is         : 23.33367191304693 

 At row:155, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:155, column:161,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:161,the value of plot_cost is         : 23.5080542338397 

 At row:155, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:155, column:162,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:162,the value of plot_cost is         : 23.68324461503498 

 At row:155, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:155, column:163,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:163,the value of plot_cost is         : 23.85924305663278 

 At row:155, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:155, column:164,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:164,the value of plot_cost is         : 24.036049558633085 

 At row:155, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:155, column:165,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:165,the value of plot_cost is         : 24.213664121035908 

 At row:155, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:155, column:166,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:166,the value of plot_cost is         : 24.392086743841254 

 At row:155, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:155, column:167,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:167,the value of plot_cost is         : 24.57131742704911 

 At row:155, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:155, column:168,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:168,the value of plot_cost is         : 24.751356170659477 

 At row:155, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:155, column:169,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:169,the value of plot_cost is         : 24.93220297467236 

 At row:155, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:155, column:170,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:170,the value of plot_cost is         : 25.113857839087768 

 At row:155, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:155, column:171,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:171,the value of plot_cost is         : 25.296320763905683 

 At row:155, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:155, column:172,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:172,the value of plot_cost is         : 25.479591749126108 

 At row:155, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:155, column:173,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:173,the value of plot_cost is         : 25.66367079474906 

 At row:155, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:155, column:174,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:174,the value of plot_cost is         : 25.848557900774516 

 At row:155, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:155, column:175,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:175,the value of plot_cost is         : 26.034253067202492 

 At row:155, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:155, column:176,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:176,the value of plot_cost is         : 26.220756294032988 

 At row:155, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:155, column:177,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:177,the value of plot_cost is         : 26.40806758126599 

 At row:155, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:155, column:178,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:178,the value of plot_cost is         : 26.59618692890151 

 At row:155, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:155, column:179,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:179,the value of plot_cost is         : 26.785114336939557 

 At row:155, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:155, column:180,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:180,the value of plot_cost is         : 26.974849805380106 

 At row:155, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:155, column:181,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:181,the value of plot_cost is         : 27.165393334223168 

 At row:155, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:155, column:182,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:182,the value of plot_cost is         : 27.35674492346875 

 At row:155, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:155, column:183,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:183,the value of plot_cost is         : 27.54890457311685 

 At row:155, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:155, column:184,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:184,the value of plot_cost is         : 27.741872283167464 

 At row:155, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:155, column:185,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:185,the value of plot_cost is         : 27.935648053620586 

 At row:155, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:155, column:186,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:186,the value of plot_cost is         : 28.130231884476228 

 At row:155, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:155, column:187,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:187,the value of plot_cost is         : 28.32562377573439 

 At row:155, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:155, column:188,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:188,the value of plot_cost is         : 28.521823727395063 

 At row:155, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:155, column:189,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:189,the value of plot_cost is         : 28.718831739458242 

 At row:155, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:155, column:190,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:190,the value of plot_cost is         : 28.91664781192395 

 At row:155, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:155, column:191,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:191,the value of plot_cost is         : 29.115271944792173 

 At row:155, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:155, column:192,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:192,the value of plot_cost is         : 29.3147041380629 

 At row:155, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:155, column:193,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:193,the value of plot_cost is         : 29.514944391736154 

 At row:155, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:155, column:194,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:194,the value of plot_cost is         : 29.715992705811914 

 At row:155, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:155, column:195,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:195,the value of plot_cost is         : 29.91784908029019 

 At row:155, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:155, column:196,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:196,the value of plot_cost is         : 30.120513515170984 

 At row:155, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:155, column:197,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:197,the value of plot_cost is         : 30.323986010454295 

 At row:155, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:155, column:198,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:198,the value of plot_cost is         : 30.528266566140115 

 At row:155, column:199,the value of plot_t0 is           : 3.0
 At row:155, column:199,the value of plot_t1 is           : 2.1155778894472363
 At row:155, column:199,the value of plot_cost is         : 30.733355182228454 

 At row:156, column:0,the value of plot_t0 is           : -1.0
 At row:156, column:0,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:0,the value of plot_cost is         : 6.1593621733938955 

 At row:156, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:156, column:1,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:1,the value of plot_cost is         : 6.207132972832582 

 At row:156, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:156, column:2,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:2,the value of plot_cost is         : 6.255711832673783 

 At row:156, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:156, column:3,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:3,the value of plot_cost is         : 6.305098752917502 

 At row:156, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:156, column:4,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:4,the value of plot_cost is         : 6.355293733563735 

 At row:156, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:156, column:5,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:5,the value of plot_cost is         : 6.406296774612479 

 At row:156, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:156, column:6,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:6,the value of plot_cost is         : 6.458107876063741 

 At row:156, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:156, column:7,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:7,the value of plot_cost is         : 6.510727037917519 

 At row:156, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:156, column:8,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:8,the value of plot_cost is         : 6.564154260173812 

 At row:156, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:156, column:9,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:9,the value of plot_cost is         : 6.61838954283262 

 At row:156, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:156, column:10,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:10,the value of plot_cost is         : 6.6734328858939405 

 At row:156, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:156, column:11,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:11,the value of plot_cost is         : 6.729284289357777 

 At row:156, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:156, column:12,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:12,the value of plot_cost is         : 6.785943753224129 

 At row:156, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:156, column:13,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:13,the value of plot_cost is         : 6.843411277493001 

 At row:156, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:156, column:14,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:14,the value of plot_cost is         : 6.901686862164383 

 At row:156, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:156, column:15,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:15,the value of plot_cost is         : 6.96077050723828 

 At row:156, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:156, column:16,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:16,the value of plot_cost is         : 7.020662212714692 

 At row:156, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:156, column:17,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:17,the value of plot_cost is         : 7.08136197859362 

 At row:156, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:156, column:18,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:18,the value of plot_cost is         : 7.142869804875065 

 At row:156, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:156, column:19,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:19,the value of plot_cost is         : 7.2051856915590236 

 At row:156, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:156, column:20,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:20,the value of plot_cost is         : 7.268309638645496 

 At row:156, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:156, column:21,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:21,the value of plot_cost is         : 7.332241646134483 

 At row:156, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:156, column:22,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:22,the value of plot_cost is         : 7.396981714025985 

 At row:156, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:156, column:23,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:23,the value of plot_cost is         : 7.462529842320007 

 At row:156, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:156, column:24,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:24,the value of plot_cost is         : 7.52888603101654 

 At row:156, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:156, column:25,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:25,the value of plot_cost is         : 7.5960502801155885 

 At row:156, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:156, column:26,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:26,the value of plot_cost is         : 7.664022589617151 

 At row:156, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:156, column:27,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:27,the value of plot_cost is         : 7.732802959521228 

 At row:156, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:156, column:28,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:28,the value of plot_cost is         : 7.802391389827827 

 At row:156, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:156, column:29,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:29,the value of plot_cost is         : 7.8727878805369365 

 At row:156, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:156, column:30,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:30,the value of plot_cost is         : 7.943992431648558 

 At row:156, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:156, column:31,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:31,the value of plot_cost is         : 8.016005043162696 

 At row:156, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:156, column:32,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:32,the value of plot_cost is         : 8.08882571507935 

 At row:156, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:156, column:33,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:33,the value of plot_cost is         : 8.162454447398522 

 At row:156, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:156, column:34,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:34,the value of plot_cost is         : 8.236891240120208 

 At row:156, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:156, column:35,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:35,the value of plot_cost is         : 8.312136093244407 

 At row:156, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:156, column:36,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:36,the value of plot_cost is         : 8.38818900677112 

 At row:156, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:156, column:37,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:37,the value of plot_cost is         : 8.465049980700348 

 At row:156, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:156, column:38,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:38,the value of plot_cost is         : 8.542719015032096 

 At row:156, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:156, column:39,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:39,the value of plot_cost is         : 8.621196109766357 

 At row:156, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:156, column:40,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:40,the value of plot_cost is         : 8.70048126490313 

 At row:156, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:156, column:41,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:41,the value of plot_cost is         : 8.780574480442418 

 At row:156, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:156, column:42,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:42,the value of plot_cost is         : 8.861475756384223 

 At row:156, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:156, column:43,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:43,the value of plot_cost is         : 8.943185092728548 

 At row:156, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:156, column:44,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:44,the value of plot_cost is         : 9.025702489475382 

 At row:156, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:156, column:45,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:45,the value of plot_cost is         : 9.109027946624733 

 At row:156, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:156, column:46,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:46,the value of plot_cost is         : 9.193161464176598 

 At row:156, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:156, column:47,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:47,the value of plot_cost is         : 9.278103042130978 

 At row:156, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:156, column:48,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:48,the value of plot_cost is         : 9.363852680487875 

 At row:156, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:156, column:49,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:49,the value of plot_cost is         : 9.450410379247286 

 At row:156, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:156, column:50,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:50,the value of plot_cost is         : 9.537776138409212 

 At row:156, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:156, column:51,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:51,the value of plot_cost is         : 9.625949957973651 

 At row:156, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:156, column:52,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:52,the value of plot_cost is         : 9.714931837940611 

 At row:156, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:156, column:53,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:53,the value of plot_cost is         : 9.80472177831008 

 At row:156, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:156, column:54,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:54,the value of plot_cost is         : 9.895319779082065 

 At row:156, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:156, column:55,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:55,the value of plot_cost is         : 9.986725840256566 

 At row:156, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:156, column:56,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:56,the value of plot_cost is         : 10.078939961833584 

 At row:156, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:156, column:57,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:57,the value of plot_cost is         : 10.171962143813113 

 At row:156, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:156, column:58,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:58,the value of plot_cost is         : 10.265792386195162 

 At row:156, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:156, column:59,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:59,the value of plot_cost is         : 10.360430688979724 

 At row:156, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:156, column:60,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:60,the value of plot_cost is         : 10.4558770521668 

 At row:156, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:156, column:61,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:61,the value of plot_cost is         : 10.55213147575639 

 At row:156, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:156, column:62,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:62,the value of plot_cost is         : 10.649193959748501 

 At row:156, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:156, column:63,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:63,the value of plot_cost is         : 10.747064504143124 

 At row:156, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:156, column:64,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:64,the value of plot_cost is         : 10.84574310894026 

 At row:156, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:156, column:65,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:65,the value of plot_cost is         : 10.94522977413991 

 At row:156, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:156, column:66,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:66,the value of plot_cost is         : 11.045524499742076 

 At row:156, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:156, column:67,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:67,the value of plot_cost is         : 11.14662728574676 

 At row:156, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:156, column:68,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:68,the value of plot_cost is         : 11.24853813215396 

 At row:156, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:156, column:69,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:69,the value of plot_cost is         : 11.351257038963674 

 At row:156, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:156, column:70,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:70,the value of plot_cost is         : 11.454784006175895 

 At row:156, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:156, column:71,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:71,the value of plot_cost is         : 11.55911903379064 

 At row:156, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:156, column:72,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:72,the value of plot_cost is         : 11.664262121807901 

 At row:156, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:156, column:73,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:73,the value of plot_cost is         : 11.770213270227673 

 At row:156, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:156, column:74,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:74,the value of plot_cost is         : 11.876972479049961 

 At row:156, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:156, column:75,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:75,the value of plot_cost is         : 11.984539748274763 

 At row:156, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:156, column:76,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:76,the value of plot_cost is         : 12.09291507790208 

 At row:156, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:156, column:77,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:77,the value of plot_cost is         : 12.202098467931913 

 At row:156, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:156, column:78,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:78,the value of plot_cost is         : 12.312089918364267 

 At row:156, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:156, column:79,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:79,the value of plot_cost is         : 12.422889429199127 

 At row:156, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:156, column:80,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:80,the value of plot_cost is         : 12.534497000436504 

 At row:156, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:156, column:81,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:81,the value of plot_cost is         : 12.646912632076397 

 At row:156, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:156, column:82,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:82,the value of plot_cost is         : 12.760136324118811 

 At row:156, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:156, column:83,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:83,the value of plot_cost is         : 12.874168076563736 

 At row:156, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:156, column:84,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:84,the value of plot_cost is         : 12.989007889411173 

 At row:156, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:156, column:85,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:85,the value of plot_cost is         : 13.104655762661125 

 At row:156, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:156, column:86,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:86,the value of plot_cost is         : 13.221111696313592 

 At row:156, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:156, column:87,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:87,the value of plot_cost is         : 13.338375690368576 

 At row:156, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:156, column:88,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:88,the value of plot_cost is         : 13.456447744826082 

 At row:156, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:156, column:89,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:89,the value of plot_cost is         : 13.575327859686093 

 At row:156, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:156, column:90,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:90,the value of plot_cost is         : 13.695016034948623 

 At row:156, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:156, column:91,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:91,the value of plot_cost is         : 13.815512270613663 

 At row:156, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:156, column:92,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:92,the value of plot_cost is         : 13.936816566681227 

 At row:156, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:156, column:93,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:93,the value of plot_cost is         : 14.058928923151305 

 At row:156, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:156, column:94,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:94,the value of plot_cost is         : 14.181849340023891 

 At row:156, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:156, column:95,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:95,the value of plot_cost is         : 14.305577817298996 

 At row:156, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:156, column:96,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:96,the value of plot_cost is         : 14.430114354976613 

 At row:156, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:156, column:97,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:97,the value of plot_cost is         : 14.555458953056748 

 At row:156, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:156, column:98,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:98,the value of plot_cost is         : 14.681611611539404 

 At row:156, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:156, column:99,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:99,the value of plot_cost is         : 14.808572330424568 

 At row:156, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:156, column:100,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:100,the value of plot_cost is         : 14.936341109712245 

 At row:156, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:156, column:101,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:101,the value of plot_cost is         : 15.064917949402439 

 At row:156, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:156, column:102,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:102,the value of plot_cost is         : 15.194302849495154 

 At row:156, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:156, column:103,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:103,the value of plot_cost is         : 15.324495809990381 

 At row:156, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:156, column:104,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:104,the value of plot_cost is         : 15.45549683088812 

 At row:156, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:156, column:105,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:105,the value of plot_cost is         : 15.587305912188373 

 At row:156, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:156, column:106,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:106,the value of plot_cost is         : 15.719923053891144 

 At row:156, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:156, column:107,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:107,the value of plot_cost is         : 15.85334825599643 

 At row:156, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:156, column:108,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:108,the value of plot_cost is         : 15.987581518504237 

 At row:156, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:156, column:109,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:109,the value of plot_cost is         : 16.12262284141455 

 At row:156, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:156, column:110,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:110,the value of plot_cost is         : 16.25847222472738 

 At row:156, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:156, column:111,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:111,the value of plot_cost is         : 16.39512966844272 

 At row:156, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:156, column:112,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:112,the value of plot_cost is         : 16.53259517256059 

 At row:156, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:156, column:113,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:113,the value of plot_cost is         : 16.670868737080966 

 At row:156, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:156, column:114,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:114,the value of plot_cost is         : 16.809950362003857 

 At row:156, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:156, column:115,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:115,the value of plot_cost is         : 16.94984004732926 

 At row:156, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:156, column:116,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:116,the value of plot_cost is         : 17.09053779305718 

 At row:156, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:156, column:117,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:117,the value of plot_cost is         : 17.23204359918762 

 At row:156, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:156, column:118,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:118,the value of plot_cost is         : 17.374357465720575 

 At row:156, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:156, column:119,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:119,the value of plot_cost is         : 17.517479392656043 

 At row:156, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:156, column:120,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:120,the value of plot_cost is         : 17.66140937999402 

 At row:156, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:156, column:121,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:121,the value of plot_cost is         : 17.806147427734516 

 At row:156, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:156, column:122,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:122,the value of plot_cost is         : 17.951693535877535 

 At row:156, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:156, column:123,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:123,the value of plot_cost is         : 18.098047704423063 

 At row:156, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:156, column:124,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:124,the value of plot_cost is         : 18.245209933371104 

 At row:156, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:156, column:125,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:125,the value of plot_cost is         : 18.393180222721657 

 At row:156, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:156, column:126,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:126,the value of plot_cost is         : 18.54195857247473 

 At row:156, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:156, column:127,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:127,the value of plot_cost is         : 18.69154498263032 

 At row:156, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:156, column:128,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:128,the value of plot_cost is         : 18.841939453188427 

 At row:156, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:156, column:129,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:129,the value of plot_cost is         : 18.993141984149045 

 At row:156, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:156, column:130,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:130,the value of plot_cost is         : 19.14515257551217 

 At row:156, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:156, column:131,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:131,the value of plot_cost is         : 19.297971227277817 

 At row:156, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:156, column:132,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:132,the value of plot_cost is         : 19.451597939445985 

 At row:156, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:156, column:133,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:133,the value of plot_cost is         : 19.606032712016663 

 At row:156, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:156, column:134,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:134,the value of plot_cost is         : 19.761275544989857 

 At row:156, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:156, column:135,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:135,the value of plot_cost is         : 19.917326438365567 

 At row:156, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:156, column:136,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:136,the value of plot_cost is         : 20.074185392143786 

 At row:156, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:156, column:137,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:137,the value of plot_cost is         : 20.231852406324524 

 At row:156, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:156, column:138,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:138,the value of plot_cost is         : 20.390327480907786 

 At row:156, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:156, column:139,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:139,the value of plot_cost is         : 20.549610615893553 

 At row:156, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:156, column:140,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:140,the value of plot_cost is         : 20.709701811281835 

 At row:156, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:156, column:141,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:141,the value of plot_cost is         : 20.87060106707263 

 At row:156, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:156, column:142,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:142,the value of plot_cost is         : 21.032308383265946 

 At row:156, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:156, column:143,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:143,the value of plot_cost is         : 21.19482375986178 

 At row:156, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:156, column:144,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:144,the value of plot_cost is         : 21.35814719686012 

 At row:156, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:156, column:145,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:145,the value of plot_cost is         : 21.52227869426098 

 At row:156, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:156, column:146,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:146,the value of plot_cost is         : 21.68721825206435 

 At row:156, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:156, column:147,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:147,the value of plot_cost is         : 21.85296587027024 

 At row:156, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:156, column:148,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:148,the value of plot_cost is         : 22.019521548878647 

 At row:156, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:156, column:149,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:149,the value of plot_cost is         : 22.186885287889567 

 At row:156, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:156, column:150,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:150,the value of plot_cost is         : 22.355057087303 

 At row:156, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:156, column:151,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:151,the value of plot_cost is         : 22.524036947118958 

 At row:156, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:156, column:152,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:152,the value of plot_cost is         : 22.69382486733742 

 At row:156, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:156, column:153,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:153,the value of plot_cost is         : 22.8644208479584 

 At row:156, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:156, column:154,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:154,the value of plot_cost is         : 23.035824888981892 

 At row:156, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:156, column:155,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:155,the value of plot_cost is         : 23.208036990407898 

 At row:156, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:156, column:156,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:156,the value of plot_cost is         : 23.381057152236426 

 At row:156, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:156, column:157,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:157,the value of plot_cost is         : 23.554885374467464 

 At row:156, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:156, column:158,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:158,the value of plot_cost is         : 23.72952165710102 

 At row:156, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:156, column:159,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:159,the value of plot_cost is         : 23.90496600013709 

 At row:156, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:156, column:160,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:160,the value of plot_cost is         : 24.08121840357568 

 At row:156, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:156, column:161,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:161,the value of plot_cost is         : 24.258278867416784 

 At row:156, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:156, column:162,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:162,the value of plot_cost is         : 24.4361473916604 

 At row:156, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:156, column:163,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:163,the value of plot_cost is         : 24.61482397630653 

 At row:156, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:156, column:164,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:164,the value of plot_cost is         : 24.794308621355174 

 At row:156, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:156, column:165,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:165,the value of plot_cost is         : 24.974601326806333 

 At row:156, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:156, column:166,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:166,the value of plot_cost is         : 25.155702092660007 

 At row:156, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:156, column:167,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:167,the value of plot_cost is         : 25.337610918916198 

 At row:156, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:156, column:168,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:168,the value of plot_cost is         : 25.520327805574908 

 At row:156, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:156, column:169,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:169,the value of plot_cost is         : 25.703852752636134 

 At row:156, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:156, column:170,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:170,the value of plot_cost is         : 25.888185760099866 

 At row:156, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:156, column:171,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:171,the value of plot_cost is         : 26.07332682796612 

 At row:156, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:156, column:172,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:172,the value of plot_cost is         : 26.259275956234887 

 At row:156, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:156, column:173,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:173,the value of plot_cost is         : 26.446033144906167 

 At row:156, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:156, column:174,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:174,the value of plot_cost is         : 26.633598393979963 

 At row:156, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:156, column:175,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:175,the value of plot_cost is         : 26.82197170345627 

 At row:156, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:156, column:176,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:176,the value of plot_cost is         : 27.0111530733351 

 At row:156, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:156, column:177,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:177,the value of plot_cost is         : 27.20114250361644 

 At row:156, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:156, column:178,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:178,the value of plot_cost is         : 27.391939994300298 

 At row:156, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:156, column:179,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:179,the value of plot_cost is         : 27.583545545386674 

 At row:156, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:156, column:180,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:180,the value of plot_cost is         : 27.775959156875565 

 At row:156, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:156, column:181,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:181,the value of plot_cost is         : 27.96918082876697 

 At row:156, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:156, column:182,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:182,the value of plot_cost is         : 28.163210561060882 

 At row:156, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:156, column:183,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:183,the value of plot_cost is         : 28.358048353757315 

 At row:156, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:156, column:184,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:184,the value of plot_cost is         : 28.55369420685626 

 At row:156, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:156, column:185,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:185,the value of plot_cost is         : 28.750148120357725 

 At row:156, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:156, column:186,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:186,the value of plot_cost is         : 28.947410094261702 

 At row:156, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:156, column:187,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:187,the value of plot_cost is         : 29.145480128568188 

 At row:156, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:156, column:188,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:188,the value of plot_cost is         : 29.344358223277204 

 At row:156, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:156, column:189,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:189,the value of plot_cost is         : 29.544044378388733 

 At row:156, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:156, column:190,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:190,the value of plot_cost is         : 29.744538593902764 

 At row:156, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:156, column:191,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:191,the value of plot_cost is         : 29.945840869819325 

 At row:156, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:156, column:192,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:192,the value of plot_cost is         : 30.147951206138387 

 At row:156, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:156, column:193,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:193,the value of plot_cost is         : 30.350869602859973 

 At row:156, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:156, column:194,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:194,the value of plot_cost is         : 30.554596059984068 

 At row:156, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:156, column:195,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:195,the value of plot_cost is         : 30.75913057751068 

 At row:156, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:156, column:196,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:196,the value of plot_cost is         : 30.964473155439812 

 At row:156, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:156, column:197,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:197,the value of plot_cost is         : 31.17062379377146 

 At row:156, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:156, column:198,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:198,the value of plot_cost is         : 31.377582492505613 

 At row:156, column:199,the value of plot_t0 is           : 3.0
 At row:156, column:199,the value of plot_t1 is           : 2.1356783919597992
 At row:156, column:199,the value of plot_cost is         : 31.585349251642285 

 At row:157, column:0,the value of plot_t0 is           : -1.0
 At row:157, column:0,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:0,the value of plot_cost is         : 6.490988431028075 

 At row:157, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:157, column:1,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:1,the value of plot_cost is         : 6.541437373515096 

 At row:157, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:157, column:2,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:2,the value of plot_cost is         : 6.592694376404634 

 At row:157, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:157, column:3,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:3,the value of plot_cost is         : 6.644759439696689 

 At row:157, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:157, column:4,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:4,the value of plot_cost is         : 6.697632563391257 

 At row:157, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:157, column:5,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:5,the value of plot_cost is         : 6.751313747488339 

 At row:157, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:157, column:6,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:6,the value of plot_cost is         : 6.805802991987935 

 At row:157, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:157, column:7,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:7,the value of plot_cost is         : 6.861100296890047 

 At row:157, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:157, column:8,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:8,the value of plot_cost is         : 6.917205662194679 

 At row:157, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:157, column:9,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:9,the value of plot_cost is         : 6.974119087901822 

 At row:157, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:157, column:10,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:10,the value of plot_cost is         : 7.031840574011478 

 At row:157, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:157, column:11,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:11,the value of plot_cost is         : 7.090370120523652 

 At row:157, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:157, column:12,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:12,the value of plot_cost is         : 7.149707727438337 

 At row:157, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:157, column:13,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:13,the value of plot_cost is         : 7.2098533947555445 

 At row:157, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:157, column:14,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:14,the value of plot_cost is         : 7.270807122475263 

 At row:157, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:157, column:15,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:15,the value of plot_cost is         : 7.332568910597495 

 At row:157, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:157, column:16,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:16,the value of plot_cost is         : 7.3951387591222435 

 At row:157, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:157, column:17,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:17,the value of plot_cost is         : 7.458516668049506 

 At row:157, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:157, column:18,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:18,the value of plot_cost is         : 7.522702637379288 

 At row:157, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:157, column:19,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:19,the value of plot_cost is         : 7.587696667111581 

 At row:157, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:157, column:20,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:20,the value of plot_cost is         : 7.65349875724639 

 At row:157, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:157, column:21,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:21,the value of plot_cost is         : 7.720108907783713 

 At row:157, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:157, column:22,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:22,the value of plot_cost is         : 7.787527118723551 

 At row:157, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:157, column:23,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:23,the value of plot_cost is         : 7.855753390065909 

 At row:157, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:157, column:24,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:24,the value of plot_cost is         : 7.924787721810778 

 At row:157, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:157, column:25,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:25,the value of plot_cost is         : 7.99463011395816 

 At row:157, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:157, column:26,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:26,the value of plot_cost is         : 8.06528056650806 

 At row:157, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:157, column:27,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:27,the value of plot_cost is         : 8.136739079460472 

 At row:157, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:157, column:28,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:28,the value of plot_cost is         : 8.209005652815407 

 At row:157, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:157, column:29,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:29,the value of plot_cost is         : 8.282080286572851 

 At row:157, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:157, column:30,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:30,the value of plot_cost is         : 8.355962980732809 

 At row:157, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:157, column:31,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:31,the value of plot_cost is         : 8.430653735295284 

 At row:157, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:157, column:32,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:32,the value of plot_cost is         : 8.506152550260273 

 At row:157, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:157, column:33,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:33,the value of plot_cost is         : 8.582459425627782 

 At row:157, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:157, column:34,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:34,the value of plot_cost is         : 8.659574361397802 

 At row:157, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:157, column:35,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:35,the value of plot_cost is         : 8.737497357570334 

 At row:157, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:157, column:36,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:36,the value of plot_cost is         : 8.816228414145385 

 At row:157, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:157, column:37,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:37,the value of plot_cost is         : 8.89576753112295 

 At row:157, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:157, column:38,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:38,the value of plot_cost is         : 8.976114708503033 

 At row:157, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:157, column:39,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:39,the value of plot_cost is         : 9.05726994628563 

 At row:157, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:157, column:40,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:40,the value of plot_cost is         : 9.139233244470738 

 At row:157, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:157, column:41,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:41,the value of plot_cost is         : 9.222004603058364 

 At row:157, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:157, column:42,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:42,the value of plot_cost is         : 9.305584022048501 

 At row:157, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:157, column:43,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:43,the value of plot_cost is         : 9.389971501441162 

 At row:157, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:157, column:44,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:44,the value of plot_cost is         : 9.475167041236334 

 At row:157, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:157, column:45,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:45,the value of plot_cost is         : 9.561170641434018 

 At row:157, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:157, column:46,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:46,the value of plot_cost is         : 9.647982302034217 

 At row:157, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:157, column:47,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:47,the value of plot_cost is         : 9.735602023036932 

 At row:157, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:157, column:48,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:48,the value of plot_cost is         : 9.82402980444217 

 At row:157, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:157, column:49,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:49,the value of plot_cost is         : 9.913265646249913 

 At row:157, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:157, column:50,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:50,the value of plot_cost is         : 10.003309548460175 

 At row:157, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:157, column:51,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:51,the value of plot_cost is         : 10.094161511072953 

 At row:157, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:157, column:52,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:52,the value of plot_cost is         : 10.185821534088243 

 At row:157, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:157, column:53,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:53,the value of plot_cost is         : 10.278289617506053 

 At row:157, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:157, column:54,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:54,the value of plot_cost is         : 10.371565761326373 

 At row:157, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:157, column:55,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:55,the value of plot_cost is         : 10.465649965549208 

 At row:157, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:157, column:56,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:56,the value of plot_cost is         : 10.56054223017456 

 At row:157, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:157, column:57,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:57,the value of plot_cost is         : 10.656242555202429 

 At row:157, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:157, column:58,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:58,the value of plot_cost is         : 10.752750940632811 

 At row:157, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:157, column:59,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:59,the value of plot_cost is         : 10.85006738646571 

 At row:157, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:157, column:60,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:60,the value of plot_cost is         : 10.948191892701121 

 At row:157, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:157, column:61,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:61,the value of plot_cost is         : 11.047124459339049 

 At row:157, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:157, column:62,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:62,the value of plot_cost is         : 11.146865086379494 

 At row:157, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:157, column:63,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:63,the value of plot_cost is         : 11.247413773822451 

 At row:157, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:157, column:64,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:64,the value of plot_cost is         : 11.348770521667923 

 At row:157, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:157, column:65,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:65,the value of plot_cost is         : 11.45093532991591 

 At row:157, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:157, column:66,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:66,the value of plot_cost is         : 11.553908198566413 

 At row:157, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:157, column:67,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:67,the value of plot_cost is         : 11.657689127619431 

 At row:157, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:157, column:68,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:68,the value of plot_cost is         : 11.762278117074965 

 At row:157, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:157, column:69,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:69,the value of plot_cost is         : 11.867675166933015 

 At row:157, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:157, column:70,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:70,the value of plot_cost is         : 11.973880277193574 

 At row:157, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:157, column:71,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:71,the value of plot_cost is         : 12.080893447856655 

 At row:157, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:157, column:72,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:72,the value of plot_cost is         : 12.188714678922247 

 At row:157, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:157, column:73,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:73,the value of plot_cost is         : 12.297343970390358 

 At row:157, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:157, column:74,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:74,the value of plot_cost is         : 12.406781322260983 

 At row:157, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:157, column:75,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:75,the value of plot_cost is         : 12.517026734534118 

 At row:157, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:157, column:76,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:76,the value of plot_cost is         : 12.628080207209772 

 At row:157, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:157, column:77,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:77,the value of plot_cost is         : 12.739941740287941 

 At row:157, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:157, column:78,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:78,the value of plot_cost is         : 12.852611333768628 

 At row:157, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:157, column:79,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:79,the value of plot_cost is         : 12.966088987651826 

 At row:157, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:157, column:80,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:80,the value of plot_cost is         : 13.080374701937538 

 At row:157, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:157, column:81,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:81,the value of plot_cost is         : 13.195468476625768 

 At row:157, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:157, column:82,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:82,the value of plot_cost is         : 13.311370311716512 

 At row:157, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:157, column:83,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:83,the value of plot_cost is         : 13.428080207209778 

 At row:157, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:157, column:84,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:84,the value of plot_cost is         : 13.545598163105549 

 At row:157, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:157, column:85,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:85,the value of plot_cost is         : 13.663924179403839 

 At row:157, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:157, column:86,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:86,the value of plot_cost is         : 13.783058256104642 

 At row:157, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:157, column:87,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:87,the value of plot_cost is         : 13.903000393207963 

 At row:157, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:157, column:88,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:88,the value of plot_cost is         : 14.023750590713798 

 At row:157, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:157, column:89,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:89,the value of plot_cost is         : 14.145308848622147 

 At row:157, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:157, column:90,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:90,the value of plot_cost is         : 14.267675166933012 

 At row:157, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:157, column:91,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:91,the value of plot_cost is         : 14.390849545646391 

 At row:157, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:157, column:92,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:92,the value of plot_cost is         : 14.514831984762289 

 At row:157, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:157, column:93,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:93,the value of plot_cost is         : 14.6396224842807 

 At row:157, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:157, column:94,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:94,the value of plot_cost is         : 14.765221044201626 

 At row:157, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:157, column:95,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:95,the value of plot_cost is         : 14.891627664525064 

 At row:157, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:157, column:96,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:96,the value of plot_cost is         : 15.01884234525102 

 At row:157, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:157, column:97,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:97,the value of plot_cost is         : 15.146865086379494 

 At row:157, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:157, column:98,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:98,the value of plot_cost is         : 15.27569588791048 

 At row:157, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:157, column:99,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:99,the value of plot_cost is         : 15.405334749843979 

 At row:157, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:157, column:100,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:100,the value of plot_cost is         : 15.535781672179995 

 At row:157, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:157, column:101,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:101,the value of plot_cost is         : 15.667036654918522 

 At row:157, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:157, column:102,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:102,the value of plot_cost is         : 15.799099698059571 

 At row:157, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:157, column:103,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:103,the value of plot_cost is         : 15.931970801603134 

 At row:157, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:157, column:104,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:104,the value of plot_cost is         : 16.06564996554921 

 At row:157, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:157, column:105,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:105,the value of plot_cost is         : 16.200137189897795 

 At row:157, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:157, column:106,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:106,the value of plot_cost is         : 16.335432474648908 

 At row:157, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:157, column:107,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:107,the value of plot_cost is         : 16.47153581980253 

 At row:157, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:157, column:108,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:108,the value of plot_cost is         : 16.608447225358667 

 At row:157, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:157, column:109,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:109,the value of plot_cost is         : 16.74616669131732 

 At row:157, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:157, column:110,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:110,the value of plot_cost is         : 16.884694217678486 

 At row:157, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:157, column:111,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:111,the value of plot_cost is         : 17.024029804442165 

 At row:157, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:157, column:112,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:112,the value of plot_cost is         : 17.164173451608363 

 At row:157, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:157, column:113,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:113,the value of plot_cost is         : 17.305125159177077 

 At row:157, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:157, column:114,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:114,the value of plot_cost is         : 17.446884927148304 

 At row:157, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:157, column:115,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:115,the value of plot_cost is         : 17.589452755522046 

 At row:157, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:157, column:116,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:116,the value of plot_cost is         : 17.732828644298298 

 At row:157, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:157, column:117,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:117,the value of plot_cost is         : 17.877012593477076 

 At row:157, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:157, column:118,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:118,the value of plot_cost is         : 18.022004603058363 

 At row:157, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:157, column:119,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:119,the value of plot_cost is         : 18.167804673042166 

 At row:157, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:157, column:120,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:120,the value of plot_cost is         : 18.314412803428482 

 At row:157, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:157, column:121,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:121,the value of plot_cost is         : 18.461828994217313 

 At row:157, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:157, column:122,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:122,the value of plot_cost is         : 18.610053245408665 

 At row:157, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:157, column:123,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:123,the value of plot_cost is         : 18.75908555700253 

 At row:157, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:157, column:124,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:124,the value of plot_cost is         : 18.908925928998908 

 At row:157, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:157, column:125,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:125,the value of plot_cost is         : 19.059574361397804 

 At row:157, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:157, column:126,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:126,the value of plot_cost is         : 19.211030854199205 

 At row:157, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:157, column:127,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:127,the value of plot_cost is         : 19.36329540740313 

 At row:157, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:157, column:128,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:128,the value of plot_cost is         : 19.51636802100957 

 At row:157, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:157, column:129,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:129,the value of plot_cost is         : 19.670248695018525 

 At row:157, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:157, column:130,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:130,the value of plot_cost is         : 19.82493742942999 

 At row:157, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:157, column:131,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:131,the value of plot_cost is         : 19.980434224243975 

 At row:157, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:157, column:132,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:132,the value of plot_cost is         : 20.136739079460472 

 At row:157, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:157, column:133,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:133,the value of plot_cost is         : 20.29385199507949 

 At row:157, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:157, column:134,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:134,the value of plot_cost is         : 20.451772971101015 

 At row:157, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:157, column:135,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:135,the value of plot_cost is         : 20.61050200752506 

 At row:157, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:157, column:136,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:136,the value of plot_cost is         : 20.770039104351618 

 At row:157, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:157, column:137,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:137,the value of plot_cost is         : 20.930384261580695 

 At row:157, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:157, column:138,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:138,the value of plot_cost is         : 21.09153747921228 

 At row:157, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:157, column:139,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:139,the value of plot_cost is         : 21.253498757246387 

 At row:157, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:157, column:140,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:140,the value of plot_cost is         : 21.41626809568301 

 At row:157, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:157, column:141,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:141,the value of plot_cost is         : 21.579845494522136 

 At row:157, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:157, column:142,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:142,the value of plot_cost is         : 21.74423095376379 

 At row:157, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:157, column:143,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:143,the value of plot_cost is         : 21.909424473407956 

 At row:157, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:157, column:144,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:144,the value of plot_cost is         : 22.075426053454635 

 At row:157, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:157, column:145,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:145,the value of plot_cost is         : 22.242235693903833 

 At row:157, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:157, column:146,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:146,the value of plot_cost is         : 22.40985339475554 

 At row:157, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:157, column:147,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:147,the value of plot_cost is         : 22.578279156009764 

 At row:157, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:157, column:148,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:148,the value of plot_cost is         : 22.74751297766651 

 At row:157, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:157, column:149,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:149,the value of plot_cost is         : 22.917554859725765 

 At row:157, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:157, column:150,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:150,the value of plot_cost is         : 23.08840480218754 

 At row:157, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:157, column:151,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:151,the value of plot_cost is         : 23.260062805051817 

 At row:157, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:157, column:152,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:152,the value of plot_cost is         : 23.432528868318617 

 At row:157, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:157, column:153,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:153,the value of plot_cost is         : 23.605802991987936 

 At row:157, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:157, column:154,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:154,the value of plot_cost is         : 23.779885176059764 

 At row:157, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:157, column:155,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:155,the value of plot_cost is         : 23.954775420534112 

 At row:157, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:157, column:156,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:156,the value of plot_cost is         : 24.13047372541098 

 At row:157, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:157, column:157,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:157,the value of plot_cost is         : 24.30698009069035 

 At row:157, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:157, column:158,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:158,the value of plot_cost is         : 24.484294516372234 

 At row:157, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:157, column:159,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:159,the value of plot_cost is         : 24.662417002456642 

 At row:157, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:157, column:160,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:160,the value of plot_cost is         : 24.84134754894357 

 At row:157, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:157, column:161,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:161,the value of plot_cost is         : 25.021086155833007 

 At row:157, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:157, column:162,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:162,the value of plot_cost is         : 25.201632823124953 

 At row:157, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:157, column:163,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:163,the value of plot_cost is         : 25.382987550819426 

 At row:157, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:157, column:164,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:164,the value of plot_cost is         : 25.565150338916403 

 At row:157, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:157, column:165,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:165,the value of plot_cost is         : 25.748121187415897 

 At row:157, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:157, column:166,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:166,the value of plot_cost is         : 25.93190009631791 

 At row:157, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:157, column:167,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:167,the value of plot_cost is         : 26.11648706562244 

 At row:157, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:157, column:168,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:168,the value of plot_cost is         : 26.301882095329475 

 At row:157, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:157, column:169,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:169,the value of plot_cost is         : 26.48808518543904 

 At row:157, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:157, column:170,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:170,the value of plot_cost is         : 26.675096335951114 

 At row:157, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:157, column:171,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:171,the value of plot_cost is         : 26.8629155468657 

 At row:157, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:157, column:172,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:172,the value of plot_cost is         : 27.051542818182796 

 At row:157, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:157, column:173,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:173,the value of plot_cost is         : 27.24097814990242 

 At row:157, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:157, column:174,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:174,the value of plot_cost is         : 27.43122154202455 

 At row:157, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:157, column:175,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:175,the value of plot_cost is         : 27.6222729945492 

 At row:157, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:157, column:176,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:176,the value of plot_cost is         : 27.814132507476366 

 At row:157, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:157, column:177,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:177,the value of plot_cost is         : 28.006800080806034 

 At row:157, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:157, column:178,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:178,the value of plot_cost is         : 28.200275714538225 

 At row:157, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:157, column:179,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:179,the value of plot_cost is         : 28.394559408672936 

 At row:157, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:157, column:180,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:180,the value of plot_cost is         : 28.589651163210167 

 At row:157, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:157, column:181,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:181,the value of plot_cost is         : 28.785550978149903 

 At row:157, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:157, column:182,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:182,the value of plot_cost is         : 28.98225885349215 

 At row:157, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:157, column:183,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:183,the value of plot_cost is         : 29.179774789236923 

 At row:157, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:157, column:184,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:184,the value of plot_cost is         : 29.378098785384203 

 At row:157, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:157, column:185,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:185,the value of plot_cost is         : 29.577230841934 

 At row:157, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:157, column:186,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:186,the value of plot_cost is         : 29.777170958886316 

 At row:157, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:157, column:187,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:187,the value of plot_cost is         : 29.977919136241145 

 At row:157, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:157, column:188,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:188,the value of plot_cost is         : 30.17947537399849 

 At row:157, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:157, column:189,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:189,the value of plot_cost is         : 30.381839672158357 

 At row:157, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:157, column:190,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:190,the value of plot_cost is         : 30.585012030720726 

 At row:157, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:157, column:191,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:191,the value of plot_cost is         : 30.78899244968561 

 At row:157, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:157, column:192,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:192,the value of plot_cost is         : 30.993780929053017 

 At row:157, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:157, column:193,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:193,the value of plot_cost is         : 31.199377468822934 

 At row:157, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:157, column:194,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:194,the value of plot_cost is         : 31.405782068995368 

 At row:157, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:157, column:195,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:195,the value of plot_cost is         : 31.612994729570318 

 At row:157, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:157, column:196,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:196,the value of plot_cost is         : 31.821015450547787 

 At row:157, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:157, column:197,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:197,the value of plot_cost is         : 32.02984423192776 

 At row:157, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:157, column:198,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:198,the value of plot_cost is         : 32.23948107371026 

 At row:157, column:199,the value of plot_t0 is           : 3.0
 At row:157, column:199,the value of plot_t1 is           : 2.1557788944723617
 At row:157, column:199,the value of plot_cost is         : 32.44992597589526 

 At row:158, column:0,the value of plot_t0 is           : -1.0
 At row:158, column:0,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:0,the value of plot_cost is         : 6.8351973435014255 

 At row:158, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:158, column:1,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:1,the value of plot_cost is         : 6.888324429036783 

 At row:158, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:158, column:2,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:2,the value of plot_cost is         : 6.942259574974656 

 At row:158, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:158, column:3,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:3,the value of plot_cost is         : 6.997002781315047 

 At row:158, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:158, column:4,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:4,the value of plot_cost is         : 7.05255404805795 

 At row:158, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:158, column:5,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:5,the value of plot_cost is         : 7.108913375203367 

 At row:158, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:158, column:6,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:6,the value of plot_cost is         : 7.1660807627512995 

 At row:158, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:158, column:7,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:7,the value of plot_cost is         : 7.2240562107017485 

 At row:158, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:158, column:8,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:8,the value of plot_cost is         : 7.2828397190547145 

 At row:158, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:158, column:9,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:9,the value of plot_cost is         : 7.342431287810193 

 At row:158, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:158, column:10,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:10,the value of plot_cost is         : 7.402830916968185 

 At row:158, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:158, column:11,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:11,the value of plot_cost is         : 7.4640386065286926 

 At row:158, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:158, column:12,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:12,the value of plot_cost is         : 7.526054356491716 

 At row:158, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:158, column:13,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:13,the value of plot_cost is         : 7.588878166857259 

 At row:158, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:158, column:14,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:14,the value of plot_cost is         : 7.652510037625313 

 At row:158, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:158, column:15,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:15,the value of plot_cost is         : 7.716949968795881 

 At row:158, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:158, column:16,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:16,the value of plot_cost is         : 7.782197960368965 

 At row:158, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:158, column:17,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:17,the value of plot_cost is         : 7.8482540123445625 

 At row:158, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:158, column:18,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:18,the value of plot_cost is         : 7.915118124722682 

 At row:158, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:158, column:19,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:19,the value of plot_cost is         : 7.9827902975033105 

 At row:158, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:158, column:20,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:20,the value of plot_cost is         : 8.051270530686454 

 At row:158, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:158, column:21,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:21,the value of plot_cost is         : 8.120558824272113 

 At row:158, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:158, column:22,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:22,the value of plot_cost is         : 8.190655178260286 

 At row:158, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:158, column:23,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:23,the value of plot_cost is         : 8.26155959265098 

 At row:158, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:158, column:24,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:24,the value of plot_cost is         : 8.333272067444184 

 At row:158, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:158, column:25,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:25,the value of plot_cost is         : 8.405792602639904 

 At row:158, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:158, column:26,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:26,the value of plot_cost is         : 8.479121198238138 

 At row:158, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:158, column:27,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:27,the value of plot_cost is         : 8.553257854238886 

 At row:158, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:158, column:28,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:28,the value of plot_cost is         : 8.628202570642157 

 At row:158, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:158, column:29,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:29,the value of plot_cost is         : 8.703955347447936 

 At row:158, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:158, column:30,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:30,the value of plot_cost is         : 8.78051618465623 

 At row:158, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:158, column:31,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:31,the value of plot_cost is         : 8.857885082267039 

 At row:158, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:158, column:32,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:32,the value of plot_cost is         : 8.936062040280365 

 At row:158, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:158, column:33,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:33,the value of plot_cost is         : 9.01504705869621 

 At row:158, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:158, column:34,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:34,the value of plot_cost is         : 9.094840137514565 

 At row:158, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:158, column:35,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:35,the value of plot_cost is         : 9.175441276735434 

 At row:158, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:158, column:36,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:36,the value of plot_cost is         : 9.25685047635882 

 At row:158, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:158, column:37,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:37,the value of plot_cost is         : 9.33906773638472 

 At row:158, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:158, column:38,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:38,the value of plot_cost is         : 9.422093056813141 

 At row:158, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:158, column:39,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:39,the value of plot_cost is         : 9.50592643764407 

 At row:158, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:158, column:40,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:40,the value of plot_cost is         : 9.590567878877515 

 At row:158, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:158, column:41,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:41,the value of plot_cost is         : 9.676017380513477 

 At row:158, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:158, column:42,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:42,the value of plot_cost is         : 9.762274942551953 

 At row:158, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:158, column:43,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:43,the value of plot_cost is         : 9.849340564992948 

 At row:158, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:158, column:44,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:44,the value of plot_cost is         : 9.937214247836454 

 At row:158, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:158, column:45,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:45,the value of plot_cost is         : 10.025895991082473 

 At row:158, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:158, column:46,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:46,the value of plot_cost is         : 10.115385794731012 

 At row:158, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:158, column:47,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:47,the value of plot_cost is         : 10.205683658782062 

 At row:158, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:158, column:48,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:48,the value of plot_cost is         : 10.296789583235634 

 At row:158, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:158, column:49,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:49,the value of plot_cost is         : 10.388703568091715 

 At row:158, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:158, column:50,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:50,the value of plot_cost is         : 10.48142561335031 

 At row:158, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:158, column:51,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:51,the value of plot_cost is         : 10.574955719011422 

 At row:158, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:158, column:52,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:52,the value of plot_cost is         : 10.669293885075048 

 At row:158, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:158, column:53,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:53,the value of plot_cost is         : 10.764440111541195 

 At row:158, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:158, column:54,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:54,the value of plot_cost is         : 10.860394398409852 

 At row:158, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:158, column:55,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:55,the value of plot_cost is         : 10.957156745681024 

 At row:158, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:158, column:56,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:56,the value of plot_cost is         : 11.05472715335471 

 At row:158, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:158, column:57,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:57,the value of plot_cost is         : 11.153105621430917 

 At row:158, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:158, column:58,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:58,the value of plot_cost is         : 11.252292149909636 

 At row:158, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:158, column:59,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:59,the value of plot_cost is         : 11.352286738790868 

 At row:158, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:158, column:60,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:60,the value of plot_cost is         : 11.453089388074613 

 At row:158, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:158, column:61,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:61,the value of plot_cost is         : 11.554700097760877 

 At row:158, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:158, column:62,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:62,the value of plot_cost is         : 11.657118867849654 

 At row:158, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:158, column:63,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:63,the value of plot_cost is         : 11.76034569834095 

 At row:158, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:158, column:64,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:64,the value of plot_cost is         : 11.86438058923476 

 At row:158, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:158, column:65,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:65,the value of plot_cost is         : 11.96922354053108 

 At row:158, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:158, column:66,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:66,the value of plot_cost is         : 12.07487455222992 

 At row:158, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:158, column:67,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:67,the value of plot_cost is         : 12.181333624331277 

 At row:158, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:158, column:68,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:68,the value of plot_cost is         : 12.288600756835145 

 At row:158, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:158, column:69,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:69,the value of plot_cost is         : 12.396675949741526 

 At row:158, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:158, column:70,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:70,the value of plot_cost is         : 12.505559203050426 

 At row:158, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:158, column:71,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:71,the value of plot_cost is         : 12.61525051676184 

 At row:158, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:158, column:72,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:72,the value of plot_cost is         : 12.725749890875766 

 At row:158, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:158, column:73,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:73,the value of plot_cost is         : 12.837057325392216 

 At row:158, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:158, column:74,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:74,the value of plot_cost is         : 12.949172820311173 

 At row:158, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:158, column:75,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:75,the value of plot_cost is         : 13.062096375632649 

 At row:158, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:158, column:76,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:76,the value of plot_cost is         : 13.175827991356636 

 At row:158, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:158, column:77,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:77,the value of plot_cost is         : 13.290367667483146 

 At row:158, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:158, column:78,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:78,the value of plot_cost is         : 13.405715404012163 

 At row:158, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:158, column:79,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:79,the value of plot_cost is         : 13.521871200943698 

 At row:158, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:158, column:80,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:80,the value of plot_cost is         : 13.638835058277746 

 At row:158, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:158, column:81,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:81,the value of plot_cost is         : 13.756606976014313 

 At row:158, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:158, column:82,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:82,the value of plot_cost is         : 13.875186954153389 

 At row:158, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:158, column:83,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:83,the value of plot_cost is         : 13.994574992694988 

 At row:158, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:158, column:84,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:84,the value of plot_cost is         : 14.114771091639101 

 At row:158, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:158, column:85,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:85,the value of plot_cost is         : 14.235775250985721 

 At row:158, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:158, column:86,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:86,the value of plot_cost is         : 14.357587470734863 

 At row:158, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:158, column:87,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:87,the value of plot_cost is         : 14.480207750886523 

 At row:158, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:158, column:88,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:88,the value of plot_cost is         : 14.603636091440693 

 At row:158, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:158, column:89,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:89,the value of plot_cost is         : 14.727872492397376 

 At row:158, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:158, column:90,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:90,the value of plot_cost is         : 14.852916953756578 

 At row:158, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:158, column:91,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:91,the value of plot_cost is         : 14.978769475518293 

 At row:158, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:158, column:92,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:92,the value of plot_cost is         : 15.10543005768252 

 At row:158, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:158, column:93,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:93,the value of plot_cost is         : 15.23289870024927 

 At row:158, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:158, column:94,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:94,the value of plot_cost is         : 15.361175403218532 

 At row:158, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:158, column:95,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:95,the value of plot_cost is         : 15.490260166590307 

 At row:158, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:158, column:96,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:96,the value of plot_cost is         : 15.620152990364597 

 At row:158, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:158, column:97,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:97,the value of plot_cost is         : 15.75085387454141 

 At row:158, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:158, column:98,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:98,the value of plot_cost is         : 15.88236281912073 

 At row:158, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:158, column:99,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:99,the value of plot_cost is         : 16.014679824102565 

 At row:158, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:158, column:100,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:100,the value of plot_cost is         : 16.147804889486917 

 At row:158, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:158, column:101,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:101,the value of plot_cost is         : 16.28173801527378 

 At row:158, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:158, column:102,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:102,the value of plot_cost is         : 16.416479201463158 

 At row:158, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:158, column:103,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:103,the value of plot_cost is         : 16.552028448055065 

 At row:158, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:158, column:104,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:104,the value of plot_cost is         : 16.688385755049477 

 At row:158, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:158, column:105,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:105,the value of plot_cost is         : 16.825551122446402 

 At row:158, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:158, column:106,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:106,the value of plot_cost is         : 16.96352455024584 

 At row:158, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:158, column:107,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:107,the value of plot_cost is         : 17.102306038447804 

 At row:158, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:158, column:108,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:108,the value of plot_cost is         : 17.241895587052273 

 At row:158, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:158, column:109,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:109,the value of plot_cost is         : 17.382293196059262 

 At row:158, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:158, column:110,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:110,the value of plot_cost is         : 17.523498865468763 

 At row:158, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:158, column:111,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:111,the value of plot_cost is         : 17.66551259528078 

 At row:158, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:158, column:112,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:112,the value of plot_cost is         : 17.80833438549531 

 At row:158, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:158, column:113,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:113,the value of plot_cost is         : 17.951964236112364 

 At row:158, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:158, column:114,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:114,the value of plot_cost is         : 18.09640214713193 

 At row:158, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:158, column:115,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:115,the value of plot_cost is         : 18.241648118554004 

 At row:158, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:158, column:116,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:116,the value of plot_cost is         : 18.387702150378598 

 At row:158, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:158, column:117,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:117,the value of plot_cost is         : 18.534564242605708 

 At row:158, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:158, column:118,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:118,the value of plot_cost is         : 18.68223439523533 

 At row:158, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:158, column:119,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:119,the value of plot_cost is         : 18.830712608267465 

 At row:158, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:158, column:120,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:120,the value of plot_cost is         : 18.979998881702116 

 At row:158, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:158, column:121,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:121,the value of plot_cost is         : 19.130093215539286 

 At row:158, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:158, column:122,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:122,the value of plot_cost is         : 19.280995609778966 

 At row:158, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:158, column:123,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:123,the value of plot_cost is         : 19.43270606442117 

 At row:158, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:158, column:124,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:124,the value of plot_cost is         : 19.585224579465887 

 At row:158, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:158, column:125,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:125,the value of plot_cost is         : 19.738551154913115 

 At row:158, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:158, column:126,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:126,the value of plot_cost is         : 19.892685790762854 

 At row:158, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:158, column:127,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:127,the value of plot_cost is         : 20.04762848701512 

 At row:158, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:158, column:128,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:128,the value of plot_cost is         : 20.20337924366989 

 At row:158, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:158, column:129,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:129,the value of plot_cost is         : 20.359938060727178 

 At row:158, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:158, column:130,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:130,the value of plot_cost is         : 20.517304938186985 

 At row:158, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:158, column:131,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:131,the value of plot_cost is         : 20.675479876049305 

 At row:158, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:158, column:132,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:132,the value of plot_cost is         : 20.834462874314138 

 At row:158, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:158, column:133,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:133,the value of plot_cost is         : 20.994253932981486 

 At row:158, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:158, column:134,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:134,the value of plot_cost is         : 21.154853052051354 

 At row:158, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:158, column:135,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:135,the value of plot_cost is         : 21.31626023152373 

 At row:158, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:158, column:136,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:136,the value of plot_cost is         : 21.478475471398625 

 At row:158, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:158, column:137,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:137,the value of plot_cost is         : 21.64149877167604 

 At row:158, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:158, column:138,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:138,the value of plot_cost is         : 21.805330132355962 

 At row:158, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:158, column:139,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:139,the value of plot_cost is         : 21.969969553438403 

 At row:158, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:158, column:140,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:140,the value of plot_cost is         : 22.13541703492336 

 At row:158, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:158, column:141,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:141,the value of plot_cost is         : 22.301672576810827 

 At row:158, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:158, column:142,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:142,the value of plot_cost is         : 22.46873617910081 

 At row:158, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:158, column:143,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:143,the value of plot_cost is         : 22.636607841793314 

 At row:158, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:158, column:144,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:144,the value of plot_cost is         : 22.805287564888335 

 At row:158, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:158, column:145,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:145,the value of plot_cost is         : 22.974775348385865 

 At row:158, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:158, column:146,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:146,the value of plot_cost is         : 23.14507119228591 

 At row:158, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:158, column:147,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:147,the value of plot_cost is         : 23.31617509658847 

 At row:158, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:158, column:148,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:148,the value of plot_cost is         : 23.48808706129354 

 At row:158, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:158, column:149,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:149,the value of plot_cost is         : 23.660807086401135 

 At row:158, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:158, column:150,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:150,the value of plot_cost is         : 23.83433517191124 

 At row:158, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:158, column:151,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:151,the value of plot_cost is         : 24.008671317823858 

 At row:158, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:158, column:152,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:152,the value of plot_cost is         : 24.183815524138993 

 At row:158, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:158, column:153,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:153,the value of plot_cost is         : 24.359767790856647 

 At row:158, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:158, column:154,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:154,the value of plot_cost is         : 24.536528117976818 

 At row:158, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:158, column:155,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:155,the value of plot_cost is         : 24.7140965054995 

 At row:158, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:158, column:156,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:156,the value of plot_cost is         : 24.8924729534247 

 At row:158, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:158, column:157,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:157,the value of plot_cost is         : 25.07165746175241 

 At row:158, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:158, column:158,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:158,the value of plot_cost is         : 25.25165003048263 

 At row:158, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:158, column:159,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:159,the value of plot_cost is         : 25.432450659615373 

 At row:158, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:158, column:160,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:160,the value of plot_cost is         : 25.61405934915063 

 At row:158, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:158, column:161,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:161,the value of plot_cost is         : 25.7964760990884 

 At row:158, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:158, column:162,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:162,the value of plot_cost is         : 25.979700909428686 

 At row:158, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:158, column:163,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:163,the value of plot_cost is         : 26.16373378017149 

 At row:158, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:158, column:164,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:164,the value of plot_cost is         : 26.34857471131682 

 At row:158, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:158, column:165,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:165,the value of plot_cost is         : 26.534223702864647 

 At row:158, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:158, column:166,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:166,the value of plot_cost is         : 26.720680754814996 

 At row:158, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:158, column:167,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:167,the value of plot_cost is         : 26.907945867167857 

 At row:158, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:158, column:168,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:168,the value of plot_cost is         : 27.09601903992323 

 At row:158, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:158, column:169,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:169,the value of plot_cost is         : 27.284900273081124 

 At row:158, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:158, column:170,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:170,the value of plot_cost is         : 27.47458956664153 

 At row:158, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:158, column:171,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:171,the value of plot_cost is         : 27.665086920604452 

 At row:158, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:158, column:172,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:172,the value of plot_cost is         : 27.85639233496989 

 At row:158, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:158, column:173,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:173,the value of plot_cost is         : 28.04850580973784 

 At row:158, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:158, column:174,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:174,the value of plot_cost is         : 28.24142734490831 

 At row:158, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:158, column:175,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:175,the value of plot_cost is         : 28.4351569404813 

 At row:158, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:158, column:176,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:176,the value of plot_cost is         : 28.629694596456805 

 At row:158, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:158, column:177,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:177,the value of plot_cost is         : 28.825040312834812 

 At row:158, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:158, column:178,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:178,the value of plot_cost is         : 29.021194089615342 

 At row:158, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:158, column:179,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:179,the value of plot_cost is         : 29.21815592679838 

 At row:158, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:158, column:180,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:180,the value of plot_cost is         : 29.41592582438394 

 At row:158, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:158, column:181,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:181,the value of plot_cost is         : 29.614503782372008 

 At row:158, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:158, column:182,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:182,the value of plot_cost is         : 29.8138898007626 

 At row:158, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:158, column:183,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:183,the value of plot_cost is         : 30.014083879555706 

 At row:158, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:158, column:184,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:184,the value of plot_cost is         : 30.215086018751336 

 At row:158, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:158, column:185,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:185,the value of plot_cost is         : 30.416896218349464 

 At row:158, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:158, column:186,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:186,the value of plot_cost is         : 30.61951447835012 

 At row:158, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:158, column:187,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:187,the value of plot_cost is         : 30.82294079875328 

 At row:158, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:158, column:188,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:188,the value of plot_cost is         : 31.027175179558956 

 At row:158, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:158, column:189,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:189,the value of plot_cost is         : 31.232217620767152 

 At row:158, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:158, column:190,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:190,the value of plot_cost is         : 31.438068122377857 

 At row:158, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:158, column:191,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:191,the value of plot_cost is         : 31.64472668439108 

 At row:158, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:158, column:192,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:192,the value of plot_cost is         : 31.85219330680682 

 At row:158, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:158, column:193,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:193,the value of plot_cost is         : 32.060467989625074 

 At row:158, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:158, column:194,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:194,the value of plot_cost is         : 32.26955073284585 

 At row:158, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:158, column:195,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:195,the value of plot_cost is         : 32.47944153646914 

 At row:158, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:158, column:196,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:196,the value of plot_cost is         : 32.69014040049493 

 At row:158, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:158, column:197,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:197,the value of plot_cost is         : 32.90164732492325 

 At row:158, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:158, column:198,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:198,the value of plot_cost is         : 33.11396230975408 

 At row:158, column:199,the value of plot_t0 is           : 3.0
 At row:158, column:199,the value of plot_t1 is           : 2.1758793969849246
 At row:158, column:199,the value of plot_cost is         : 33.32708535498742 

 At row:159, column:0,the value of plot_t0 is           : -1.0
 At row:159, column:0,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:0,the value of plot_cost is         : 7.191988910813943 

 At row:159, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:159, column:1,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:1,the value of plot_cost is         : 7.247794139397635 

 At row:159, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:159, column:2,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:2,the value of plot_cost is         : 7.304407428383843 

 At row:159, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:159, column:3,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:3,the value of plot_cost is         : 7.361828777772571 

 At row:159, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:159, column:4,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:4,the value of plot_cost is         : 7.420058187563808 

 At row:159, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:159, column:5,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:5,the value of plot_cost is         : 7.479095657757562 

 At row:159, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:159, column:6,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:6,the value of plot_cost is         : 7.53894118835383 

 At row:159, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:159, column:7,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:7,the value of plot_cost is         : 7.599594779352614 

 At row:159, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:159, column:8,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:8,the value of plot_cost is         : 7.661056430753917 

 At row:159, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:159, column:9,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:9,the value of plot_cost is         : 7.723326142557732 

 At row:159, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:159, column:10,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:10,the value of plot_cost is         : 7.78640391476406 

 At row:159, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:159, column:11,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:11,the value of plot_cost is         : 7.850289747372902 

 At row:159, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:159, column:12,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:12,the value of plot_cost is         : 7.9149836403842615 

 At row:159, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:159, column:13,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:13,the value of plot_cost is         : 7.980485593798139 

 At row:159, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:159, column:14,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:14,the value of plot_cost is         : 8.046795607614529 

 At row:159, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:159, column:15,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:15,the value of plot_cost is         : 8.113913681833433 

 At row:159, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:159, column:16,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:16,the value of plot_cost is         : 8.181839816454852 

 At row:159, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:159, column:17,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:17,the value of plot_cost is         : 8.250574011478788 

 At row:159, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:159, column:18,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:18,the value of plot_cost is         : 8.320116266905242 

 At row:159, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:159, column:19,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:19,the value of plot_cost is         : 8.390466582734206 

 At row:159, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:159, column:20,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:20,the value of plot_cost is         : 8.461624958965686 

 At row:159, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:159, column:21,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:21,the value of plot_cost is         : 8.533591395599679 

 At row:159, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:159, column:22,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:22,the value of plot_cost is         : 8.60636589263619 

 At row:159, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:159, column:23,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:23,the value of plot_cost is         : 8.679948450075218 

 At row:159, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:159, column:24,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:24,the value of plot_cost is         : 8.75433906791676 

 At row:159, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:159, column:25,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:25,the value of plot_cost is         : 8.829537746160813 

 At row:159, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:159, column:26,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:26,the value of plot_cost is         : 8.905544484807383 

 At row:159, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:159, column:27,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:27,the value of plot_cost is         : 8.982359283856468 

 At row:159, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:159, column:28,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:28,the value of plot_cost is         : 9.059982143308074 

 At row:159, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:159, column:29,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:29,the value of plot_cost is         : 9.13841306316219 

 At row:159, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:159, column:30,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:30,the value of plot_cost is         : 9.217652043418818 

 At row:159, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:159, column:31,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:31,the value of plot_cost is         : 9.297699084077964 

 At row:159, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:159, column:32,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:32,the value of plot_cost is         : 9.378554185139624 

 At row:159, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:159, column:33,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:33,the value of plot_cost is         : 9.460217346603805 

 At row:159, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:159, column:34,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:34,the value of plot_cost is         : 9.542688568470497 

 At row:159, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:159, column:35,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:35,the value of plot_cost is         : 9.625967850739702 

 At row:159, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:159, column:36,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:36,the value of plot_cost is         : 9.710055193411423 

 At row:159, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:159, column:37,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:37,the value of plot_cost is         : 9.794950596485661 

 At row:159, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:159, column:38,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:38,the value of plot_cost is         : 9.880654059962414 

 At row:159, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:159, column:39,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:39,the value of plot_cost is         : 9.96716558384168 

 At row:159, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:159, column:40,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:40,the value of plot_cost is         : 10.054485168123463 

 At row:159, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:159, column:41,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:41,the value of plot_cost is         : 10.142612812807759 

 At row:159, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:159, column:42,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:42,the value of plot_cost is         : 10.23154851789457 

 At row:159, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:159, column:43,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:43,the value of plot_cost is         : 10.321292283383901 

 At row:159, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:159, column:44,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:44,the value of plot_cost is         : 10.411844109275743 

 At row:159, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:159, column:45,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:45,the value of plot_cost is         : 10.503203995570098 

 At row:159, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:159, column:46,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:46,the value of plot_cost is         : 10.59537194226697 

 At row:159, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:159, column:47,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:47,the value of plot_cost is         : 10.688347949366358 

 At row:159, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:159, column:48,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:48,the value of plot_cost is         : 10.782132016868266 

 At row:159, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:159, column:49,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:49,the value of plot_cost is         : 10.876724144772684 

 At row:159, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:159, column:50,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:50,the value of plot_cost is         : 10.972124333079615 

 At row:159, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:159, column:51,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:51,the value of plot_cost is         : 11.06833258178906 

 At row:159, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:159, column:52,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:52,the value of plot_cost is         : 11.165348890901022 

 At row:159, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:159, column:53,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:53,the value of plot_cost is         : 11.263173260415506 

 At row:159, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:159, column:54,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:54,the value of plot_cost is         : 11.361805690332497 

 At row:159, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:159, column:55,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:55,the value of plot_cost is         : 11.461246180652006 

 At row:159, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:159, column:56,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:56,the value of plot_cost is         : 11.561494731374028 

 At row:159, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:159, column:57,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:57,the value of plot_cost is         : 11.662551342498574 

 At row:159, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:159, column:58,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:58,the value of plot_cost is         : 11.764416014025624 

 At row:159, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:159, column:59,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:59,the value of plot_cost is         : 11.867088745955193 

 At row:159, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:159, column:60,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:60,the value of plot_cost is         : 11.970569538287274 

 At row:159, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:159, column:61,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:61,the value of plot_cost is         : 12.074858391021872 

 At row:159, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:159, column:62,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:62,the value of plot_cost is         : 12.179955304158986 

 At row:159, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:159, column:63,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:63,the value of plot_cost is         : 12.285860277698621 

 At row:159, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:159, column:64,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:64,the value of plot_cost is         : 12.392573311640763 

 At row:159, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:159, column:65,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:65,the value of plot_cost is         : 12.500094405985422 

 At row:159, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:159, column:66,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:66,the value of plot_cost is         : 12.608423560732595 

 At row:159, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:159, column:67,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:67,the value of plot_cost is         : 12.717560775882287 

 At row:159, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:159, column:68,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:68,the value of plot_cost is         : 12.82750605143449 

 At row:159, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:159, column:69,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:69,the value of plot_cost is         : 12.93825938738921 

 At row:159, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:159, column:70,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:70,the value of plot_cost is         : 13.049820783746444 

 At row:159, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:159, column:71,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:71,the value of plot_cost is         : 13.162190240506192 

 At row:159, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:159, column:72,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:72,the value of plot_cost is         : 13.275367757668457 

 At row:159, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:159, column:73,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:73,the value of plot_cost is         : 13.389353335233242 

 At row:159, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:159, column:74,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:74,the value of plot_cost is         : 13.504146973200537 

 At row:159, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:159, column:75,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:75,the value of plot_cost is         : 13.619748671570344 

 At row:159, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:159, column:76,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:76,the value of plot_cost is         : 13.73615843034267 

 At row:159, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:159, column:77,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:77,the value of plot_cost is         : 13.853376249517515 

 At row:159, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:159, column:78,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:78,the value of plot_cost is         : 13.971402129094871 

 At row:159, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:159, column:79,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:79,the value of plot_cost is         : 14.090236069074738 

 At row:159, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:159, column:80,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:80,the value of plot_cost is         : 14.209878069457123 

 At row:159, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:159, column:81,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:81,the value of plot_cost is         : 14.33032813024202 

 At row:159, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:159, column:82,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:82,the value of plot_cost is         : 14.451586251429436 

 At row:159, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:159, column:83,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:83,the value of plot_cost is         : 14.573652433019372 

 At row:159, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:159, column:84,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:84,the value of plot_cost is         : 14.696526675011818 

 At row:159, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:159, column:85,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:85,the value of plot_cost is         : 14.820208977406775 

 At row:159, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:159, column:86,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:86,the value of plot_cost is         : 14.944699340204252 

 At row:159, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:159, column:87,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:87,the value of plot_cost is         : 15.069997763404249 

 At row:159, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:159, column:88,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:88,the value of plot_cost is         : 15.196104247006755 

 At row:159, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:159, column:89,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:89,the value of plot_cost is         : 15.323018791011776 

 At row:159, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:159, column:90,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:90,the value of plot_cost is         : 15.450741395419307 

 At row:159, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:159, column:91,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:91,the value of plot_cost is         : 15.57927206022936 

 At row:159, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:159, column:92,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:92,the value of plot_cost is         : 15.708610785441927 

 At row:159, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:159, column:93,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:93,the value of plot_cost is         : 15.838757571057016 

 At row:159, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:159, column:94,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:94,the value of plot_cost is         : 15.969712417074609 

 At row:159, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:159, column:95,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:95,the value of plot_cost is         : 16.101475323494718 

 At row:159, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:159, column:96,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:96,the value of plot_cost is         : 16.23404629031734 

 At row:159, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:159, column:97,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:97,the value of plot_cost is         : 16.36742531754249 

 At row:159, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:159, column:98,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:98,the value of plot_cost is         : 16.50161240517015 

 At row:159, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:159, column:99,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:99,the value of plot_cost is         : 16.63660755320032 

 At row:159, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:159, column:100,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:100,the value of plot_cost is         : 16.772410761633 

 At row:159, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:159, column:101,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:101,the value of plot_cost is         : 16.909022030468204 

 At row:159, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:159, column:102,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:102,the value of plot_cost is         : 17.046441359705923 

 At row:159, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:159, column:103,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:103,the value of plot_cost is         : 17.184668749346162 

 At row:159, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:159, column:104,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:104,the value of plot_cost is         : 17.32370419938891 

 At row:159, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:159, column:105,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:105,the value of plot_cost is         : 17.46354770983417 

 At row:159, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:159, column:106,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:106,the value of plot_cost is         : 17.604199280681943 

 At row:159, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:159, column:107,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:107,the value of plot_cost is         : 17.74565891193225 

 At row:159, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:159, column:108,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:108,the value of plot_cost is         : 17.88792660358505 

 At row:159, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:159, column:109,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:109,the value of plot_cost is         : 18.031002355640375 

 At row:159, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:159, column:110,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:110,the value of plot_cost is         : 18.17488616809821 

 At row:159, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:159, column:111,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:111,the value of plot_cost is         : 18.31957804095856 

 At row:159, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:159, column:112,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:112,the value of plot_cost is         : 18.465077974221426 

 At row:159, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:159, column:113,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:113,the value of plot_cost is         : 18.611385967886818 

 At row:159, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:159, column:114,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:114,the value of plot_cost is         : 18.75850202195472 

 At row:159, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:159, column:115,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:115,the value of plot_cost is         : 18.90642613642513 

 At row:159, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:159, column:116,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:116,the value of plot_cost is         : 19.055158311298054 

 At row:159, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:159, column:117,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:117,the value of plot_cost is         : 19.204698546573507 

 At row:159, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:159, column:118,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:118,the value of plot_cost is         : 19.355046842251465 

 At row:159, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:159, column:119,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:119,the value of plot_cost is         : 19.506203198331935 

 At row:159, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:159, column:120,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:120,the value of plot_cost is         : 19.65816761481492 

 At row:159, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:159, column:121,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:121,the value of plot_cost is         : 19.810940091700427 

 At row:159, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:159, column:122,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:122,the value of plot_cost is         : 19.964520628988442 

 At row:159, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:159, column:123,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:123,the value of plot_cost is         : 20.118909226678984 

 At row:159, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:159, column:124,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:124,the value of plot_cost is         : 20.27410588477203 

 At row:159, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:159, column:125,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:125,the value of plot_cost is         : 20.430110603267597 

 At row:159, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:159, column:126,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:126,the value of plot_cost is         : 20.586923382165676 

 At row:159, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:159, column:127,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:127,the value of plot_cost is         : 20.744544221466278 

 At row:159, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:159, column:128,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:128,the value of plot_cost is         : 20.902973121169385 

 At row:159, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:159, column:129,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:129,the value of plot_cost is         : 21.06221008127501 

 At row:159, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:159, column:130,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:130,the value of plot_cost is         : 21.222255101783144 

 At row:159, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:159, column:131,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:131,the value of plot_cost is         : 21.3831081826938 

 At row:159, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:159, column:132,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:132,the value of plot_cost is         : 21.544769324006964 

 At row:159, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:159, column:133,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:133,the value of plot_cost is         : 21.70723852572266 

 At row:159, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:159, column:134,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:134,the value of plot_cost is         : 21.87051578784086 

 At row:159, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:159, column:135,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:135,the value of plot_cost is         : 22.03460111036157 

 At row:159, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:159, column:136,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:136,the value of plot_cost is         : 22.199494493284803 

 At row:159, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:159, column:137,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:137,the value of plot_cost is         : 22.365195936610558 

 At row:159, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:159, column:138,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:138,the value of plot_cost is         : 22.531705440338815 

 At row:159, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:159, column:139,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:139,the value of plot_cost is         : 22.699023004469588 

 At row:159, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:159, column:140,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:140,the value of plot_cost is         : 22.867148629002873 

 At row:159, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:159, column:141,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:141,the value of plot_cost is         : 23.036082313938678 

 At row:159, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:159, column:142,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:142,the value of plot_cost is         : 23.205824059276996 

 At row:159, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:159, column:143,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:143,the value of plot_cost is         : 23.376373865017843 

 At row:159, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:159, column:144,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:144,the value of plot_cost is         : 23.54773173116119 

 At row:159, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:159, column:145,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:145,the value of plot_cost is         : 23.719897657707065 

 At row:159, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:159, column:146,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:146,the value of plot_cost is         : 23.89287164465544 

 At row:159, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:159, column:147,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:147,the value of plot_cost is         : 24.066653692006344 

 At row:159, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:159, column:148,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:148,the value of plot_cost is         : 24.24124379975975 

 At row:159, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:159, column:149,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:149,the value of plot_cost is         : 24.416641967915677 

 At row:159, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:159, column:150,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:150,the value of plot_cost is         : 24.592848196474115 

 At row:159, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:159, column:151,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:151,the value of plot_cost is         : 24.76986248543507 

 At row:159, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:159, column:152,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:152,the value of plot_cost is         : 24.94768483479854 

 At row:159, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:159, column:153,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:153,the value of plot_cost is         : 25.12631524456453 

 At row:159, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:159, column:154,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:154,the value of plot_cost is         : 25.305753714733044 

 At row:159, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:159, column:155,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:155,the value of plot_cost is         : 25.486000245304055 

 At row:159, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:159, column:156,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:156,the value of plot_cost is         : 25.667054836277593 

 At row:159, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:159, column:157,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:157,the value of plot_cost is         : 25.84891748765364 

 At row:159, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:159, column:158,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:158,the value of plot_cost is         : 26.0315881994322 

 At row:159, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:159, column:159,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:159,the value of plot_cost is         : 26.215066971613272 

 At row:159, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:159, column:160,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:160,the value of plot_cost is         : 26.399353804196867 

 At row:159, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:159, column:161,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:161,the value of plot_cost is         : 26.58444869718297 

 At row:159, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:159, column:162,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:162,the value of plot_cost is         : 26.77035165057159 

 At row:159, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:159, column:163,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:163,the value of plot_cost is         : 26.957062664362734 

 At row:159, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:159, column:164,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:164,the value of plot_cost is         : 27.144581738556386 

 At row:159, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:159, column:165,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:165,the value of plot_cost is         : 27.332908873152558 

 At row:159, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:159, column:166,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:166,the value of plot_cost is         : 27.52204406815125 

 At row:159, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:159, column:167,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:167,the value of plot_cost is         : 27.711987323552442 

 At row:159, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:159, column:168,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:168,the value of plot_cost is         : 27.90273863935615 

 At row:159, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:159, column:169,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:169,the value of plot_cost is         : 28.094298015562384 

 At row:159, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:159, column:170,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:170,the value of plot_cost is         : 28.28666545217112 

 At row:159, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:159, column:171,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:171,the value of plot_cost is         : 28.47984094918238 

 At row:159, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:159, column:172,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:172,the value of plot_cost is         : 28.673824506596148 

 At row:159, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:159, column:173,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:173,the value of plot_cost is         : 28.86861612441244 

 At row:159, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:159, column:174,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:174,the value of plot_cost is         : 29.064215802631256 

 At row:159, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:159, column:175,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:175,the value of plot_cost is         : 29.26062354125257 

 At row:159, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:159, column:176,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:176,the value of plot_cost is         : 29.45783934027641 

 At row:159, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:159, column:177,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:177,the value of plot_cost is         : 29.655863199702754 

 At row:159, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:159, column:178,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:178,the value of plot_cost is         : 29.854695119531616 

 At row:159, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:159, column:179,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:179,the value of plot_cost is         : 30.054335099762998 

 At row:159, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:159, column:180,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:180,the value of plot_cost is         : 30.25478314039689 

 At row:159, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:159, column:181,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:181,the value of plot_cost is         : 30.456039241433302 

 At row:159, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:159, column:182,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:182,the value of plot_cost is         : 30.658103402872214 

 At row:159, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:159, column:183,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:183,the value of plot_cost is         : 30.860975624713667 

 At row:159, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:159, column:184,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:184,the value of plot_cost is         : 31.064655906957615 

 At row:159, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:159, column:185,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:185,the value of plot_cost is         : 31.26914424960409 

 At row:159, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:159, column:186,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:186,the value of plot_cost is         : 31.47444065265308 

 At row:159, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:159, column:187,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:187,the value of plot_cost is         : 31.680545116104575 

 At row:159, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:159, column:188,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:188,the value of plot_cost is         : 31.88745763995859 

 At row:159, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:159, column:189,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:189,the value of plot_cost is         : 32.09517822421512 

 At row:159, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:159, column:190,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:190,the value of plot_cost is         : 32.303706868874166 

 At row:159, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:159, column:191,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:191,the value of plot_cost is         : 32.51304357393572 

 At row:159, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:159, column:192,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:192,the value of plot_cost is         : 32.7231883393998 

 At row:159, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:159, column:193,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:193,the value of plot_cost is         : 32.93414116526639 

 At row:159, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:159, column:194,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:194,the value of plot_cost is         : 33.1459020515355 

 At row:159, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:159, column:195,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:195,the value of plot_cost is         : 33.35847099820712 

 At row:159, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:159, column:196,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:196,the value of plot_cost is         : 33.57184800528126 

 At row:159, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:159, column:197,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:197,the value of plot_cost is         : 33.78603307275791 

 At row:159, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:159, column:198,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:198,the value of plot_cost is         : 34.00102620063707 

 At row:159, column:199,the value of plot_t0 is           : 3.0
 At row:159, column:199,the value of plot_t1 is           : 2.1959798994974875
 At row:159, column:199,the value of plot_cost is         : 34.21682738891875 

 At row:160, column:0,the value of plot_t0 is           : -1.0
 At row:160, column:0,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:0,the value of plot_cost is         : 7.561363132965624 

 At row:160, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:160, column:1,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:1,the value of plot_cost is         : 7.619846504597652 

 At row:160, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:160, column:2,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:2,the value of plot_cost is         : 7.679137936632196 

 At row:160, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:160, column:3,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:3,the value of plot_cost is         : 7.7392374290692585 

 At row:160, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:160, column:4,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:4,the value of plot_cost is         : 7.800144981908833 

 At row:160, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:160, column:5,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:5,the value of plot_cost is         : 7.861860595150922 

 At row:160, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:160, column:6,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:6,the value of plot_cost is         : 7.924384268795524 

 At row:160, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:160, column:7,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:7,the value of plot_cost is         : 7.987716002842644 

 At row:160, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:160, column:8,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:8,the value of plot_cost is         : 8.051855797292284 

 At row:160, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:160, column:9,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:9,the value of plot_cost is         : 8.116803652144434 

 At row:160, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:160, column:10,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:10,the value of plot_cost is         : 8.182559567399098 

 At row:160, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:160, column:11,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:11,the value of plot_cost is         : 8.249123543056276 

 At row:160, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:160, column:12,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:12,the value of plot_cost is         : 8.316495579115971 

 At row:160, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:160, column:13,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:13,the value of plot_cost is         : 8.384675675578185 

 At row:160, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:160, column:14,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:14,the value of plot_cost is         : 8.453663832442912 

 At row:160, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:160, column:15,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:15,the value of plot_cost is         : 8.52346004971015 

 At row:160, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:160, column:16,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:16,the value of plot_cost is         : 8.594064327379904 

 At row:160, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:160, column:17,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:17,the value of plot_cost is         : 8.665476665452175 

 At row:160, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:160, column:18,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:18,the value of plot_cost is         : 8.737697063926964 

 At row:160, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:160, column:19,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:19,the value of plot_cost is         : 8.810725522804265 

 At row:160, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:160, column:20,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:20,the value of plot_cost is         : 8.88456204208408 

 At row:160, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:160, column:21,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:21,the value of plot_cost is         : 8.95920662176641 

 At row:160, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:160, column:22,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:22,the value of plot_cost is         : 9.034659261851255 

 At row:160, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:160, column:23,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:23,the value of plot_cost is         : 9.11091996233862 

 At row:160, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:160, column:24,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:24,the value of plot_cost is         : 9.187988723228498 

 At row:160, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:160, column:25,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:25,the value of plot_cost is         : 9.265865544520887 

 At row:160, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:160, column:26,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:26,the value of plot_cost is         : 9.344550426215793 

 At row:160, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:160, column:27,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:27,the value of plot_cost is         : 9.424043368313214 

 At row:160, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:160, column:28,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:28,the value of plot_cost is         : 9.504344370813156 

 At row:160, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:160, column:29,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:29,the value of plot_cost is         : 9.585453433715607 

 At row:160, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:160, column:30,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:30,the value of plot_cost is         : 9.66737055702057 

 At row:160, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:160, column:31,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:31,the value of plot_cost is         : 9.750095740728051 

 At row:160, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:160, column:32,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:32,the value of plot_cost is         : 9.833628984838048 

 At row:160, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:160, column:33,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:33,the value of plot_cost is         : 9.917970289350567 

 At row:160, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:160, column:34,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:34,the value of plot_cost is         : 10.003119654265593 

 At row:160, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:160, column:35,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:35,the value of plot_cost is         : 10.089077079583134 

 At row:160, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:160, column:36,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:36,the value of plot_cost is         : 10.175842565303189 

 At row:160, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:160, column:37,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:37,the value of plot_cost is         : 10.263416111425762 

 At row:160, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:160, column:38,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:38,the value of plot_cost is         : 10.351797717950854 

 At row:160, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:160, column:39,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:39,the value of plot_cost is         : 10.440987384878456 

 At row:160, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:160, column:40,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:40,the value of plot_cost is         : 10.530985112208572 

 At row:160, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:160, column:41,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:41,the value of plot_cost is         : 10.621790899941205 

 At row:160, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:160, column:42,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:42,the value of plot_cost is         : 10.713404748076352 

 At row:160, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:160, column:43,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:43,the value of plot_cost is         : 10.80582665661402 

 At row:160, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:160, column:44,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:44,the value of plot_cost is         : 10.899056625554197 

 At row:160, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:160, column:45,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:45,the value of plot_cost is         : 10.993094654896886 

 At row:160, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:160, column:46,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:46,the value of plot_cost is         : 11.087940744642095 

 At row:160, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:160, column:47,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:47,the value of plot_cost is         : 11.18359489478982 

 At row:160, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:160, column:48,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:48,the value of plot_cost is         : 11.280057105340063 

 At row:160, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:160, column:49,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:49,the value of plot_cost is         : 11.377327376292815 

 At row:160, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:160, column:50,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:50,the value of plot_cost is         : 11.47540570764808 

 At row:160, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:160, column:51,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:51,the value of plot_cost is         : 11.574292099405863 

 At row:160, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:160, column:52,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:52,the value of plot_cost is         : 11.673986551566164 

 At row:160, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:160, column:53,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:53,the value of plot_cost is         : 11.77448906412898 

 At row:160, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:160, column:54,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:54,the value of plot_cost is         : 11.875799637094309 

 At row:160, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:160, column:55,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:55,the value of plot_cost is         : 11.977918270462151 

 At row:160, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:160, column:56,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:56,the value of plot_cost is         : 12.080844964232508 

 At row:160, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:160, column:57,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:57,the value of plot_cost is         : 12.184579718405388 

 At row:160, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:160, column:58,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:58,the value of plot_cost is         : 12.289122532980777 

 At row:160, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:160, column:59,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:59,the value of plot_cost is         : 12.394473407958682 

 At row:160, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:160, column:60,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:60,the value of plot_cost is         : 12.500632343339099 

 At row:160, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:160, column:61,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:61,the value of plot_cost is         : 12.607599339122034 

 At row:160, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:160, column:62,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:62,the value of plot_cost is         : 12.715374395307483 

 At row:160, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:160, column:63,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:63,the value of plot_cost is         : 12.823957511895452 

 At row:160, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:160, column:64,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:64,the value of plot_cost is         : 12.933348688885932 

 At row:160, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:160, column:65,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:65,the value of plot_cost is         : 13.043547926278924 

 At row:160, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:160, column:66,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:66,the value of plot_cost is         : 13.154555224074434 

 At row:160, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:160, column:67,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:67,the value of plot_cost is         : 13.266370582272463 

 At row:160, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:160, column:68,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:68,the value of plot_cost is         : 13.378994000873002 

 At row:160, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:160, column:69,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:69,the value of plot_cost is         : 13.492425479876056 

 At row:160, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:160, column:70,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:70,the value of plot_cost is         : 13.606665019281628 

 At row:160, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:160, column:71,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:71,the value of plot_cost is         : 13.72171261908971 

 At row:160, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:160, column:72,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:72,the value of plot_cost is         : 13.837568279300314 

 At row:160, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:160, column:73,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:73,the value of plot_cost is         : 13.954231999913434 

 At row:160, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:160, column:74,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:74,the value of plot_cost is         : 14.071703780929061 

 At row:160, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:160, column:75,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:75,the value of plot_cost is         : 14.189983622347206 

 At row:160, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:160, column:76,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:76,the value of plot_cost is         : 14.309071524167866 

 At row:160, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:160, column:77,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:77,the value of plot_cost is         : 14.428967486391047 

 At row:160, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:160, column:78,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:78,the value of plot_cost is         : 14.549671509016738 

 At row:160, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:160, column:79,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:79,the value of plot_cost is         : 14.671183592044944 

 At row:160, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:160, column:80,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:80,the value of plot_cost is         : 14.793503735475662 

 At row:160, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:160, column:81,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:81,the value of plot_cost is         : 14.9166319393089 

 At row:160, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:160, column:82,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:82,the value of plot_cost is         : 15.040568203544648 

 At row:160, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:160, column:83,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:83,the value of plot_cost is         : 15.16531252818292 

 At row:160, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:160, column:84,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:84,the value of plot_cost is         : 15.290864913223702 

 At row:160, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:160, column:85,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:85,the value of plot_cost is         : 15.417225358666997 

 At row:160, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:160, column:86,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:86,the value of plot_cost is         : 15.544393864512807 

 At row:160, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:160, column:87,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:87,the value of plot_cost is         : 15.672370430761138 

 At row:160, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:160, column:88,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:88,the value of plot_cost is         : 15.80115505741198 

 At row:160, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:160, column:89,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:89,the value of plot_cost is         : 15.930747744465338 

 At row:160, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:160, column:90,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:90,the value of plot_cost is         : 16.061148491921205 

 At row:160, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:160, column:91,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:91,the value of plot_cost is         : 16.19235729977959 

 At row:160, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:160, column:92,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:92,the value of plot_cost is         : 16.324374168040496 

 At row:160, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:160, column:93,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:93,the value of plot_cost is         : 16.457199096703917 

 At row:160, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:160, column:94,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:94,the value of plot_cost is         : 16.59083208576985 

 At row:160, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:160, column:95,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:95,the value of plot_cost is         : 16.725273135238293 

 At row:160, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:160, column:96,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:96,the value of plot_cost is         : 16.860522245109255 

 At row:160, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:160, column:97,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:97,the value of plot_cost is         : 16.996579415382737 

 At row:160, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:160, column:98,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:98,the value of plot_cost is         : 17.133444646058734 

 At row:160, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:160, column:99,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:99,the value of plot_cost is         : 17.271117937137237 

 At row:160, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:160, column:100,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:100,the value of plot_cost is         : 17.40959928861826 

 At row:160, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:160, column:101,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:101,the value of plot_cost is         : 17.548888700501795 

 At row:160, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:160, column:102,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:102,the value of plot_cost is         : 17.688986172787853 

 At row:160, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:160, column:103,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:103,the value of plot_cost is         : 17.829891705476427 

 At row:160, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:160, column:104,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:104,the value of plot_cost is         : 17.97160529856751 

 At row:160, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:160, column:105,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:105,the value of plot_cost is         : 18.114126952061103 

 At row:160, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:160, column:106,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:106,the value of plot_cost is         : 18.257456665957214 

 At row:160, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:160, column:107,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:107,the value of plot_cost is         : 18.40159444025585 

 At row:160, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:160, column:108,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:108,the value of plot_cost is         : 18.546540274956993 

 At row:160, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:160, column:109,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:109,the value of plot_cost is         : 18.692294170060652 

 At row:160, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:160, column:110,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:110,the value of plot_cost is         : 18.838856125566824 

 At row:160, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:160, column:111,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:111,the value of plot_cost is         : 18.98622614147551 

 At row:160, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:160, column:112,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:112,the value of plot_cost is         : 19.134404217786717 

 At row:160, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:160, column:113,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:113,the value of plot_cost is         : 19.283390354500437 

 At row:160, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:160, column:114,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:114,the value of plot_cost is         : 19.433184551616673 

 At row:160, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:160, column:115,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:115,the value of plot_cost is         : 19.583786809135418 

 At row:160, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:160, column:116,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:116,the value of plot_cost is         : 19.73519712705668 

 At row:160, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:160, column:117,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:117,the value of plot_cost is         : 19.887415505380464 

 At row:160, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:160, column:118,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:118,the value of plot_cost is         : 20.04044194410676 

 At row:160, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:160, column:119,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:119,the value of plot_cost is         : 20.19427644323557 

 At row:160, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:160, column:120,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:120,the value of plot_cost is         : 20.34891900276689 

 At row:160, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:160, column:121,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:121,the value of plot_cost is         : 20.50436962270073 

 At row:160, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:160, column:122,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:122,the value of plot_cost is         : 20.660628303037086 

 At row:160, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:160, column:123,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:123,the value of plot_cost is         : 20.817695043775963 

 At row:160, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:160, column:124,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:124,the value of plot_cost is         : 20.975569844917345 

 At row:160, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:160, column:125,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:125,the value of plot_cost is         : 21.134252706461247 

 At row:160, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:160, column:126,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:126,the value of plot_cost is         : 21.293743628407658 

 At row:160, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:160, column:127,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:127,the value of plot_cost is         : 21.45404261075659 

 At row:160, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:160, column:128,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:128,the value of plot_cost is         : 21.61514965350804 

 At row:160, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:160, column:129,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:129,the value of plot_cost is         : 21.777064756661996 

 At row:160, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:160, column:130,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:130,the value of plot_cost is         : 21.939787920218475 

 At row:160, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:160, column:131,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:131,the value of plot_cost is         : 22.103319144177462 

 At row:160, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:160, column:132,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:132,the value of plot_cost is         : 22.26765842853897 

 At row:160, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:160, column:133,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:133,the value of plot_cost is         : 22.43280577330299 

 At row:160, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:160, column:134,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:134,the value of plot_cost is         : 22.598761178469527 

 At row:160, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:160, column:135,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:135,the value of plot_cost is         : 22.76552464403858 

 At row:160, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:160, column:136,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:136,the value of plot_cost is         : 22.93309617001015 

 At row:160, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:160, column:137,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:137,the value of plot_cost is         : 23.101475756384225 

 At row:160, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:160, column:138,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:138,the value of plot_cost is         : 23.270663403160828 

 At row:160, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:160, column:139,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:139,the value of plot_cost is         : 23.44065911033994 

 At row:160, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:160, column:140,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:140,the value of plot_cost is         : 23.61146287792156 

 At row:160, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:160, column:141,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:141,the value of plot_cost is         : 23.783074705905697 

 At row:160, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:160, column:142,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:142,the value of plot_cost is         : 23.95549459429236 

 At row:160, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:160, column:143,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:143,the value of plot_cost is         : 24.128722543081533 

 At row:160, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:160, column:144,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:144,the value of plot_cost is         : 24.302758552273225 

 At row:160, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:160, column:145,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:145,the value of plot_cost is         : 24.47760262186743 

 At row:160, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:160, column:146,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:146,the value of plot_cost is         : 24.653254751864136 

 At row:160, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:160, column:147,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:147,the value of plot_cost is         : 24.829714942263372 

 At row:160, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:160, column:148,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:148,the value of plot_cost is         : 25.00698319306512 

 At row:160, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:160, column:149,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:149,the value of plot_cost is         : 25.185059504269383 

 At row:160, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:160, column:150,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:150,the value of plot_cost is         : 25.36394387587616 

 At row:160, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:160, column:151,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:151,the value of plot_cost is         : 25.543636307885457 

 At row:160, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:160, column:152,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:152,the value of plot_cost is         : 25.72413680029726 

 At row:160, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:160, column:153,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:153,the value of plot_cost is         : 25.905445353111578 

 At row:160, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:160, column:154,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:154,the value of plot_cost is         : 26.087561966328416 

 At row:160, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:160, column:155,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:155,the value of plot_cost is         : 26.270486639947777 

 At row:160, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:160, column:156,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:156,the value of plot_cost is         : 26.454219373969647 

 At row:160, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:160, column:157,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:157,the value of plot_cost is         : 26.638760168394022 

 At row:160, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:160, column:158,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:158,the value of plot_cost is         : 26.82410902322093 

 At row:160, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:160, column:159,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:159,the value of plot_cost is         : 27.01026593845034 

 At row:160, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:160, column:160,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:160,the value of plot_cost is         : 27.19723091408226 

 At row:160, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:160, column:161,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:161,the value of plot_cost is         : 27.38500395011671 

 At row:160, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:160, column:162,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:162,the value of plot_cost is         : 27.573585046553667 

 At row:160, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:160, column:163,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:163,the value of plot_cost is         : 27.762974203393142 

 At row:160, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:160, column:164,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:164,the value of plot_cost is         : 27.953171420635137 

 At row:160, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:160, column:165,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:165,the value of plot_cost is         : 28.14417669827964 

 At row:160, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:160, column:166,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:166,the value of plot_cost is         : 28.33599003632666 

 At row:160, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:160, column:167,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:167,the value of plot_cost is         : 28.528611434776185 

 At row:160, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:160, column:168,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:168,the value of plot_cost is         : 28.72204089362824 

 At row:160, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:160, column:169,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:169,the value of plot_cost is         : 28.916278412882804 

 At row:160, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:160, column:170,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:170,the value of plot_cost is         : 29.111323992539877 

 At row:160, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:160, column:171,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:171,the value of plot_cost is         : 29.307177632599476 

 At row:160, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:160, column:172,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:172,the value of plot_cost is         : 29.503839333061585 

 At row:160, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:160, column:173,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:173,the value of plot_cost is         : 29.70130909392621 

 At row:160, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:160, column:174,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:174,the value of plot_cost is         : 29.899586915193343 

 At row:160, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:160, column:175,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:175,the value of plot_cost is         : 30.098672796863013 

 At row:160, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:160, column:176,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:176,the value of plot_cost is         : 30.29856673893518 

 At row:160, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:160, column:177,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:177,the value of plot_cost is         : 30.49926874140986 

 At row:160, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:160, column:178,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:178,the value of plot_cost is         : 30.70077880428706 

 At row:160, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:160, column:179,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:179,the value of plot_cost is         : 30.90309692756677 

 At row:160, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:160, column:180,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:180,the value of plot_cost is         : 31.106223111249005 

 At row:160, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:160, column:181,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:181,the value of plot_cost is         : 31.310157355333757 

 At row:160, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:160, column:182,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:182,the value of plot_cost is         : 31.514899659821012 

 At row:160, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:160, column:183,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:183,the value of plot_cost is         : 31.720450024710786 

 At row:160, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:160, column:184,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:184,the value of plot_cost is         : 31.926808450003087 

 At row:160, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:160, column:185,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:185,the value of plot_cost is         : 32.133974935697886 

 At row:160, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:160, column:186,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:186,the value of plot_cost is         : 32.341949481795204 

 At row:160, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:160, column:187,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:187,the value of plot_cost is         : 32.550732088295035 

 At row:160, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:160, column:188,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:188,the value of plot_cost is         : 32.76032275519739 

 At row:160, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:160, column:189,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:189,the value of plot_cost is         : 32.970721482502256 

 At row:160, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:160, column:190,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:190,the value of plot_cost is         : 33.18192827020963 

 At row:160, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:160, column:191,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:191,the value of plot_cost is         : 33.393943118319534 

 At row:160, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:160, column:192,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:192,the value of plot_cost is         : 33.60676602683194 

 At row:160, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:160, column:193,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:193,the value of plot_cost is         : 33.82039699574687 

 At row:160, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:160, column:194,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:194,the value of plot_cost is         : 34.03483602506431 

 At row:160, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:160, column:195,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:195,the value of plot_cost is         : 34.250083114784275 

 At row:160, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:160, column:196,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:196,the value of plot_cost is         : 34.46613826490674 

 At row:160, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:160, column:197,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:197,the value of plot_cost is         : 34.68300147543173 

 At row:160, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:160, column:198,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:198,the value of plot_cost is         : 34.90067274635923 

 At row:160, column:199,the value of plot_t0 is           : 3.0
 At row:160, column:199,the value of plot_t1 is           : 2.2160804020100504
 At row:160, column:199,the value of plot_cost is         : 35.11915207768925 

 At row:161, column:0,the value of plot_t0 is           : -1.0
 At row:161, column:0,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:0,the value of plot_cost is         : 7.943320009956462 

 At row:161, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:161, column:1,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:1,the value of plot_cost is         : 8.004481524636827 

 At row:161, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:161, column:2,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:2,the value of plot_cost is         : 8.066451099719707 

 At row:161, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:161, column:3,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:3,the value of plot_cost is         : 8.129228735205105 

 At row:161, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:161, column:4,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:4,the value of plot_cost is         : 8.192814431093016 

 At row:161, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:161, column:5,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:5,the value of plot_cost is         : 8.257208187383439 

 At row:161, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:161, column:6,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:6,the value of plot_cost is         : 8.32241000407638 

 At row:161, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:161, column:7,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:7,the value of plot_cost is         : 8.388419881171835 

 At row:161, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:161, column:8,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:8,the value of plot_cost is         : 8.455237818669808 

 At row:161, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:161, column:9,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:9,the value of plot_cost is         : 8.522863816570295 

 At row:161, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:161, column:10,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:10,the value of plot_cost is         : 8.591297874873293 

 At row:161, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:161, column:11,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:11,the value of plot_cost is         : 8.660539993578809 

 At row:161, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:161, column:12,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:12,the value of plot_cost is         : 8.730590172686838 

 At row:161, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:161, column:13,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:13,the value of plot_cost is         : 8.80144841219739 

 At row:161, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:161, column:14,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:14,the value of plot_cost is         : 8.873114712110452 

 At row:161, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:161, column:15,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:15,the value of plot_cost is         : 8.945589072426024 

 At row:161, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:161, column:16,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:16,the value of plot_cost is         : 9.018871493144117 

 At row:161, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:161, column:17,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:17,the value of plot_cost is         : 9.092961974264723 

 At row:161, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:161, column:18,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:18,the value of plot_cost is         : 9.167860515787845 

 At row:161, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:161, column:19,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:19,the value of plot_cost is         : 9.243567117713484 

 At row:161, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:161, column:20,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:20,the value of plot_cost is         : 9.320081780041635 

 At row:161, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:161, column:21,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:21,the value of plot_cost is         : 9.397404502772298 

 At row:161, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:161, column:22,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:22,the value of plot_cost is         : 9.475535285905481 

 At row:161, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:161, column:23,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:23,the value of plot_cost is         : 9.55447412944118 

 At row:161, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:161, column:24,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:24,the value of plot_cost is         : 9.634221033379394 

 At row:161, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:161, column:25,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:25,the value of plot_cost is         : 9.71477599772012 

 At row:161, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:161, column:26,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:26,the value of plot_cost is         : 9.79613902246336 

 At row:161, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:161, column:27,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:27,the value of plot_cost is         : 9.878310107609117 

 At row:161, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:161, column:28,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:28,the value of plot_cost is         : 9.961289253157394 

 At row:161, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:161, column:29,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:29,the value of plot_cost is         : 10.04507645910818 

 At row:161, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:161, column:30,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:30,the value of plot_cost is         : 10.129671725461483 

 At row:161, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:161, column:31,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:31,the value of plot_cost is         : 10.2150750522173 

 At row:161, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:161, column:32,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:32,the value of plot_cost is         : 10.301286439375632 

 At row:161, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:161, column:33,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:33,the value of plot_cost is         : 10.388305886936484 

 At row:161, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:161, column:34,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:34,the value of plot_cost is         : 10.476133394899847 

 At row:161, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:161, column:35,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:35,the value of plot_cost is         : 10.564768963265722 

 At row:161, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:161, column:36,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:36,the value of plot_cost is         : 10.654212592034115 

 At row:161, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:161, column:37,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:37,the value of plot_cost is         : 10.744464281205024 

 At row:161, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:161, column:38,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:38,the value of plot_cost is         : 10.83552403077845 

 At row:161, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:161, column:39,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:39,the value of plot_cost is         : 10.927391840754389 

 At row:161, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:161, column:40,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:40,the value of plot_cost is         : 11.02006771113284 

 At row:161, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:161, column:41,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:41,the value of plot_cost is         : 11.113551641913807 

 At row:161, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:161, column:42,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:42,the value of plot_cost is         : 11.207843633097289 

 At row:161, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:161, column:43,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:43,the value of plot_cost is         : 11.302943684683294 

 At row:161, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:161, column:44,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:44,the value of plot_cost is         : 11.398851796671808 

 At row:161, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:161, column:45,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:45,the value of plot_cost is         : 11.495567969062835 

 At row:161, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:161, column:46,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:46,the value of plot_cost is         : 11.593092201856376 

 At row:161, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:161, column:47,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:47,the value of plot_cost is         : 11.691424495052436 

 At row:161, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:161, column:48,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:48,the value of plot_cost is         : 11.790564848651016 

 At row:161, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:161, column:49,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:49,the value of plot_cost is         : 11.890513262652103 

 At row:161, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:161, column:50,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:50,the value of plot_cost is         : 11.991269737055708 

 At row:161, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:161, column:51,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:51,the value of plot_cost is         : 12.092834271861825 

 At row:161, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:161, column:52,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:52,the value of plot_cost is         : 12.195206867070464 

 At row:161, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:161, column:53,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:53,the value of plot_cost is         : 12.298387522681614 

 At row:161, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:161, column:54,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:54,the value of plot_cost is         : 12.402376238695277 

 At row:161, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:161, column:55,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:55,the value of plot_cost is         : 12.507173015111455 

 At row:161, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:161, column:56,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:56,the value of plot_cost is         : 12.612777851930149 

 At row:161, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:161, column:57,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:57,the value of plot_cost is         : 12.719190749151359 

 At row:161, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:161, column:58,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:58,the value of plot_cost is         : 12.82641170677509 

 At row:161, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:161, column:59,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:59,the value of plot_cost is         : 12.934440724801329 

 At row:161, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:161, column:60,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:60,the value of plot_cost is         : 13.043277803230083 

 At row:161, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:161, column:61,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:61,the value of plot_cost is         : 13.152922942061348 

 At row:161, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:161, column:62,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:62,the value of plot_cost is         : 13.263376141295144 

 At row:161, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:161, column:63,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:63,the value of plot_cost is         : 13.37463740093144 

 At row:161, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:161, column:64,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:64,the value of plot_cost is         : 13.486706720970256 

 At row:161, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:161, column:65,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:65,the value of plot_cost is         : 13.599584101411587 

 At row:161, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:161, column:66,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:66,the value of plot_cost is         : 13.713269542255428 

 At row:161, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:161, column:67,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:67,the value of plot_cost is         : 13.827763043501792 

 At row:161, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:161, column:68,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:68,the value of plot_cost is         : 13.94306460515067 

 At row:161, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:161, column:69,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:69,the value of plot_cost is         : 14.05917422720206 

 At row:161, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:161, column:70,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:70,the value of plot_cost is         : 14.176091909655966 

 At row:161, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:161, column:71,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:71,the value of plot_cost is         : 14.293817652512383 

 At row:161, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:161, column:72,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:72,the value of plot_cost is         : 14.41235145577133 

 At row:161, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:161, column:73,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:73,the value of plot_cost is         : 14.53169331943278 

 At row:161, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:161, column:74,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:74,the value of plot_cost is         : 14.651843243496744 

 At row:161, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:161, column:75,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:75,the value of plot_cost is         : 14.772801227963225 

 At row:161, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:161, column:76,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:76,the value of plot_cost is         : 14.894567272832221 

 At row:161, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:161, column:77,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:77,the value of plot_cost is         : 15.01714137810373 

 At row:161, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:161, column:78,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:78,the value of plot_cost is         : 15.140523543777764 

 At row:161, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:161, column:79,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:79,the value of plot_cost is         : 15.264713769854303 

 At row:161, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:161, column:80,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:80,the value of plot_cost is         : 15.389712056333357 

 At row:161, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:161, column:81,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:81,the value of plot_cost is         : 15.51551840321493 

 At row:161, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:161, column:82,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:82,the value of plot_cost is         : 15.642132810499024 

 At row:161, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:161, column:83,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:83,the value of plot_cost is         : 15.769555278185626 

 At row:161, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:161, column:84,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:84,the value of plot_cost is         : 15.897785806274742 

 At row:161, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:161, column:85,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:85,the value of plot_cost is         : 16.02682439476637 

 At row:161, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:161, column:86,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:86,the value of plot_cost is         : 16.156671043660516 

 At row:161, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:161, column:87,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:87,the value of plot_cost is         : 16.28732575295718 

 At row:161, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:161, column:88,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:88,the value of plot_cost is         : 16.418788522656367 

 At row:161, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:161, column:89,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:89,the value of plot_cost is         : 16.551059352758056 

 At row:161, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:161, column:90,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:90,the value of plot_cost is         : 16.68413824326226 

 At row:161, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:161, column:91,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:91,the value of plot_cost is         : 16.818025194168982 

 At row:161, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:161, column:92,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:92,the value of plot_cost is         : 16.952720205478226 

 At row:161, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:161, column:93,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:93,the value of plot_cost is         : 17.08822327718998 

 At row:161, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:161, column:94,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:94,the value of plot_cost is         : 17.224534409304244 

 At row:161, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:161, column:95,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:95,the value of plot_cost is         : 17.361653601821025 

 At row:161, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:161, column:96,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:96,the value of plot_cost is         : 17.499580854740323 

 At row:161, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:161, column:97,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:97,the value of plot_cost is         : 17.638316168062136 

 At row:161, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:161, column:98,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:98,the value of plot_cost is         : 17.777859541786473 

 At row:161, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:161, column:99,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:99,the value of plot_cost is         : 17.918210975913315 

 At row:161, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:161, column:100,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:100,the value of plot_cost is         : 18.059370470442673 

 At row:161, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:161, column:101,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:101,the value of plot_cost is         : 18.201338025374543 

 At row:161, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:161, column:102,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:102,the value of plot_cost is         : 18.34411364070894 

 At row:161, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:161, column:103,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:103,the value of plot_cost is         : 18.487697316445843 

 At row:161, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:161, column:104,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:104,the value of plot_cost is         : 18.63208905258526 

 At row:161, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:161, column:105,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:105,the value of plot_cost is         : 18.777288849127192 

 At row:161, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:161, column:106,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:106,the value of plot_cost is         : 18.92329670607164 

 At row:161, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:161, column:107,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:107,the value of plot_cost is         : 19.070112623418606 

 At row:161, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:161, column:108,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:108,the value of plot_cost is         : 19.217736601168088 

 At row:161, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:161, column:109,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:109,the value of plot_cost is         : 19.366168639320083 

 At row:161, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:161, column:110,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:110,the value of plot_cost is         : 19.51540873787459 

 At row:161, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:161, column:111,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:111,the value of plot_cost is         : 19.665456896831614 

 At row:161, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:161, column:112,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:112,the value of plot_cost is         : 19.816313116191157 

 At row:161, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:161, column:113,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:113,the value of plot_cost is         : 19.967977395953213 

 At row:161, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:161, column:114,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:114,the value of plot_cost is         : 20.12044973611778 

 At row:161, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:161, column:115,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:115,the value of plot_cost is         : 20.273730136684865 

 At row:161, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:161, column:116,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:116,the value of plot_cost is         : 20.42781859765446 

 At row:161, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:161, column:117,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:117,the value of plot_cost is         : 20.582715119026577 

 At row:161, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:161, column:118,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:118,the value of plot_cost is         : 20.738419700801217 

 At row:161, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:161, column:119,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:119,the value of plot_cost is         : 20.89493234297836 

 At row:161, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:161, column:120,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:120,the value of plot_cost is         : 21.052253045558018 

 At row:161, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:161, column:121,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:121,the value of plot_cost is         : 21.21038180854019 

 At row:161, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:161, column:122,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:122,the value of plot_cost is         : 21.369318631924887 

 At row:161, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:161, column:123,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:123,the value of plot_cost is         : 21.5290635157121 

 At row:161, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:161, column:124,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:124,the value of plot_cost is         : 21.689616459901814 

 At row:161, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:161, column:125,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:125,the value of plot_cost is         : 21.850977464494047 

 At row:161, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:161, column:126,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:126,the value of plot_cost is         : 22.013146529488797 

 At row:161, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:161, column:127,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:127,the value of plot_cost is         : 22.176123654886062 

 At row:161, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:161, column:128,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:128,the value of plot_cost is         : 22.339908840685847 

 At row:161, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:161, column:129,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:129,the value of plot_cost is         : 22.504502086888138 

 At row:161, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:161, column:130,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:130,the value of plot_cost is         : 22.669903393492955 

 At row:161, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:161, column:131,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:131,the value of plot_cost is         : 22.83611276050028 

 At row:161, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:161, column:132,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:132,the value of plot_cost is         : 23.00313018791013 

 At row:161, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:161, column:133,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:133,the value of plot_cost is         : 23.170955675722485 

 At row:161, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:161, column:134,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:134,the value of plot_cost is         : 23.339589223937352 

 At row:161, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:161, column:135,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:135,the value of plot_cost is         : 23.509030832554743 

 At row:161, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:161, column:136,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:136,the value of plot_cost is         : 23.679280501574638 

 At row:161, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:161, column:137,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:137,the value of plot_cost is         : 23.850338230997057 

 At row:161, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:161, column:138,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:138,the value of plot_cost is         : 24.02220402082199 

 At row:161, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:161, column:139,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:139,the value of plot_cost is         : 24.194877871049446 

 At row:161, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:161, column:140,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:140,the value of plot_cost is         : 24.368359781679406 

 At row:161, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:161, column:141,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:141,the value of plot_cost is         : 24.542649752711878 

 At row:161, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:161, column:142,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:142,the value of plot_cost is         : 24.717747784146873 

 At row:161, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:161, column:143,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:143,the value of plot_cost is         : 24.89365387598438 

 At row:161, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:161, column:144,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:144,the value of plot_cost is         : 25.0703680282244 

 At row:161, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:161, column:145,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:145,the value of plot_cost is         : 25.247890240866937 

 At row:161, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:161, column:146,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:146,the value of plot_cost is         : 25.426220513911986 

 At row:161, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:161, column:147,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:147,the value of plot_cost is         : 25.605358847359557 

 At row:161, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:161, column:148,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:148,the value of plot_cost is         : 25.78530524120965 

 At row:161, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:161, column:149,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:149,the value of plot_cost is         : 25.96605969546224 

 At row:161, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:161, column:150,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:150,the value of plot_cost is         : 26.147622210117362 

 At row:161, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:161, column:151,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:151,the value of plot_cost is         : 26.329992785174987 

 At row:161, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:161, column:152,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:152,the value of plot_cost is         : 26.513171420635135 

 At row:161, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:161, column:153,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:153,the value of plot_cost is         : 26.697158116497793 

 At row:161, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:161, column:154,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:154,the value of plot_cost is         : 26.881952872762962 

 At row:161, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:161, column:155,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:155,the value of plot_cost is         : 27.067555689430648 

 At row:161, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:161, column:156,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:156,the value of plot_cost is         : 27.253966566500853 

 At row:161, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:161, column:157,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:157,the value of plot_cost is         : 27.441185503973564 

 At row:161, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:161, column:158,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:158,the value of plot_cost is         : 27.629212501848805 

 At row:161, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:161, column:159,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:159,the value of plot_cost is         : 27.818047560126566 

 At row:161, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:161, column:160,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:160,the value of plot_cost is         : 28.007690678806817 

 At row:161, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:161, column:161,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:161,the value of plot_cost is         : 28.198141857889603 

 At row:161, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:161, column:162,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:162,the value of plot_cost is         : 28.3894010973749 

 At row:161, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:161, column:163,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:163,the value of plot_cost is         : 28.58146839726271 

 At row:161, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:161, column:164,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:164,the value of plot_cost is         : 28.77434375755303 

 At row:161, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:161, column:165,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:165,the value of plot_cost is         : 28.968027178245862 

 At row:161, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:161, column:166,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:166,the value of plot_cost is         : 29.16251865934122 

 At row:161, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:161, column:167,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:167,the value of plot_cost is         : 29.35781820083909 

 At row:161, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:161, column:168,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:168,the value of plot_cost is         : 29.553925802739478 

 At row:161, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:161, column:169,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:169,the value of plot_cost is         : 29.750841465042374 

 At row:161, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:161, column:170,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:170,the value of plot_cost is         : 29.948565187747793 

 At row:161, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:161, column:171,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:171,the value of plot_cost is         : 30.147096970855728 

 At row:161, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:161, column:172,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:172,the value of plot_cost is         : 30.34643681436617 

 At row:161, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:161, column:173,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:173,the value of plot_cost is         : 30.546584718279135 

 At row:161, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:161, column:174,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:174,the value of plot_cost is         : 30.747540682594607 

 At row:161, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:161, column:175,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:175,the value of plot_cost is         : 30.949304707312592 

 At row:161, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:161, column:176,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:176,the value of plot_cost is         : 31.1518767924331 

 At row:161, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:161, column:177,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:177,the value of plot_cost is         : 31.355256937956117 

 At row:161, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:161, column:178,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:178,the value of plot_cost is         : 31.559445143881653 

 At row:161, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:161, column:179,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:179,the value of plot_cost is         : 31.764441410209706 

 At row:161, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:161, column:180,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:180,the value of plot_cost is         : 31.970245736940274 

 At row:161, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:161, column:181,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:181,the value of plot_cost is         : 32.17685812407336 

 At row:161, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:161, column:182,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:182,the value of plot_cost is         : 32.38427857160895 

 At row:161, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:161, column:183,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:183,the value of plot_cost is         : 32.59250707954706 

 At row:161, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:161, column:184,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:184,the value of plot_cost is         : 32.801543647887684 

 At row:161, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:161, column:185,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:185,the value of plot_cost is         : 33.011388276630825 

 At row:161, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:161, column:186,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:186,the value of plot_cost is         : 33.22204096577649 

 At row:161, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:161, column:187,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:187,the value of plot_cost is         : 33.43350171532465 

 At row:161, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:161, column:188,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:188,the value of plot_cost is         : 33.64577052527534 

 At row:161, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:161, column:189,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:189,the value of plot_cost is         : 33.858847395628544 

 At row:161, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:161, column:190,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:190,the value of plot_cost is         : 34.07273232638426 

 At row:161, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:161, column:191,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:191,the value of plot_cost is         : 34.2874253175425 

 At row:161, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:161, column:192,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:192,the value of plot_cost is         : 34.50292636910324 

 At row:161, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:161, column:193,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:193,the value of plot_cost is         : 34.71923548106651 

 At row:161, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:161, column:194,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:194,the value of plot_cost is         : 34.93635265343228 

 At row:161, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:161, column:195,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:195,the value of plot_cost is         : 35.15427788620057 

 At row:161, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:161, column:196,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:196,the value of plot_cost is         : 35.37301117937138 

 At row:161, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:161, column:197,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:197,the value of plot_cost is         : 35.5925525329447 

 At row:161, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:161, column:198,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:198,the value of plot_cost is         : 35.81290194692054 

 At row:161, column:199,the value of plot_t0 is           : 3.0
 At row:161, column:199,the value of plot_t1 is           : 2.2361809045226133
 At row:161, column:199,the value of plot_cost is         : 36.0340594212989 

 At row:162, column:0,the value of plot_t0 is           : -1.0
 At row:162, column:0,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:0,the value of plot_cost is         : 8.337859541786461 

 At row:162, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:162, column:1,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:1,the value of plot_cost is         : 8.401699199515159 

 At row:162, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:162, column:2,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:2,the value of plot_cost is         : 8.466346917646376 

 At row:162, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:162, column:3,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:3,the value of plot_cost is         : 8.53180269618011 

 At row:162, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:162, column:4,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:4,the value of plot_cost is         : 8.598066535116358 

 At row:162, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:162, column:5,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:5,the value of plot_cost is         : 8.665138434455116 

 At row:162, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:162, column:6,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:6,the value of plot_cost is         : 8.73301839419639 

 At row:162, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:162, column:7,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:7,the value of plot_cost is         : 8.801706414340181 

 At row:162, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:162, column:8,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:8,the value of plot_cost is         : 8.871202494886493 

 At row:162, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:162, column:9,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:9,the value of plot_cost is         : 8.941506635835312 

 At row:162, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:162, column:10,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:10,the value of plot_cost is         : 9.012618837186649 

 At row:162, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:162, column:11,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:11,the value of plot_cost is         : 9.0845390989405 

 At row:162, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:162, column:12,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:12,the value of plot_cost is         : 9.157267421096865 

 At row:162, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:162, column:13,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:13,the value of plot_cost is         : 9.230803803655752 

 At row:162, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:162, column:14,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:14,the value of plot_cost is         : 9.305148246617149 

 At row:162, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:162, column:15,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:15,the value of plot_cost is         : 9.380300749981059 

 At row:162, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:162, column:16,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:16,the value of plot_cost is         : 9.456261313747484 

 At row:162, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:162, column:17,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:17,the value of plot_cost is         : 9.533029937916426 

 At row:162, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:162, column:18,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:18,the value of plot_cost is         : 9.610606622487888 

 At row:162, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:162, column:19,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:19,the value of plot_cost is         : 9.688991367461858 

 At row:162, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:162, column:20,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:20,the value of plot_cost is         : 9.768184172838346 

 At row:162, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:162, column:21,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:21,the value of plot_cost is         : 9.848185038617348 

 At row:162, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:162, column:22,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:22,the value of plot_cost is         : 9.928993964798865 

 At row:162, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:162, column:23,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:23,the value of plot_cost is         : 10.0106109513829 

 At row:162, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:162, column:24,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:24,the value of plot_cost is         : 10.09303599836945 

 At row:162, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:162, column:25,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:25,the value of plot_cost is         : 10.17626910575851 

 At row:162, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:162, column:26,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:26,the value of plot_cost is         : 10.260310273550088 

 At row:162, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:162, column:27,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:27,the value of plot_cost is         : 10.345159501744178 

 At row:162, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:162, column:28,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:28,the value of plot_cost is         : 10.43081679034079 

 At row:162, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:162, column:29,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:29,the value of plot_cost is         : 10.517282139339914 

 At row:162, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:162, column:30,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:30,the value of plot_cost is         : 10.60455554874155 

 At row:162, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:162, column:31,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:31,the value of plot_cost is         : 10.692637018545703 

 At row:162, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:162, column:32,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:32,the value of plot_cost is         : 10.781526548752371 

 At row:162, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:162, column:33,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:33,the value of plot_cost is         : 10.87122413936156 

 At row:162, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:162, column:34,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:34,the value of plot_cost is         : 10.961729790373258 

 At row:162, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:162, column:35,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:35,the value of plot_cost is         : 11.05304350178747 

 At row:162, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:162, column:36,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:36,the value of plot_cost is         : 11.1451652736042 

 At row:162, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:162, column:37,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:37,the value of plot_cost is         : 11.238095105823442 

 At row:162, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:162, column:38,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:38,the value of plot_cost is         : 11.331832998445202 

 At row:162, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:162, column:39,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:39,the value of plot_cost is         : 11.426378951469479 

 At row:162, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:162, column:40,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:40,the value of plot_cost is         : 11.521732964896264 

 At row:162, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:162, column:41,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:41,the value of plot_cost is         : 11.61789503872557 

 At row:162, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:162, column:42,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:42,the value of plot_cost is         : 11.714865172957388 

 At row:162, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:162, column:43,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:43,the value of plot_cost is         : 11.812643367591726 

 At row:162, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:162, column:44,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:44,the value of plot_cost is         : 11.911229622628575 

 At row:162, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:162, column:45,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:45,the value of plot_cost is         : 12.010623938067939 

 At row:162, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:162, column:46,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:46,the value of plot_cost is         : 12.110826313909817 

 At row:162, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:162, column:47,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:47,the value of plot_cost is         : 12.21183675015421 

 At row:162, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:162, column:48,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:48,the value of plot_cost is         : 12.313655246801126 

 At row:162, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:162, column:49,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:49,the value of plot_cost is         : 12.416281803850548 

 At row:162, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:162, column:50,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:50,the value of plot_cost is         : 12.51971642130249 

 At row:162, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:162, column:51,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:51,the value of plot_cost is         : 12.623959099156943 

 At row:162, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:162, column:52,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:52,the value of plot_cost is         : 12.729009837413916 

 At row:162, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:162, column:53,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:53,the value of plot_cost is         : 12.834868636073402 

 At row:162, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:162, column:54,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:54,the value of plot_cost is         : 12.941535495135403 

 At row:162, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:162, column:55,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:55,the value of plot_cost is         : 13.049010414599914 

 At row:162, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:162, column:56,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:56,the value of plot_cost is         : 13.157293394466947 

 At row:162, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:162, column:57,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:57,the value of plot_cost is         : 13.266384434736494 

 At row:162, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:162, column:58,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:58,the value of plot_cost is         : 13.376283535408556 

 At row:162, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:162, column:59,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:59,the value of plot_cost is         : 13.486990696483133 

 At row:162, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:162, column:60,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:60,the value of plot_cost is         : 13.598505917960221 

 At row:162, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:162, column:61,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:61,the value of plot_cost is         : 13.710829199839827 

 At row:162, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:162, column:62,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:62,the value of plot_cost is         : 13.823960542121949 

 At row:162, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:162, column:63,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:63,the value of plot_cost is         : 13.937899944806588 

 At row:162, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:162, column:64,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:64,the value of plot_cost is         : 14.052647407893739 

 At row:162, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:162, column:65,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:65,the value of plot_cost is         : 14.1682029313834 

 At row:162, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:162, column:66,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:66,the value of plot_cost is         : 14.284566515275582 

 At row:162, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:162, column:67,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:67,the value of plot_cost is         : 14.401738159570282 

 At row:162, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:162, column:68,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:68,the value of plot_cost is         : 14.519717864267495 

 At row:162, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:162, column:69,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:69,the value of plot_cost is         : 14.63850562936722 

 At row:162, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:162, column:70,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:70,the value of plot_cost is         : 14.758101454869461 

 At row:162, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:162, column:71,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:71,the value of plot_cost is         : 14.878505340774218 

 At row:162, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:162, column:72,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:72,the value of plot_cost is         : 14.99971728708149 

 At row:162, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:162, column:73,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:73,the value of plot_cost is         : 15.12173729379128 

 At row:162, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:162, column:74,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:74,the value of plot_cost is         : 15.244565360903582 

 At row:162, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:162, column:75,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:75,the value of plot_cost is         : 15.368201488418398 

 At row:162, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:162, column:76,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:76,the value of plot_cost is         : 15.49264567633573 

 At row:162, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:162, column:77,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:77,the value of plot_cost is         : 15.61789792465558 

 At row:162, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:162, column:78,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:78,the value of plot_cost is         : 15.743958233377944 

 At row:162, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:162, column:79,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:79,the value of plot_cost is         : 15.87082660250282 

 At row:162, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:162, column:80,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:80,the value of plot_cost is         : 15.99850303203021 

 At row:162, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:162, column:81,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:81,the value of plot_cost is         : 16.126987521960118 

 At row:162, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:162, column:82,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:82,the value of plot_cost is         : 16.25628007229254 

 At row:162, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:162, column:83,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:83,the value of plot_cost is         : 16.386380683027483 

 At row:162, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:162, column:84,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:84,the value of plot_cost is         : 16.517289354164934 

 At row:162, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:162, column:85,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:85,the value of plot_cost is         : 16.6490060857049 

 At row:162, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:162, column:86,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:86,the value of plot_cost is         : 16.781530877647384 

 At row:162, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:162, column:87,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:87,the value of plot_cost is         : 16.914863729992387 

 At row:162, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:162, column:88,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:88,the value of plot_cost is         : 17.0490046427399 

 At row:162, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:162, column:89,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:89,the value of plot_cost is         : 17.183953615889926 

 At row:162, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:162, column:90,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:90,the value of plot_cost is         : 17.31971064944247 

 At row:162, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:162, column:91,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:91,the value of plot_cost is         : 17.456275743397526 

 At row:162, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:162, column:92,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:92,the value of plot_cost is         : 17.593648897755102 

 At row:162, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:162, column:93,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:93,the value of plot_cost is         : 17.731830112515194 

 At row:162, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:162, column:94,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:94,the value of plot_cost is         : 17.870819387677795 

 At row:162, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:162, column:95,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:95,the value of plot_cost is         : 18.010616723242915 

 At row:162, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:162, column:96,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:96,the value of plot_cost is         : 18.151222119210548 

 At row:162, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:162, column:97,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:97,the value of plot_cost is         : 18.2926355755807 

 At row:162, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:162, column:98,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:98,the value of plot_cost is         : 18.434857092353365 

 At row:162, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:162, column:99,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:99,the value of plot_cost is         : 18.577886669528542 

 At row:162, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:162, column:100,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:100,the value of plot_cost is         : 18.721724307106236 

 At row:162, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:162, column:101,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:101,the value of plot_cost is         : 18.86637000508645 

 At row:162, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:162, column:102,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:102,the value of plot_cost is         : 19.01182376346917 

 At row:162, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:162, column:103,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:103,the value of plot_cost is         : 19.158085582254415 

 At row:162, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:162, column:104,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:104,the value of plot_cost is         : 19.30515546144217 

 At row:162, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:162, column:105,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:105,the value of plot_cost is         : 19.453033401032435 

 At row:162, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:162, column:106,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:106,the value of plot_cost is         : 19.60171940102522 

 At row:162, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:162, column:107,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:107,the value of plot_cost is         : 19.751213461420523 

 At row:162, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:162, column:108,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:108,the value of plot_cost is         : 19.90151558221834 

 At row:162, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:162, column:109,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:109,the value of plot_cost is         : 20.052625763418668 

 At row:162, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:162, column:110,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:110,the value of plot_cost is         : 20.204544005021514 

 At row:162, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:162, column:111,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:111,the value of plot_cost is         : 20.357270307026877 

 At row:162, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:162, column:112,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:112,the value of plot_cost is         : 20.510804669434748 

 At row:162, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:162, column:113,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:113,the value of plot_cost is         : 20.66514709224514 

 At row:162, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:162, column:114,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:114,the value of plot_cost is         : 20.820297575458046 

 At row:162, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:162, column:115,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:115,the value of plot_cost is         : 20.97625611907347 

 At row:162, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:162, column:116,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:116,the value of plot_cost is         : 21.1330227230914 

 At row:162, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:162, column:117,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:117,the value of plot_cost is         : 21.290597387511855 

 At row:162, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:162, column:118,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:118,the value of plot_cost is         : 21.44898011233482 

 At row:162, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:162, column:119,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:119,the value of plot_cost is         : 21.608170897560303 

 At row:162, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:162, column:120,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:120,the value of plot_cost is         : 21.7681697431883 

 At row:162, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:162, column:121,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:121,the value of plot_cost is         : 21.928976649218814 

 At row:162, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:162, column:122,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:122,the value of plot_cost is         : 22.090591615651835 

 At row:162, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:162, column:123,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:123,the value of plot_cost is         : 22.253014642487383 

 At row:162, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:162, column:124,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:124,the value of plot_cost is         : 22.416245729725436 

 At row:162, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:162, column:125,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:125,the value of plot_cost is         : 22.580284877366008 

 At row:162, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:162, column:126,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:126,the value of plot_cost is         : 22.745132085409093 

 At row:162, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:162, column:127,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:127,the value of plot_cost is         : 22.910787353854694 

 At row:162, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:162, column:128,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:128,the value of plot_cost is         : 23.07725068270281 

 At row:162, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:162, column:129,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:129,the value of plot_cost is         : 23.24452207195344 

 At row:162, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:162, column:130,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:130,the value of plot_cost is         : 23.412601521606597 

 At row:162, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:162, column:131,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:131,the value of plot_cost is         : 23.581489031662255 

 At row:162, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:162, column:132,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:132,the value of plot_cost is         : 23.751184602120432 

 At row:162, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:162, column:133,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:133,the value of plot_cost is         : 23.921688232981126 

 At row:162, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:162, column:134,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:134,the value of plot_cost is         : 24.09299992424434 

 At row:162, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:162, column:135,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:135,the value of plot_cost is         : 24.265119675910057 

 At row:162, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:162, column:136,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:136,the value of plot_cost is         : 24.438047487978288 

 At row:162, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:162, column:137,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:137,the value of plot_cost is         : 24.61178336044905 

 At row:162, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:162, column:138,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:138,the value of plot_cost is         : 24.78632729332231 

 At row:162, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:162, column:139,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:139,the value of plot_cost is         : 24.9616792865981 

 At row:162, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:162, column:140,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:140,the value of plot_cost is         : 25.1378393402764 

 At row:162, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:162, column:141,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:141,the value of plot_cost is         : 25.314807454357208 

 At row:162, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:162, column:142,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:142,the value of plot_cost is         : 25.492583628840535 

 At row:162, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:162, column:143,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:143,the value of plot_cost is         : 25.671167863726378 

 At row:162, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:162, column:144,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:144,the value of plot_cost is         : 25.85056015901474 

 At row:162, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:162, column:145,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:145,the value of plot_cost is         : 26.030760514705612 

 At row:162, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:162, column:146,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:146,the value of plot_cost is         : 26.211768930798996 

 At row:162, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:162, column:147,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:147,the value of plot_cost is         : 26.393585407294903 

 At row:162, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:162, column:148,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:148,the value of plot_cost is         : 26.576209944193316 

 At row:162, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:162, column:149,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:149,the value of plot_cost is         : 26.759642541494248 

 At row:162, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:162, column:150,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:150,the value of plot_cost is         : 26.94388319919771 

 At row:162, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:162, column:151,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:151,the value of plot_cost is         : 27.128931917303667 

 At row:162, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:162, column:152,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:152,the value of plot_cost is         : 27.314788695812148 

 At row:162, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:162, column:153,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:153,the value of plot_cost is         : 27.501453534723144 

 At row:162, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:162, column:154,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:154,the value of plot_cost is         : 27.688926434036652 

 At row:162, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:162, column:155,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:155,the value of plot_cost is         : 27.877207393752677 

 At row:162, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:162, column:156,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:156,the value of plot_cost is         : 28.06629641387122 

 At row:162, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:162, column:157,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:157,the value of plot_cost is         : 28.25619349439227 

 At row:162, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:162, column:158,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:158,the value of plot_cost is         : 28.446898635315836 

 At row:162, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:162, column:159,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:159,the value of plot_cost is         : 28.63841183664193 

 At row:162, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:162, column:160,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:160,the value of plot_cost is         : 28.830733098370533 

 At row:162, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:162, column:161,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:161,the value of plot_cost is         : 29.023862420501644 

 At row:162, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:162, column:162,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:162,the value of plot_cost is         : 29.21779980303527 

 At row:162, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:162, column:163,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:163,the value of plot_cost is         : 29.41254524597142 

 At row:162, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:162, column:164,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:164,the value of plot_cost is         : 29.608098749310077 

 At row:162, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:162, column:165,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:165,the value of plot_cost is         : 29.804460313051255 

 At row:162, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:162, column:166,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:166,the value of plot_cost is         : 30.00162993719494 

 At row:162, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:162, column:167,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:167,the value of plot_cost is         : 30.199607621741148 

 At row:162, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:162, column:168,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:168,the value of plot_cost is         : 30.398393366689866 

 At row:162, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:162, column:169,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:169,the value of plot_cost is         : 30.597987172041094 

 At row:162, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:162, column:170,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:170,the value of plot_cost is         : 30.798389037794855 

 At row:162, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:162, column:171,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:171,the value of plot_cost is         : 30.999598963951122 

 At row:162, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:162, column:172,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:172,the value of plot_cost is         : 31.2016169505099 

 At row:162, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:162, column:173,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:173,the value of plot_cost is         : 31.404442997471197 

 At row:162, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:162, column:174,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:174,the value of plot_cost is         : 31.60807710483501 

 At row:162, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:162, column:175,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:175,the value of plot_cost is         : 31.812519272601335 

 At row:162, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:162, column:176,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:176,the value of plot_cost is         : 32.01776950077018 

 At row:162, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:162, column:177,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:177,the value of plot_cost is         : 32.223827789341534 

 At row:162, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:162, column:178,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:178,the value of plot_cost is         : 32.4306941383154 

 At row:162, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:162, column:179,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:179,the value of plot_cost is         : 32.63836854769179 

 At row:162, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:162, column:180,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:180,the value of plot_cost is         : 32.8468510174707 

 At row:162, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:162, column:181,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:181,the value of plot_cost is         : 33.05614154765211 

 At row:162, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:162, column:182,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:182,the value of plot_cost is         : 33.266240138236036 

 At row:162, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:162, column:183,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:183,the value of plot_cost is         : 33.47714678922248 

 At row:162, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:162, column:184,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:184,the value of plot_cost is         : 33.68886150061145 

 At row:162, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:162, column:185,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:185,the value of plot_cost is         : 33.90138427240293 

 At row:162, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:162, column:186,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:186,the value of plot_cost is         : 34.11471510459692 

 At row:162, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:162, column:187,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:187,the value of plot_cost is         : 34.32885399719343 

 At row:162, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:162, column:188,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:188,the value of plot_cost is         : 34.54380095019244 

 At row:162, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:162, column:189,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:189,the value of plot_cost is         : 34.75955596359398 

 At row:162, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:162, column:190,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:190,the value of plot_cost is         : 34.97611903739804 

 At row:162, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:162, column:191,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:191,the value of plot_cost is         : 35.19349017160461 

 At row:162, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:162, column:192,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:192,the value of plot_cost is         : 35.41166936621369 

 At row:162, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:162, column:193,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:193,the value of plot_cost is         : 35.63065662122529 

 At row:162, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:162, column:194,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:194,the value of plot_cost is         : 35.8504519366394 

 At row:162, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:162, column:195,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:195,the value of plot_cost is         : 36.071055312456025 

 At row:162, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:162, column:196,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:196,the value of plot_cost is         : 36.292466748675174 

 At row:162, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:162, column:197,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:197,the value of plot_cost is         : 36.51468624529683 

 At row:162, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:162, column:198,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:198,the value of plot_cost is         : 36.737713802321 

 At row:162, column:199,the value of plot_t0 is           : 3.0
 At row:162, column:199,the value of plot_t1 is           : 2.2562814070351758
 At row:162, column:199,the value of plot_cost is         : 36.96154941974769 

 At row:163, column:0,the value of plot_t0 is           : -1.0
 At row:163, column:0,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:0,the value of plot_cost is         : 8.744981728455633 

 At row:163, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:163, column:1,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:1,the value of plot_cost is         : 8.811499529232666 

 At row:163, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:163, column:2,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:2,the value of plot_cost is         : 8.878825390412219 

 At row:163, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:163, column:3,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:3,the value of plot_cost is         : 8.94695931199429 

 At row:163, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:163, column:4,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:4,the value of plot_cost is         : 9.015901293978871 

 At row:163, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:163, column:5,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:5,the value of plot_cost is         : 9.085651336365965 

 At row:163, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:163, column:6,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:6,the value of plot_cost is         : 9.156209439155576 

 At row:163, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:163, column:7,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:7,the value of plot_cost is         : 9.227575602347704 

 At row:163, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:163, column:8,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:8,the value of plot_cost is         : 9.29974982594235 

 At row:163, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:163, column:9,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:9,the value of plot_cost is         : 9.372732109939507 

 At row:163, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:163, column:10,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:10,the value of plot_cost is         : 9.446522454339178 

 At row:163, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:163, column:11,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:11,the value of plot_cost is         : 9.521120859141364 

 At row:163, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:163, column:12,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:12,the value of plot_cost is         : 9.596527324346063 

 At row:163, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:163, column:13,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:13,the value of plot_cost is         : 9.672741849953287 

 At row:163, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:163, column:14,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:14,the value of plot_cost is         : 9.74976443596302 

 At row:163, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:163, column:15,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:15,the value of plot_cost is         : 9.827595082375266 

 At row:163, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:163, column:16,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:16,the value of plot_cost is         : 9.906233789190027 

 At row:163, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:163, column:17,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:17,the value of plot_cost is         : 9.985680556407305 

 At row:163, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:163, column:18,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:18,the value of plot_cost is         : 10.065935384027101 

 At row:163, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:163, column:19,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:19,the value of plot_cost is         : 10.146998272049409 

 At row:163, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:163, column:20,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:20,the value of plot_cost is         : 10.22886922047423 

 At row:163, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:163, column:21,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:21,the value of plot_cost is         : 10.311548229301568 

 At row:163, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:163, column:22,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:22,the value of plot_cost is         : 10.395035298531418 

 At row:163, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:163, column:23,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:23,the value of plot_cost is         : 10.479330428163793 

 At row:163, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:163, column:24,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:24,the value of plot_cost is         : 10.564433618198677 

 At row:163, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:163, column:25,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:25,the value of plot_cost is         : 10.650344868636076 

 At row:163, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:163, column:26,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:26,the value of plot_cost is         : 10.737064179475984 

 At row:163, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:163, column:27,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:27,the value of plot_cost is         : 10.824591550718415 

 At row:163, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:163, column:28,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:28,the value of plot_cost is         : 10.912926982363363 

 At row:163, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:163, column:29,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:29,the value of plot_cost is         : 11.002070474410822 

 At row:163, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:163, column:30,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:30,the value of plot_cost is         : 11.092022026860795 

 At row:163, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:163, column:31,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:31,the value of plot_cost is         : 11.182781639713284 

 At row:163, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:163, column:32,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:32,the value of plot_cost is         : 11.274349312968285 

 At row:163, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:163, column:33,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:33,the value of plot_cost is         : 11.366725046625808 

 At row:163, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:163, column:34,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:34,the value of plot_cost is         : 11.459908840685845 

 At row:163, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:163, column:35,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:35,the value of plot_cost is         : 11.553900695148391 

 At row:163, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:163, column:36,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:36,the value of plot_cost is         : 11.648700610013455 

 At row:163, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:163, column:37,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:37,the value of plot_cost is         : 11.744308585281033 

 At row:163, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:163, column:38,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:38,the value of plot_cost is         : 11.840724620951132 

 At row:163, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:163, column:39,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:39,the value of plot_cost is         : 11.937948717023744 

 At row:163, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:163, column:40,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:40,the value of plot_cost is         : 12.035980873498865 

 At row:163, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:163, column:41,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:41,the value of plot_cost is         : 12.134821090376505 

 At row:163, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:163, column:42,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:42,the value of plot_cost is         : 12.23446936765666 

 At row:163, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:163, column:43,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:43,the value of plot_cost is         : 12.334925705339334 

 At row:163, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:163, column:44,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:44,the value of plot_cost is         : 12.436190103424519 

 At row:163, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:163, column:45,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:45,the value of plot_cost is         : 12.538262561912216 

 At row:163, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:163, column:46,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:46,the value of plot_cost is         : 12.641143080802431 

 At row:163, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:163, column:47,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:47,the value of plot_cost is         : 12.744831660095162 

 At row:163, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:163, column:48,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:48,the value of plot_cost is         : 12.84932829979041 

 At row:163, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:163, column:49,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:49,the value of plot_cost is         : 12.954632999888172 

 At row:163, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:163, column:50,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:50,the value of plot_cost is         : 13.060745760388446 

 At row:163, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:163, column:51,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:51,the value of plot_cost is         : 13.167666581291236 

 At row:163, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:163, column:52,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:52,the value of plot_cost is         : 13.275395462596544 

 At row:163, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:163, column:53,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:53,the value of plot_cost is         : 13.383932404304366 

 At row:163, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:163, column:54,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:54,the value of plot_cost is         : 13.493277406414705 

 At row:163, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:163, column:55,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:55,the value of plot_cost is         : 13.603430468927552 

 At row:163, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:163, column:56,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:56,the value of plot_cost is         : 13.714391591842919 

 At row:163, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:163, column:57,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:57,the value of plot_cost is         : 13.826160775160803 

 At row:163, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:163, column:58,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:58,the value of plot_cost is         : 13.9387380188812 

 At row:163, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:163, column:59,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:59,the value of plot_cost is         : 14.052123323004112 

 At row:163, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:163, column:60,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:60,the value of plot_cost is         : 14.166316687529537 

 At row:163, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:163, column:61,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:61,the value of plot_cost is         : 14.281318112457475 

 At row:163, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:163, column:62,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:62,the value of plot_cost is         : 14.397127597787934 

 At row:163, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:163, column:63,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:63,the value of plot_cost is         : 14.51374514352091 

 At row:163, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:163, column:64,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:64,the value of plot_cost is         : 14.631170749656397 

 At row:163, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:163, column:65,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:65,the value of plot_cost is         : 14.749404416194396 

 At row:163, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:163, column:66,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:66,the value of plot_cost is         : 14.868446143134912 

 At row:163, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:163, column:67,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:67,the value of plot_cost is         : 14.988295930477948 

 At row:163, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:163, column:68,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:68,the value of plot_cost is         : 15.108953778223496 

 At row:163, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:163, column:69,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:69,the value of plot_cost is         : 15.230419686371558 

 At row:163, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:163, column:70,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:70,the value of plot_cost is         : 15.352693654922135 

 At row:163, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:163, column:71,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:71,the value of plot_cost is         : 15.475775683875224 

 At row:163, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:163, column:72,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:72,the value of plot_cost is         : 15.599665773230836 

 At row:163, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:163, column:73,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:73,the value of plot_cost is         : 15.72436392298896 

 At row:163, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:163, column:74,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:74,the value of plot_cost is         : 15.849870133149597 

 At row:163, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:163, column:75,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:75,the value of plot_cost is         : 15.97618440371275 

 At row:163, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:163, column:76,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:76,the value of plot_cost is         : 16.103306734678416 

 At row:163, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:163, column:77,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:77,the value of plot_cost is         : 16.231237126046604 

 At row:163, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:163, column:78,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:78,the value of plot_cost is         : 16.359975577817305 

 At row:163, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:163, column:79,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:79,the value of plot_cost is         : 16.489522089990515 

 At row:163, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:163, column:80,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:80,the value of plot_cost is         : 16.61987666256624 

 At row:163, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:163, column:81,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:81,the value of plot_cost is         : 16.75103929554448 

 At row:163, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:163, column:82,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:82,the value of plot_cost is         : 16.88300998892524 

 At row:163, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:163, column:83,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:83,the value of plot_cost is         : 17.01578874270852 

 At row:163, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:163, column:84,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:84,the value of plot_cost is         : 17.14937555689431 

 At row:163, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:163, column:85,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:85,the value of plot_cost is         : 17.28377043148261 

 At row:163, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:163, column:86,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:86,the value of plot_cost is         : 17.418973366473423 

 At row:163, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:163, column:87,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:87,the value of plot_cost is         : 17.554984361866765 

 At row:163, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:163, column:88,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:88,the value of plot_cost is         : 17.69180341766262 

 At row:163, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:163, column:89,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:89,the value of plot_cost is         : 17.82943053386098 

 At row:163, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:163, column:90,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:90,the value of plot_cost is         : 17.967865710461854 

 At row:163, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:163, column:91,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:91,the value of plot_cost is         : 18.107108947465246 

 At row:163, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:163, column:92,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:92,the value of plot_cost is         : 18.247160244871157 

 At row:163, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:163, column:93,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:93,the value of plot_cost is         : 18.388019602679588 

 At row:163, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:163, column:94,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:94,the value of plot_cost is         : 18.529687020890528 

 At row:163, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:163, column:95,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:95,the value of plot_cost is         : 18.67216249950398 

 At row:163, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:163, column:96,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:96,the value of plot_cost is         : 18.815446038519948 

 At row:163, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:163, column:97,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:97,the value of plot_cost is         : 18.95953763793844 

 At row:163, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:163, column:98,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:98,the value of plot_cost is         : 19.10443729775944 

 At row:163, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:163, column:99,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:99,the value of plot_cost is         : 19.250145017982955 

 At row:163, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:163, column:100,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:100,the value of plot_cost is         : 19.39666079860898 

 At row:163, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:163, column:101,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:101,the value of plot_cost is         : 19.543984639637525 

 At row:163, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:163, column:102,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:102,the value of plot_cost is         : 19.692116541068586 

 At row:163, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:163, column:103,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:103,the value of plot_cost is         : 19.841056502902166 

 At row:163, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:163, column:104,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:104,the value of plot_cost is         : 19.990804525138255 

 At row:163, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:163, column:105,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:105,the value of plot_cost is         : 20.14136060777686 

 At row:163, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:163, column:106,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:106,the value of plot_cost is         : 20.292724750817978 

 At row:163, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:163, column:107,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:107,the value of plot_cost is         : 20.44489695426162 

 At row:163, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:163, column:108,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:108,the value of plot_cost is         : 20.597877218107772 

 At row:163, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:163, column:109,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:109,the value of plot_cost is         : 20.751665542356434 

 At row:163, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:163, column:110,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:110,the value of plot_cost is         : 20.90626192700762 

 At row:163, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:163, column:111,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:111,the value of plot_cost is         : 21.06166637206131 

 At row:163, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:163, column:112,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:112,the value of plot_cost is         : 21.21787887751752 

 At row:163, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:163, column:113,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:113,the value of plot_cost is         : 21.374899443376254 

 At row:163, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:163, column:114,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:114,the value of plot_cost is         : 21.532728069637496 

 At row:163, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:163, column:115,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:115,the value of plot_cost is         : 21.691364756301244 

 At row:163, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:163, column:116,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:116,the value of plot_cost is         : 21.850809503367515 

 At row:163, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:163, column:117,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:117,the value of plot_cost is         : 22.01106231083631 

 At row:163, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:163, column:118,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:118,the value of plot_cost is         : 22.172123178707608 

 At row:163, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:163, column:119,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:119,the value of plot_cost is         : 22.333992106981423 

 At row:163, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:163, column:120,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:120,the value of plot_cost is         : 22.496669095657758 

 At row:163, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:163, column:121,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:121,the value of plot_cost is         : 22.660154144736605 

 At row:163, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:163, column:122,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:122,the value of plot_cost is         : 22.82444725421797 

 At row:163, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:163, column:123,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:123,the value of plot_cost is         : 22.989548424101848 

 At row:163, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:163, column:124,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:124,the value of plot_cost is         : 23.155457654388236 

 At row:163, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:163, column:125,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:125,the value of plot_cost is         : 23.322174945077144 

 At row:163, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:163, column:126,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:126,the value of plot_cost is         : 23.489700296168564 

 At row:163, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:163, column:127,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:127,the value of plot_cost is         : 23.658033707662508 

 At row:163, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:163, column:128,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:128,the value of plot_cost is         : 23.827175179558957 

 At row:163, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:163, column:129,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:129,the value of plot_cost is         : 23.99712471185793 

 At row:163, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:163, column:130,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:130,the value of plot_cost is         : 24.167882304559413 

 At row:163, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:163, column:131,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:131,the value of plot_cost is         : 24.339447957663406 

 At row:163, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:163, column:132,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:132,the value of plot_cost is         : 24.51182167116992 

 At row:163, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:163, column:133,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:133,the value of plot_cost is         : 24.68500344507895 

 At row:163, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:163, column:134,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:134,the value of plot_cost is         : 24.858993279390493 

 At row:163, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:163, column:135,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:135,the value of plot_cost is         : 25.033791174104554 

 At row:163, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:163, column:136,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:136,the value of plot_cost is         : 25.20939712922112 

 At row:163, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:163, column:137,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:137,the value of plot_cost is         : 25.385811144740217 

 At row:163, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:163, column:138,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:138,the value of plot_cost is         : 25.563033220661815 

 At row:163, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:163, column:139,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:139,the value of plot_cost is         : 25.741063356985933 

 At row:163, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:163, column:140,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:140,the value of plot_cost is         : 25.91990155371257 

 At row:163, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:163, column:141,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:141,the value of plot_cost is         : 26.099547810841717 

 At row:163, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:163, column:142,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:142,the value of plot_cost is         : 26.280002128373376 

 At row:163, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:163, column:143,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:143,the value of plot_cost is         : 26.461264506307565 

 At row:163, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:163, column:144,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:144,the value of plot_cost is         : 26.643334944644256 

 At row:163, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:163, column:145,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:145,the value of plot_cost is         : 26.82621344338346 

 At row:163, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:163, column:146,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:146,the value of plot_cost is         : 27.009900002525185 

 At row:163, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:163, column:147,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:147,the value of plot_cost is         : 27.19439462206943 

 At row:163, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:163, column:148,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:148,the value of plot_cost is         : 27.379697302016186 

 At row:163, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:163, column:149,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:149,the value of plot_cost is         : 27.56580804236546 

 At row:163, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:163, column:150,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:150,the value of plot_cost is         : 27.752726843117237 

 At row:163, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:163, column:151,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:151,the value of plot_cost is         : 27.940453704271537 

 At row:163, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:163, column:152,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:152,the value of plot_cost is         : 28.128988625828345 

 At row:163, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:163, column:153,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:153,the value of plot_cost is         : 28.318331607787684 

 At row:163, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:163, column:154,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:154,the value of plot_cost is         : 28.50848265014953 

 At row:163, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:163, column:155,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:155,the value of plot_cost is         : 28.699441752913888 

 At row:163, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:163, column:156,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:156,the value of plot_cost is         : 28.891208916080767 

 At row:163, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:163, column:157,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:157,the value of plot_cost is         : 29.083784139650152 

 At row:163, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:163, column:158,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:158,the value of plot_cost is         : 29.277167423622057 

 At row:163, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:163, column:159,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:159,the value of plot_cost is         : 29.471358767996477 

 At row:163, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:163, column:160,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:160,the value of plot_cost is         : 29.66635817277342 

 At row:163, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:163, column:161,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:161,the value of plot_cost is         : 29.862165637952863 

 At row:163, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:163, column:162,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:162,the value of plot_cost is         : 30.05878116353483 

 At row:163, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:163, column:163,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:163,the value of plot_cost is         : 30.256204749519316 

 At row:163, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:163, column:164,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:164,the value of plot_cost is         : 30.45443639590631 

 At row:163, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:163, column:165,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:165,the value of plot_cost is         : 30.653476102695816 

 At row:163, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:163, column:166,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:166,the value of plot_cost is         : 30.853323869887852 

 At row:163, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:163, column:167,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:167,the value of plot_cost is         : 31.053979697482394 

 At row:163, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:163, column:168,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:168,the value of plot_cost is         : 31.25544358547944 

 At row:163, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:163, column:169,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:169,the value of plot_cost is         : 31.457715533879018 

 At row:163, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:163, column:170,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:170,the value of plot_cost is         : 31.660795542681104 

 At row:163, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:163, column:171,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:171,the value of plot_cost is         : 31.864683611885702 

 At row:163, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:163, column:172,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:172,the value of plot_cost is         : 32.06937974149282 

 At row:163, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:163, column:173,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:173,the value of plot_cost is         : 32.27488393150245 

 At row:163, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:163, column:174,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:174,the value of plot_cost is         : 32.4811961819146 

 At row:163, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:163, column:175,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:175,the value of plot_cost is         : 32.68831649272926 

 At row:163, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:163, column:176,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:176,the value of plot_cost is         : 32.89624486394644 

 At row:163, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:163, column:177,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:177,the value of plot_cost is         : 33.104981295566134 

 At row:163, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:163, column:178,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:178,the value of plot_cost is         : 33.31452578758833 

 At row:163, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:163, column:179,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:179,the value of plot_cost is         : 33.52487834001305 

 At row:163, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:163, column:180,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:180,the value of plot_cost is         : 33.736038952840296 

 At row:163, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:163, column:181,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:181,the value of plot_cost is         : 33.94800762607005 

 At row:163, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:163, column:182,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:182,the value of plot_cost is         : 34.16078435970231 

 At row:163, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:163, column:183,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:183,the value of plot_cost is         : 34.3743691537371 

 At row:163, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:163, column:184,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:184,the value of plot_cost is         : 34.5887620081744 

 At row:163, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:163, column:185,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:185,the value of plot_cost is         : 34.80396292301421 

 At row:163, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:163, column:186,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:186,the value of plot_cost is         : 35.01997189825654 

 At row:163, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:163, column:187,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:187,the value of plot_cost is         : 35.23678893390139 

 At row:163, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:163, column:188,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:188,the value of plot_cost is         : 35.45441402994874 

 At row:163, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:163, column:189,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:189,the value of plot_cost is         : 35.67284718639862 

 At row:163, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:163, column:190,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:190,the value of plot_cost is         : 35.892088403251 

 At row:163, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:163, column:191,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:191,the value of plot_cost is         : 36.1121376805059 

 At row:163, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:163, column:192,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:192,the value of plot_cost is         : 36.33299501816331 

 At row:163, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:163, column:193,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:193,the value of plot_cost is         : 36.55466041622326 

 At row:163, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:163, column:194,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:194,the value of plot_cost is         : 36.77713387468571 

 At row:163, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:163, column:195,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:195,the value of plot_cost is         : 37.00041539355067 

 At row:163, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:163, column:196,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:196,the value of plot_cost is         : 37.22450497281815 

 At row:163, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:163, column:197,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:197,the value of plot_cost is         : 37.44940261248814 

 At row:163, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:163, column:198,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:198,the value of plot_cost is         : 37.675108312560646 

 At row:163, column:199,the value of plot_t0 is           : 3.0
 At row:163, column:199,the value of plot_t1 is           : 2.2763819095477387
 At row:163, column:199,the value of plot_cost is         : 37.90162207303567 

 At row:164, column:0,the value of plot_t0 is           : -1.0
 At row:164, column:0,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:0,the value of plot_cost is         : 9.164686569963964 

 At row:164, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:164, column:1,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:1,the value of plot_cost is         : 9.233882513789332 

 At row:164, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:164, column:2,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:2,the value of plot_cost is         : 9.30388651801722 

 At row:164, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:164, column:3,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:3,the value of plot_cost is         : 9.374698582647627 

 At row:164, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:164, column:4,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:4,the value of plot_cost is         : 9.446318707680545 

 At row:164, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:164, column:5,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:5,the value of plot_cost is         : 9.518746893115976 

 At row:164, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:164, column:6,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:6,the value of plot_cost is         : 9.591983138953923 

 At row:164, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:164, column:7,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:7,the value of plot_cost is         : 9.666027445194386 

 At row:164, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:164, column:8,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:8,the value of plot_cost is         : 9.740879811837365 

 At row:164, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:164, column:9,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:9,the value of plot_cost is         : 9.816540238882858 

 At row:164, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:164, column:10,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:10,the value of plot_cost is         : 9.893008726330866 

 At row:164, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:164, column:11,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:11,the value of plot_cost is         : 9.970285274181387 

 At row:164, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:164, column:12,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:12,the value of plot_cost is         : 10.048369882434423 

 At row:164, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:164, column:13,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:13,the value of plot_cost is         : 10.127262551089984 

 At row:164, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:164, column:14,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:14,the value of plot_cost is         : 10.206963280148049 

 At row:164, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:164, column:15,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:15,the value of plot_cost is         : 10.287472069608631 

 At row:164, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:164, column:16,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:16,the value of plot_cost is         : 10.36878891947173 

 At row:164, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:164, column:17,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:17,the value of plot_cost is         : 10.45091382973734 

 At row:164, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:164, column:18,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:18,the value of plot_cost is         : 10.533846800405476 

 At row:164, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:164, column:19,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:19,the value of plot_cost is         : 10.61758783147612 

 At row:164, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:164, column:20,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:20,the value of plot_cost is         : 10.702136922949277 

 At row:164, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:164, column:21,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:21,the value of plot_cost is         : 10.78749407482495 

 At row:164, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:164, column:22,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:22,the value of plot_cost is         : 10.873659287103138 

 At row:164, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:164, column:23,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:23,the value of plot_cost is         : 10.960632559783846 

 At row:164, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:164, column:24,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:24,the value of plot_cost is         : 11.048413892867066 

 At row:164, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:164, column:25,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:25,the value of plot_cost is         : 11.1370032863528 

 At row:164, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:164, column:26,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:26,the value of plot_cost is         : 11.226400740241047 

 At row:164, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:164, column:27,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:27,the value of plot_cost is         : 11.316606254531811 

 At row:164, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:164, column:28,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:28,the value of plot_cost is         : 11.407619829225093 

 At row:164, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:164, column:29,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:29,the value of plot_cost is         : 11.499441464320888 

 At row:164, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:164, column:30,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:30,the value of plot_cost is         : 11.592071159819199 

 At row:164, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:164, column:31,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:31,the value of plot_cost is         : 11.685508915720021 

 At row:164, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:164, column:32,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:32,the value of plot_cost is         : 11.77975473202336 

 At row:164, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:164, column:33,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:33,the value of plot_cost is         : 11.874808608729218 

 At row:164, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:164, column:34,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:34,the value of plot_cost is         : 11.970670545837589 

 At row:164, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:164, column:35,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:35,the value of plot_cost is         : 12.067340543348474 

 At row:164, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:164, column:36,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:36,the value of plot_cost is         : 12.164818601261873 

 At row:164, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:164, column:37,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:37,the value of plot_cost is         : 12.263104719577788 

 At row:164, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:164, column:38,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:38,the value of plot_cost is         : 12.36219889829622 

 At row:164, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:164, column:39,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:39,the value of plot_cost is         : 12.462101137417168 

 At row:164, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:164, column:40,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:40,the value of plot_cost is         : 12.562811436940626 

 At row:164, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:164, column:41,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:41,the value of plot_cost is         : 12.664329796866602 

 At row:164, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:164, column:42,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:42,the value of plot_cost is         : 12.766656217195091 

 At row:164, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:164, column:43,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:43,the value of plot_cost is         : 12.869790697926101 

 At row:164, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:164, column:44,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:44,the value of plot_cost is         : 12.973733239059623 

 At row:164, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:164, column:45,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:45,the value of plot_cost is         : 13.078483840595656 

 At row:164, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:164, column:46,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:46,the value of plot_cost is         : 13.184042502534206 

 At row:164, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:164, column:47,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:47,the value of plot_cost is         : 13.29040922487527 

 At row:164, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:164, column:48,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:48,the value of plot_cost is         : 13.397584007618857 

 At row:164, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:164, column:49,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:49,the value of plot_cost is         : 13.505566850764954 

 At row:164, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:164, column:50,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:50,the value of plot_cost is         : 13.614357754313565 

 At row:164, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:164, column:51,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:51,the value of plot_cost is         : 13.72395671826469 

 At row:164, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:164, column:52,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:52,the value of plot_cost is         : 13.834363742618331 

 At row:164, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:164, column:53,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:53,the value of plot_cost is         : 13.945578827374492 

 At row:164, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:164, column:54,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:54,the value of plot_cost is         : 14.057601972533165 

 At row:164, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:164, column:55,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:55,the value of plot_cost is         : 14.170433178094347 

 At row:164, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:164, column:56,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:56,the value of plot_cost is         : 14.284072444058049 

 At row:164, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:164, column:57,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:57,the value of plot_cost is         : 14.398519770424272 

 At row:164, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:164, column:58,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:58,the value of plot_cost is         : 14.513775157193004 

 At row:164, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:164, column:59,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:59,the value of plot_cost is         : 14.629838604364249 

 At row:164, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:164, column:60,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:60,the value of plot_cost is         : 14.746710111938011 

 At row:164, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:164, column:61,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:61,the value of plot_cost is         : 14.864389679914286 

 At row:164, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:164, column:62,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:62,the value of plot_cost is         : 14.982877308293077 

 At row:164, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:164, column:63,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:63,the value of plot_cost is         : 15.102172997074392 

 At row:164, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:164, column:64,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:64,the value of plot_cost is         : 15.222276746258213 

 At row:164, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:164, column:65,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:65,the value of plot_cost is         : 15.34318855584455 

 At row:164, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:164, column:66,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:66,the value of plot_cost is         : 15.464908425833402 

 At row:164, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:164, column:67,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:67,the value of plot_cost is         : 15.587436356224774 

 At row:164, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:164, column:68,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:68,the value of plot_cost is         : 15.710772347018656 

 At row:164, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:164, column:69,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:69,the value of plot_cost is         : 15.834916398215054 

 At row:164, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:164, column:70,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:70,the value of plot_cost is         : 15.959868509813965 

 At row:164, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:164, column:71,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:71,the value of plot_cost is         : 16.085628681815393 

 At row:164, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:164, column:72,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:72,the value of plot_cost is         : 16.212196914219337 

 At row:164, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:164, column:73,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:73,the value of plot_cost is         : 16.339573207025797 

 At row:164, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:164, column:74,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:74,the value of plot_cost is         : 16.467757560234773 

 At row:164, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:164, column:75,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:75,the value of plot_cost is         : 16.596749973846258 

 At row:164, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:164, column:76,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:76,the value of plot_cost is         : 16.726550447860262 

 At row:164, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:164, column:77,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:77,the value of plot_cost is         : 16.857158982276786 

 At row:164, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:164, column:78,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:78,the value of plot_cost is         : 16.98857557709582 

 At row:164, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:164, column:79,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:79,the value of plot_cost is         : 17.120800232317368 

 At row:164, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:164, column:80,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:80,the value of plot_cost is         : 17.25383294794143 

 At row:164, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:164, column:81,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:81,the value of plot_cost is         : 17.387673723968007 

 At row:164, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:164, column:82,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:82,the value of plot_cost is         : 17.5223225603971 

 At row:164, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:164, column:83,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:83,the value of plot_cost is         : 17.657779457228717 

 At row:164, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:164, column:84,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:84,the value of plot_cost is         : 17.794044414462842 

 At row:164, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:164, column:85,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:85,the value of plot_cost is         : 17.93111743209948 

 At row:164, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:164, column:86,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:86,the value of plot_cost is         : 18.06899851013863 

 At row:164, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:164, column:87,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:87,the value of plot_cost is         : 18.207687648580308 

 At row:164, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:164, column:88,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:88,the value of plot_cost is         : 18.34718484742449 

 At row:164, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:164, column:89,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:89,the value of plot_cost is         : 18.48749010667119 

 At row:164, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:164, column:90,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:90,the value of plot_cost is         : 18.6286034263204 

 At row:164, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:164, column:91,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:91,the value of plot_cost is         : 18.77052480637213 

 At row:164, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:164, column:92,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:92,the value of plot_cost is         : 18.913254246826376 

 At row:164, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:164, column:93,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:93,the value of plot_cost is         : 19.056791747683146 

 At row:164, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:164, column:94,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:94,the value of plot_cost is         : 19.201137308942414 

 At row:164, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:164, column:95,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:95,the value of plot_cost is         : 19.346290930604205 

 At row:164, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:164, column:96,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:96,the value of plot_cost is         : 19.49225261266851 

 At row:164, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:164, column:97,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:97,the value of plot_cost is         : 19.639022355135335 

 At row:164, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:164, column:98,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:98,the value of plot_cost is         : 19.78660015800467 

 At row:164, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:164, column:99,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:99,the value of plot_cost is         : 19.93498602127652 

 At row:164, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:164, column:100,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:100,the value of plot_cost is         : 20.084179944950886 

 At row:164, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:164, column:101,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:101,the value of plot_cost is         : 20.234181929027766 

 At row:164, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:164, column:102,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:102,the value of plot_cost is         : 20.38499197350716 

 At row:164, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:164, column:103,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:103,the value of plot_cost is         : 20.536610078389074 

 At row:164, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:164, column:104,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:104,the value of plot_cost is         : 20.689036243673502 

 At row:164, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:164, column:105,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:105,the value of plot_cost is         : 20.842270469360447 

 At row:164, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:164, column:106,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:106,the value of plot_cost is         : 20.996312755449903 

 At row:164, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:164, column:107,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:107,the value of plot_cost is         : 21.151163101941876 

 At row:164, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:164, column:108,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:108,the value of plot_cost is         : 21.30682150883636 

 At row:164, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:164, column:109,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:109,the value of plot_cost is         : 21.463287976133362 

 At row:164, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:164, column:110,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:110,the value of plot_cost is         : 21.620562503832875 

 At row:164, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:164, column:111,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:111,the value of plot_cost is         : 21.778645091934905 

 At row:164, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:164, column:112,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:112,the value of plot_cost is         : 21.93753574043945 

 At row:164, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:164, column:113,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:113,the value of plot_cost is         : 22.097234449346516 

 At row:164, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:164, column:114,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:114,the value of plot_cost is         : 22.257741218656097 

 At row:164, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:164, column:115,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:115,the value of plot_cost is         : 22.41905604836819 

 At row:164, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:164, column:116,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:116,the value of plot_cost is         : 22.581178938482797 

 At row:164, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:164, column:117,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:117,the value of plot_cost is         : 22.74410988899992 

 At row:164, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:164, column:118,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:118,the value of plot_cost is         : 22.907848899919557 

 At row:164, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:164, column:119,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:119,the value of plot_cost is         : 23.072395971241708 

 At row:164, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:164, column:120,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:120,the value of plot_cost is         : 23.237751102966374 

 At row:164, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:164, column:121,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:121,the value of plot_cost is         : 23.403914295093557 

 At row:164, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:164, column:122,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:122,the value of plot_cost is         : 23.570885547623252 

 At row:164, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:164, column:123,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:123,the value of plot_cost is         : 23.738664860555467 

 At row:164, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:164, column:124,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:124,the value of plot_cost is         : 23.90725223389021 

 At row:164, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:164, column:125,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:125,the value of plot_cost is         : 24.076647667627444 

 At row:164, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:164, column:126,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:126,the value of plot_cost is         : 24.2468511617672 

 At row:164, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:164, column:127,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:127,the value of plot_cost is         : 24.417862716309475 

 At row:164, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:164, column:128,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:128,the value of plot_cost is         : 24.589682331254267 

 At row:164, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:164, column:129,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:129,the value of plot_cost is         : 24.76231000660157 

 At row:164, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:164, column:130,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:130,the value of plot_cost is         : 24.935745742351383 

 At row:164, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:164, column:131,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:131,the value of plot_cost is         : 25.109989538503715 

 At row:164, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:164, column:132,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:132,the value of plot_cost is         : 25.285041395058563 

 At row:164, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:164, column:133,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:133,the value of plot_cost is         : 25.460901312015928 

 At row:164, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:164, column:134,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:134,the value of plot_cost is         : 25.637569289375804 

 At row:164, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:164, column:135,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:135,the value of plot_cost is         : 25.815045327138208 

 At row:164, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:164, column:136,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:136,the value of plot_cost is         : 25.993329425303113 

 At row:164, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:164, column:137,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:137,the value of plot_cost is         : 26.172421583870538 

 At row:164, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:164, column:138,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:138,the value of plot_cost is         : 26.35232180284048 

 At row:164, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:164, column:139,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:139,the value of plot_cost is         : 26.53303008221293 

 At row:164, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:164, column:140,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:140,the value of plot_cost is         : 26.714546421987897 

 At row:164, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:164, column:141,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:141,the value of plot_cost is         : 26.896870822165383 

 At row:164, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:164, column:142,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:142,the value of plot_cost is         : 27.08000328274538 

 At row:164, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:164, column:143,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:143,the value of plot_cost is         : 27.2639438037279 

 At row:164, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:164, column:144,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:144,the value of plot_cost is         : 27.44869238511294 

 At row:164, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:164, column:145,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:145,the value of plot_cost is         : 27.634249026900477 

 At row:164, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:164, column:146,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:146,the value of plot_cost is         : 27.820613729090535 

 At row:164, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:164, column:147,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:147,the value of plot_cost is         : 28.007786491683113 

 At row:164, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:164, column:148,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:148,the value of plot_cost is         : 28.195767314678204 

 At row:164, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:164, column:149,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:149,the value of plot_cost is         : 28.384556198075806 

 At row:164, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:164, column:150,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:150,the value of plot_cost is         : 28.574153141875925 

 At row:164, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:164, column:151,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:151,the value of plot_cost is         : 28.76455814607856 

 At row:164, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:164, column:152,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:152,the value of plot_cost is         : 28.95577121068371 

 At row:164, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:164, column:153,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:153,the value of plot_cost is         : 29.14779233569138 

 At row:164, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:164, column:154,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:154,the value of plot_cost is         : 29.340621521101557 

 At row:164, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:164, column:155,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:155,the value of plot_cost is         : 29.534258766914256 

 At row:164, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:164, column:156,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:156,the value of plot_cost is         : 29.72870407312947 

 At row:164, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:164, column:157,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:157,the value of plot_cost is         : 29.9239574397472 

 At row:164, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:164, column:158,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:158,the value of plot_cost is         : 30.120018866767435 

 At row:164, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:164, column:159,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:159,the value of plot_cost is         : 30.316888354190194 

 At row:164, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:164, column:160,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:160,the value of plot_cost is         : 30.51456590201546 

 At row:164, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:164, column:161,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:161,the value of plot_cost is         : 30.713051510243247 

 At row:164, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:164, column:162,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:162,the value of plot_cost is         : 30.912345178873544 

 At row:164, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:164, column:163,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:163,the value of plot_cost is         : 31.112446907906364 

 At row:164, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:164, column:164,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:164,the value of plot_cost is         : 31.313356697341703 

 At row:164, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:164, column:165,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:165,the value of plot_cost is         : 31.51507454717955 

 At row:164, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:164, column:166,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:166,the value of plot_cost is         : 31.717600457419913 

 At row:164, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:164, column:167,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:167,the value of plot_cost is         : 31.920934428062786 

 At row:164, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:164, column:168,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:168,the value of plot_cost is         : 32.12507645910818 

 At row:164, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:164, column:169,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:169,the value of plot_cost is         : 32.330026550556084 

 At row:164, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:164, column:170,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:170,the value of plot_cost is         : 32.5357847024065 

 At row:164, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:164, column:171,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:171,the value of plot_cost is         : 32.74235091465944 

 At row:164, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:164, column:172,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:172,the value of plot_cost is         : 32.94972518731489 

 At row:164, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:164, column:173,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:173,the value of plot_cost is         : 33.15790752037286 

 At row:164, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:164, column:174,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:174,the value of plot_cost is         : 33.36689791383334 

 At row:164, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:164, column:175,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:175,the value of plot_cost is         : 33.57669636769635 

 At row:164, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:164, column:176,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:176,the value of plot_cost is         : 33.78730288196186 

 At row:164, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:164, column:177,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:177,the value of plot_cost is         : 33.99871745662989 

 At row:164, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:164, column:178,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:178,the value of plot_cost is         : 34.21094009170043 

 At row:164, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:164, column:179,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:179,the value of plot_cost is         : 34.42397078717349 

 At row:164, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:164, column:180,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:180,the value of plot_cost is         : 34.63780954304906 

 At row:164, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:164, column:181,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:181,the value of plot_cost is         : 34.85245635932714 

 At row:164, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:164, column:182,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:182,the value of plot_cost is         : 35.067911236007745 

 At row:164, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:164, column:183,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:183,the value of plot_cost is         : 35.28417417309086 

 At row:164, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:164, column:184,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:184,the value of plot_cost is         : 35.50124517057651 

 At row:164, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:164, column:185,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:185,the value of plot_cost is         : 35.71912422846465 

 At row:164, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:164, column:186,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:186,the value of plot_cost is         : 35.937811346755325 

 At row:164, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:164, column:187,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:187,the value of plot_cost is         : 36.15730652544849 

 At row:164, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:164, column:188,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:188,the value of plot_cost is         : 36.37760976454419 

 At row:164, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:164, column:189,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:189,the value of plot_cost is         : 36.598721064042394 

 At row:164, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:164, column:190,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:190,the value of plot_cost is         : 36.82064042394311 

 At row:164, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:164, column:191,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:191,the value of plot_cost is         : 37.043367844246355 

 At row:164, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:164, column:192,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:192,the value of plot_cost is         : 37.266903324952104 

 At row:164, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:164, column:193,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:193,the value of plot_cost is         : 37.49124686606038 

 At row:164, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:164, column:194,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:194,the value of plot_cost is         : 37.71639846757116 

 At row:164, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:164, column:195,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:195,the value of plot_cost is         : 37.94235812948447 

 At row:164, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:164, column:196,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:196,the value of plot_cost is         : 38.16912585180029 

 At row:164, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:164, column:197,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:197,the value of plot_cost is         : 38.396701634518614 

 At row:164, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:164, column:198,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:198,the value of plot_cost is         : 38.62508547763946 

 At row:164, column:199,the value of plot_t0 is           : 3.0
 At row:164, column:199,the value of plot_t1 is           : 2.2964824120603016
 At row:164, column:199,the value of plot_cost is         : 38.85427738116281 

 At row:165, column:0,the value of plot_t0 is           : -1.0
 At row:165, column:0,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:0,the value of plot_cost is         : 9.596974066311459 

 At row:165, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:165, column:1,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:1,the value of plot_cost is         : 9.668848153185166 

 At row:165, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:165, column:2,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:2,the value of plot_cost is         : 9.741530300461392 

 At row:165, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:165, column:3,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:3,the value of plot_cost is         : 9.815020508140131 

 At row:165, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:165, column:4,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:4,the value of plot_cost is         : 9.889318776221385 

 At row:165, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:165, column:5,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:5,the value of plot_cost is         : 9.964425104705152 

 At row:165, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:165, column:6,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:6,the value of plot_cost is         : 10.040339493591432 

 At row:165, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:165, column:7,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:7,the value of plot_cost is         : 10.117061942880232 

 At row:165, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:165, column:8,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:8,the value of plot_cost is         : 10.194592452571548 

 At row:165, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:165, column:9,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:9,the value of plot_cost is         : 10.272931022665377 

 At row:165, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:165, column:10,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:10,the value of plot_cost is         : 10.35207765316172 

 At row:165, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:165, column:11,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:11,the value of plot_cost is         : 10.432032344060577 

 At row:165, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:165, column:12,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:12,the value of plot_cost is         : 10.512795095361952 

 At row:165, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:165, column:13,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:13,the value of plot_cost is         : 10.594365907065844 

 At row:165, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:165, column:14,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:14,the value of plot_cost is         : 10.676744779172248 

 At row:165, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:165, column:15,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:15,the value of plot_cost is         : 10.759931711681165 

 At row:165, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:165, column:16,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:16,the value of plot_cost is         : 10.843926704592597 

 At row:165, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:165, column:17,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:17,the value of plot_cost is         : 10.928729757906547 

 At row:165, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:165, column:18,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:18,the value of plot_cost is         : 11.014340871623018 

 At row:165, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:165, column:19,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:19,the value of plot_cost is         : 11.100760045741996 

 At row:165, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:165, column:20,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:20,the value of plot_cost is         : 11.187987280263489 

 At row:165, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:165, column:21,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:21,the value of plot_cost is         : 11.276022575187497 

 At row:165, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:165, column:22,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:22,the value of plot_cost is         : 11.364865930514021 

 At row:165, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:165, column:23,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:23,the value of plot_cost is         : 11.454517346243067 

 At row:165, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:165, column:24,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:24,the value of plot_cost is         : 11.544976822374622 

 At row:165, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:165, column:25,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:25,the value of plot_cost is         : 11.636244358908689 

 At row:165, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:165, column:26,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:26,the value of plot_cost is         : 11.728319955845272 

 At row:165, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:165, column:27,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:27,the value of plot_cost is         : 11.821203613184373 

 At row:165, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:165, column:28,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:28,the value of plot_cost is         : 11.91489533092599 

 At row:165, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:165, column:29,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:29,the value of plot_cost is         : 12.009395109070121 

 At row:165, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:165, column:30,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:30,the value of plot_cost is         : 12.104702947616765 

 At row:165, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:165, column:31,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:31,the value of plot_cost is         : 12.200818846565925 

 At row:165, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:165, column:32,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:32,the value of plot_cost is         : 12.297742805917599 

 At row:165, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:165, column:33,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:33,the value of plot_cost is         : 12.395474825671794 

 At row:165, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:165, column:34,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:34,the value of plot_cost is         : 12.4940149058285 

 At row:165, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:165, column:35,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:35,the value of plot_cost is         : 12.593363046387719 

 At row:165, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:165, column:36,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:36,the value of plot_cost is         : 12.693519247349453 

 At row:165, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:165, column:37,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:37,the value of plot_cost is         : 12.794483508713705 

 At row:165, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:165, column:38,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:38,the value of plot_cost is         : 12.896255830480477 

 At row:165, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:165, column:39,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:39,the value of plot_cost is         : 12.998836212649758 

 At row:165, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:165, column:40,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:40,the value of plot_cost is         : 13.102224655221553 

 At row:165, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:165, column:41,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:41,the value of plot_cost is         : 13.206421158195862 

 At row:165, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:165, column:42,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:42,the value of plot_cost is         : 13.31142572157269 

 At row:165, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:165, column:43,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:43,the value of plot_cost is         : 13.417238345352034 

 At row:165, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:165, column:44,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:44,the value of plot_cost is         : 13.52385902953389 

 At row:165, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:165, column:45,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:45,the value of plot_cost is         : 13.63128777411826 

 At row:165, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:165, column:46,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:46,the value of plot_cost is         : 13.739524579105147 

 At row:165, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:165, column:47,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:47,the value of plot_cost is         : 13.848569444494549 

 At row:165, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:165, column:48,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:48,the value of plot_cost is         : 13.95842237028647 

 At row:165, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:165, column:49,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:49,the value of plot_cost is         : 14.069083356480904 

 At row:165, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:165, column:50,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:50,the value of plot_cost is         : 14.180552403077849 

 At row:165, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:165, column:51,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:51,the value of plot_cost is         : 14.292829510077308 

 At row:165, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:165, column:52,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:52,the value of plot_cost is         : 14.40591467747929 

 At row:165, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:165, column:53,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:53,the value of plot_cost is         : 14.519807905283784 

 At row:165, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:165, column:54,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:54,the value of plot_cost is         : 14.634509193490791 

 At row:165, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:165, column:55,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:55,the value of plot_cost is         : 14.750018542100312 

 At row:165, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:165, column:56,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:56,the value of plot_cost is         : 14.866335951112347 

 At row:165, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:165, column:57,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:57,the value of plot_cost is         : 14.983461420526902 

 At row:165, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:165, column:58,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:58,the value of plot_cost is         : 15.101394950343973 

 At row:165, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:165, column:59,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:59,the value of plot_cost is         : 15.220136540563555 

 At row:165, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:165, column:60,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:60,the value of plot_cost is         : 15.339686191185653 

 At row:165, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:165, column:61,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:61,the value of plot_cost is         : 15.460043902210263 

 At row:165, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:165, column:62,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:62,the value of plot_cost is         : 15.581209673637394 

 At row:165, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:165, column:63,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:63,the value of plot_cost is         : 15.70318350546704 

 At row:165, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:165, column:64,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:64,the value of plot_cost is         : 15.825965397699198 

 At row:165, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:165, column:65,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:65,the value of plot_cost is         : 15.94955535033387 

 At row:165, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:165, column:66,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:66,the value of plot_cost is         : 16.073953363371057 

 At row:165, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:165, column:67,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:67,the value of plot_cost is         : 16.199159436810763 

 At row:165, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:165, column:68,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:68,the value of plot_cost is         : 16.325173570652982 

 At row:165, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:165, column:69,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:69,the value of plot_cost is         : 16.451995764897717 

 At row:165, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:165, column:70,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:70,the value of plot_cost is         : 16.579626019544964 

 At row:165, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:165, column:71,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:71,the value of plot_cost is         : 16.708064334594727 

 At row:165, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:165, column:72,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:72,the value of plot_cost is         : 16.83731071004701 

 At row:165, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:165, column:73,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:73,the value of plot_cost is         : 16.967365145901805 

 At row:165, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:165, column:74,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:74,the value of plot_cost is         : 17.098227642159117 

 At row:165, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:165, column:75,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:75,the value of plot_cost is         : 17.229898198818937 

 At row:165, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:165, column:76,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:76,the value of plot_cost is         : 17.362376815881277 

 At row:165, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:165, column:77,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:77,the value of plot_cost is         : 17.495663493346132 

 At row:165, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:165, column:78,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:78,the value of plot_cost is         : 17.629758231213504 

 At row:165, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:165, column:79,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:79,the value of plot_cost is         : 17.76466102948339 

 At row:165, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:165, column:80,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:80,the value of plot_cost is         : 17.900371888155785 

 At row:165, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:165, column:81,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:81,the value of plot_cost is         : 18.036890807230698 

 At row:165, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:165, column:82,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:82,the value of plot_cost is         : 18.17421778670813 

 At row:165, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:165, column:83,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:83,the value of plot_cost is         : 18.31235282658808 

 At row:165, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:165, column:84,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:84,the value of plot_cost is         : 18.45129592687054 

 At row:165, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:165, column:85,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:85,the value of plot_cost is         : 18.591047087555513 

 At row:165, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:165, column:86,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:86,the value of plot_cost is         : 18.731606308643 

 At row:165, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:165, column:87,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:87,the value of plot_cost is         : 18.87297359013301 

 At row:165, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:165, column:88,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:88,the value of plot_cost is         : 19.015148932025536 

 At row:165, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:165, column:89,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:89,the value of plot_cost is         : 19.15813233432057 

 At row:165, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:165, column:90,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:90,the value of plot_cost is         : 19.301923797018116 

 At row:165, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:165, column:91,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:91,the value of plot_cost is         : 19.446523320118178 

 At row:165, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:165, column:92,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:92,the value of plot_cost is         : 19.59193090362076 

 At row:165, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:165, column:93,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:93,the value of plot_cost is         : 19.73814654752587 

 At row:165, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:165, column:94,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:94,the value of plot_cost is         : 19.885170251833472 

 At row:165, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:165, column:95,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:95,the value of plot_cost is         : 20.033002016543595 

 At row:165, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:165, column:96,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:96,the value of plot_cost is         : 20.181641841656234 

 At row:165, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:165, column:97,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:97,the value of plot_cost is         : 20.331089727171396 

 At row:165, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:165, column:98,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:98,the value of plot_cost is         : 20.481345673089074 

 At row:165, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:165, column:99,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:99,the value of plot_cost is         : 20.632409679409257 

 At row:165, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:165, column:100,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:100,the value of plot_cost is         : 20.784281746131956 

 At row:165, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:165, column:101,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:101,the value of plot_cost is         : 20.93696187325717 

 At row:165, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:165, column:102,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:102,the value of plot_cost is         : 21.090450060784903 

 At row:165, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:165, column:103,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:103,the value of plot_cost is         : 21.244746308715154 

 At row:165, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:165, column:104,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:104,the value of plot_cost is         : 21.399850617047914 

 At row:165, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:165, column:105,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:105,the value of plot_cost is         : 21.555762985783186 

 At row:165, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:165, column:106,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:106,the value of plot_cost is         : 21.712483414920985 

 At row:165, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:165, column:107,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:107,the value of plot_cost is         : 21.87001190446129 

 At row:165, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:165, column:108,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:108,the value of plot_cost is         : 22.02834845440412 

 At row:165, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:165, column:109,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:109,the value of plot_cost is         : 22.187493064749454 

 At row:165, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:165, column:110,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:110,the value of plot_cost is         : 22.347445735497306 

 At row:165, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:165, column:111,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:111,the value of plot_cost is         : 22.50820646664767 

 At row:165, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:165, column:112,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:112,the value of plot_cost is         : 22.66977525820056 

 At row:165, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:165, column:113,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:113,the value of plot_cost is         : 22.83215211015595 

 At row:165, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:165, column:114,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:114,the value of plot_cost is         : 22.995337022513873 

 At row:165, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:165, column:115,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:115,the value of plot_cost is         : 23.159329995274298 

 At row:165, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:165, column:116,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:116,the value of plot_cost is         : 23.324131028437236 

 At row:165, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:165, column:117,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:117,the value of plot_cost is         : 23.489740122002694 

 At row:165, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:165, column:118,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:118,the value of plot_cost is         : 23.65615727597067 

 At row:165, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:165, column:119,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:119,the value of plot_cost is         : 23.823382490341157 

 At row:165, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:165, column:120,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:120,the value of plot_cost is         : 23.99141576511416 

 At row:165, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:165, column:121,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:121,the value of plot_cost is         : 24.160257100289673 

 At row:165, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:165, column:122,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:122,the value of plot_cost is         : 24.329906495867714 

 At row:165, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:165, column:123,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:123,the value of plot_cost is         : 24.50036395184826 

 At row:165, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:165, column:124,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:124,the value of plot_cost is         : 24.671629468231323 

 At row:165, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:165, column:125,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:125,the value of plot_cost is         : 24.843703045016905 

 At row:165, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:165, column:126,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:126,the value of plot_cost is         : 25.016584682204996 

 At row:165, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:165, column:127,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:127,the value of plot_cost is         : 25.19027437979561 

 At row:165, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:165, column:128,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:128,the value of plot_cost is         : 25.364772137788737 

 At row:165, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:165, column:129,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:129,the value of plot_cost is         : 25.540077956184376 

 At row:165, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:165, column:130,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:130,the value of plot_cost is         : 25.716191834982524 

 At row:165, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:165, column:131,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:131,the value of plot_cost is         : 25.893113774183192 

 At row:165, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:165, column:132,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:132,the value of plot_cost is         : 26.070843773786383 

 At row:165, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:165, column:133,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:133,the value of plot_cost is         : 26.24938183379208 

 At row:165, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:165, column:134,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:134,the value of plot_cost is         : 26.4287279542003 

 At row:165, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:165, column:135,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:135,the value of plot_cost is         : 26.60888213501103 

 At row:165, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:165, column:136,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:136,the value of plot_cost is         : 26.78984437622427 

 At row:165, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:165, column:137,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:137,the value of plot_cost is         : 26.97161467784003 

 At row:165, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:165, column:138,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:138,the value of plot_cost is         : 27.154193039858306 

 At row:165, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:165, column:139,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:139,the value of plot_cost is         : 27.3375794622791 

 At row:165, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:165, column:140,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:140,the value of plot_cost is         : 27.5217739451024 

 At row:165, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:165, column:141,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:141,the value of plot_cost is         : 27.706776488328217 

 At row:165, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:165, column:142,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:142,the value of plot_cost is         : 27.892587091956557 

 At row:165, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:165, column:143,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:143,the value of plot_cost is         : 28.079205755987406 

 At row:165, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:165, column:144,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:144,the value of plot_cost is         : 28.266632480420768 

 At row:165, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:165, column:145,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:145,the value of plot_cost is         : 28.454867265256656 

 At row:165, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:165, column:146,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:146,the value of plot_cost is         : 28.64391011049505 

 At row:165, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:165, column:147,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:147,the value of plot_cost is         : 28.833761016135966 

 At row:165, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:165, column:148,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:148,the value of plot_cost is         : 29.024419982179392 

 At row:165, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:165, column:149,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:149,the value of plot_cost is         : 29.21588700862533 

 At row:165, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:165, column:150,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:150,the value of plot_cost is         : 29.408162095473784 

 At row:165, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:165, column:151,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:151,the value of plot_cost is         : 29.601245242724758 

 At row:165, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:165, column:152,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:152,the value of plot_cost is         : 29.79513645037824 

 At row:165, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:165, column:153,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:153,the value of plot_cost is         : 29.989835718434243 

 At row:165, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:165, column:154,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:154,the value of plot_cost is         : 30.18534304689277 

 At row:165, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:165, column:155,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:155,the value of plot_cost is         : 30.381658435753796 

 At row:165, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:165, column:156,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:156,the value of plot_cost is         : 30.578781885017342 

 At row:165, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:165, column:157,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:157,the value of plot_cost is         : 30.7767133946834 

 At row:165, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:165, column:158,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:158,the value of plot_cost is         : 30.975452964751984 

 At row:165, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:165, column:159,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:159,the value of plot_cost is         : 31.17500059522307 

 At row:165, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:165, column:160,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:160,the value of plot_cost is         : 31.375356286096675 

 At row:165, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:165, column:161,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:161,the value of plot_cost is         : 31.576520037372802 

 At row:165, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:165, column:162,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:162,the value of plot_cost is         : 31.77849184905143 

 At row:165, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:165, column:163,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:163,the value of plot_cost is         : 31.981271721132586 

 At row:165, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:165, column:164,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:164,the value of plot_cost is         : 32.18485965361625 

 At row:165, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:165, column:165,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:165,the value of plot_cost is         : 32.38925564650244 

 At row:165, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:165, column:166,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:166,the value of plot_cost is         : 32.59445969979114 

 At row:165, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:165, column:167,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:167,the value of plot_cost is         : 32.800471813482346 

 At row:165, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:165, column:168,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:168,the value of plot_cost is         : 33.00729198757608 

 At row:165, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:165, column:169,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:169,the value of plot_cost is         : 33.214920222072315 

 At row:165, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:165, column:170,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:170,the value of plot_cost is         : 33.423356516971076 

 At row:165, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:165, column:171,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:171,the value of plot_cost is         : 33.63260087227235 

 At row:165, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:165, column:172,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:172,the value of plot_cost is         : 33.842653287976134 

 At row:165, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:165, column:173,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:173,the value of plot_cost is         : 34.053513764082446 

 At row:165, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:165, column:174,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:174,the value of plot_cost is         : 34.26518230059127 

 At row:165, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:165, column:175,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:175,the value of plot_cost is         : 34.4776588975026 

 At row:165, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:165, column:176,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:176,the value of plot_cost is         : 34.69094355481644 

 At row:165, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:165, column:177,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:177,the value of plot_cost is         : 34.905036272532804 

 At row:165, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:165, column:178,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:178,the value of plot_cost is         : 35.119937050651686 

 At row:165, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:165, column:179,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:179,the value of plot_cost is         : 35.33564588917308 

 At row:165, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:165, column:180,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:180,the value of plot_cost is         : 35.552162788096986 

 At row:165, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:165, column:181,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:181,the value of plot_cost is         : 35.76948774742342 

 At row:165, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:165, column:182,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:182,the value of plot_cost is         : 35.98762076715235 

 At row:165, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:165, column:183,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:183,the value of plot_cost is         : 36.20656184728381 

 At row:165, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:165, column:184,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:184,the value of plot_cost is         : 36.42631098781777 

 At row:165, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:165, column:185,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:185,the value of plot_cost is         : 36.64686818875426 

 At row:165, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:165, column:186,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:186,the value of plot_cost is         : 36.868233450093264 

 At row:165, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:165, column:187,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:187,the value of plot_cost is         : 37.09040677183477 

 At row:165, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:165, column:188,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:188,the value of plot_cost is         : 37.3133881539788 

 At row:165, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:165, column:189,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:189,the value of plot_cost is         : 37.537177596525346 

 At row:165, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:165, column:190,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:190,the value of plot_cost is         : 37.761775099474406 

 At row:165, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:165, column:191,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:191,the value of plot_cost is         : 37.98718066282598 

 At row:165, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:165, column:192,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:192,the value of plot_cost is         : 38.21339428658007 

 At row:165, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:165, column:193,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:193,the value of plot_cost is         : 38.44041597073667 

 At row:165, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:165, column:194,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:194,the value of plot_cost is         : 38.668245715295804 

 At row:165, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:165, column:195,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:195,the value of plot_cost is         : 38.89688352025743 

 At row:165, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:165, column:196,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:196,the value of plot_cost is         : 39.12632938562158 

 At row:165, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:165, column:197,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:197,the value of plot_cost is         : 39.35658331138825 

 At row:165, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:165, column:198,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:198,the value of plot_cost is         : 39.58764529755742 

 At row:165, column:199,the value of plot_t0 is           : 3.0
 At row:165, column:199,the value of plot_t1 is           : 2.3165829145728645
 At row:165, column:199,the value of plot_cost is         : 39.81951534412913 

 At row:166, column:0,the value of plot_t0 is           : -1.0
 At row:166, column:0,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:0,the value of plot_cost is         : 10.041844217498122 

 At row:166, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:166, column:1,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:1,the value of plot_cost is         : 10.116396447420165 

 At row:166, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:166, column:2,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:2,the value of plot_cost is         : 10.191756737744724 

 At row:166, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:166, column:3,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:3,the value of plot_cost is         : 10.267925088471802 

 At row:166, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:166, column:4,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:4,the value of plot_cost is         : 10.34490149960139 

 At row:166, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:166, column:5,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:5,the value of plot_cost is         : 10.422685971133493 

 At row:166, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:166, column:6,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:6,the value of plot_cost is         : 10.50127850306811 

 At row:166, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:166, column:7,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:7,the value of plot_cost is         : 10.580679095405243 

 At row:166, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:166, column:8,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:8,the value of plot_cost is         : 10.6608877481449 

 At row:166, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:166, column:9,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:9,the value of plot_cost is         : 10.741904461287062 

 At row:166, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:166, column:10,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:10,the value of plot_cost is         : 10.82372923483174 

 At row:166, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:166, column:11,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:11,the value of plot_cost is         : 10.906362068778934 

 At row:166, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:166, column:12,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:12,the value of plot_cost is         : 10.989802963128641 

 At row:166, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:166, column:13,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:13,the value of plot_cost is         : 11.07405191788087 

 At row:166, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:166, column:14,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:14,the value of plot_cost is         : 11.159108933035611 

 At row:166, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:166, column:15,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:15,the value of plot_cost is         : 11.244974008592864 

 At row:166, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:166, column:16,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:16,the value of plot_cost is         : 11.331647144552633 

 At row:166, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:166, column:17,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:17,the value of plot_cost is         : 11.419128340914916 

 At row:166, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:166, column:18,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:18,the value of plot_cost is         : 11.507417597679721 

 At row:166, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:166, column:19,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:19,the value of plot_cost is         : 11.596514914847038 

 At row:166, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:166, column:20,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:20,the value of plot_cost is         : 11.686420292416864 

 At row:166, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:166, column:21,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:21,the value of plot_cost is         : 11.77713373038921 

 At row:166, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:166, column:22,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:22,the value of plot_cost is         : 11.868655228764071 

 At row:166, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:166, column:23,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:23,the value of plot_cost is         : 11.96098478754145 

 At row:166, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:166, column:24,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:24,the value of plot_cost is         : 12.054122406721339 

 At row:166, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:166, column:25,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:25,the value of plot_cost is         : 12.148068086303745 

 At row:166, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:166, column:26,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:26,the value of plot_cost is         : 12.242821826288665 

 At row:166, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:166, column:27,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:27,the value of plot_cost is         : 12.338383626676098 

 At row:166, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:166, column:28,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:28,the value of plot_cost is         : 12.434753487466054 

 At row:166, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:166, column:29,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:29,the value of plot_cost is         : 12.531931408658522 

 At row:166, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:166, column:30,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:30,the value of plot_cost is         : 12.6299173902535 

 At row:166, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:166, column:31,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:31,the value of plot_cost is         : 12.728711432250996 

 At row:166, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:166, column:32,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:32,the value of plot_cost is         : 12.828313534651008 

 At row:166, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:166, column:33,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:33,the value of plot_cost is         : 12.928723697453538 

 At row:166, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:166, column:34,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:34,the value of plot_cost is         : 13.02994192065858 

 At row:166, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:166, column:35,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:35,the value of plot_cost is         : 13.131968204266133 

 At row:166, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:166, column:36,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:36,the value of plot_cost is         : 13.234802548276207 

 At row:166, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:166, column:37,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:37,the value of plot_cost is         : 13.338444952688791 

 At row:166, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:166, column:38,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:38,the value of plot_cost is         : 13.442895417503896 

 At row:166, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:166, column:39,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:39,the value of plot_cost is         : 13.548153942721516 

 At row:166, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:166, column:40,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:40,the value of plot_cost is         : 13.654220528341645 

 At row:166, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:166, column:41,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:41,the value of plot_cost is         : 13.761095174364291 

 At row:166, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:166, column:42,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:42,the value of plot_cost is         : 13.868777880789452 

 At row:166, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:166, column:43,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:43,the value of plot_cost is         : 13.977268647617132 

 At row:166, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:166, column:44,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:44,the value of plot_cost is         : 14.086567474847328 

 At row:166, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:166, column:45,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:45,the value of plot_cost is         : 14.196674362480032 

 At row:166, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:166, column:46,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:46,the value of plot_cost is         : 14.307589310515255 

 At row:166, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:166, column:47,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:47,the value of plot_cost is         : 14.41931231895299 

 At row:166, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:166, column:48,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:48,the value of plot_cost is         : 14.53184338779325 

 At row:166, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:166, column:49,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:49,the value of plot_cost is         : 14.645182517036016 

 At row:166, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:166, column:50,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:50,the value of plot_cost is         : 14.759329706681296 

 At row:166, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:166, column:51,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:51,the value of plot_cost is         : 14.874284956729094 

 At row:166, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:166, column:52,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:52,the value of plot_cost is         : 14.990048267179409 

 At row:166, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:166, column:53,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:53,the value of plot_cost is         : 15.106619638032239 

 At row:166, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:166, column:54,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:54,the value of plot_cost is         : 15.223999069287583 

 At row:166, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:166, column:55,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:55,the value of plot_cost is         : 15.34218656094544 

 At row:166, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:166, column:56,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:56,the value of plot_cost is         : 15.461182113005812 

 At row:166, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:166, column:57,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:57,the value of plot_cost is         : 15.580985725468702 

 At row:166, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:166, column:58,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:58,the value of plot_cost is         : 15.701597398334107 

 At row:166, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:166, column:59,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:59,the value of plot_cost is         : 15.823017131602029 

 At row:166, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:166, column:60,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:60,the value of plot_cost is         : 15.945244925272458 

 At row:166, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:166, column:61,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:61,the value of plot_cost is         : 16.068280779345407 

 At row:166, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:166, column:62,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:62,the value of plot_cost is         : 16.192124693820872 

 At row:166, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:166, column:63,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:63,the value of plot_cost is         : 16.316776668698854 

 At row:166, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:166, column:64,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:64,the value of plot_cost is         : 16.442236703979347 

 At row:166, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:166, column:65,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:65,the value of plot_cost is         : 16.568504799662357 

 At row:166, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:166, column:66,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:66,the value of plot_cost is         : 16.69558095574788 

 At row:166, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:166, column:67,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:67,the value of plot_cost is         : 16.82346517223592 

 At row:166, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:166, column:68,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:68,the value of plot_cost is         : 16.952157449126478 

 At row:166, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:166, column:69,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:69,the value of plot_cost is         : 17.081657786419544 

 At row:166, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:166, column:70,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:70,the value of plot_cost is         : 17.211966184115127 

 At row:166, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:166, column:71,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:71,the value of plot_cost is         : 17.34308264221323 

 At row:166, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:166, column:72,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:72,the value of plot_cost is         : 17.475007160713844 

 At row:166, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:166, column:73,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:73,the value of plot_cost is         : 17.607739739616974 

 At row:166, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:166, column:74,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:74,the value of plot_cost is         : 17.74128037892262 

 At row:166, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:166, column:75,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:75,the value of plot_cost is         : 17.875629078630777 

 At row:166, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:166, column:76,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:76,the value of plot_cost is         : 18.010785838741455 

 At row:166, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:166, column:77,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:77,the value of plot_cost is         : 18.146750659254646 

 At row:166, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:166, column:78,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:78,the value of plot_cost is         : 18.28352354017035 

 At row:166, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:166, column:79,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:79,the value of plot_cost is         : 18.42110448148857 

 At row:166, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:166, column:80,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:80,the value of plot_cost is         : 18.55949348320931 

 At row:166, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:166, column:81,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:81,the value of plot_cost is         : 18.698690545332557 

 At row:166, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:166, column:82,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:82,the value of plot_cost is         : 18.838695667858328 

 At row:166, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:166, column:83,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:83,the value of plot_cost is         : 18.97950885078661 

 At row:166, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:166, column:84,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:84,the value of plot_cost is         : 19.121130094117404 

 At row:166, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:166, column:85,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:85,the value of plot_cost is         : 19.263559397850713 

 At row:166, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:166, column:86,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:86,the value of plot_cost is         : 19.406796761986538 

 At row:166, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:166, column:87,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:87,the value of plot_cost is         : 19.550842186524882 

 At row:166, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:166, column:88,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:88,the value of plot_cost is         : 19.695695671465742 

 At row:166, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:166, column:89,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:89,the value of plot_cost is         : 19.84135721680911 

 At row:166, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:166, column:90,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:90,the value of plot_cost is         : 19.987826822554997 

 At row:166, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:166, column:91,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:91,the value of plot_cost is         : 20.135104488703394 

 At row:166, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:166, column:92,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:92,the value of plot_cost is         : 20.283190215254315 

 At row:166, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:166, column:93,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:93,the value of plot_cost is         : 20.432084002207745 

 At row:166, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:166, column:94,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:94,the value of plot_cost is         : 20.58178584956369 

 At row:166, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:166, column:95,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:95,the value of plot_cost is         : 20.732295757322163 

 At row:166, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:166, column:96,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:96,the value of plot_cost is         : 20.883613725483134 

 At row:166, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:166, column:97,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:97,the value of plot_cost is         : 21.03573975404662 

 At row:166, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:166, column:98,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:98,the value of plot_cost is         : 21.188673843012634 

 At row:166, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:166, column:99,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:99,the value of plot_cost is         : 21.342415992381156 

 At row:166, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:166, column:100,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:100,the value of plot_cost is         : 21.496966202152194 

 At row:166, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:166, column:101,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:101,the value of plot_cost is         : 21.652324472325745 

 At row:166, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:166, column:102,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:102,the value of plot_cost is         : 21.808490802901815 

 At row:166, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:166, column:103,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:103,the value of plot_cost is         : 21.965465193880394 

 At row:166, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:166, column:104,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:104,the value of plot_cost is         : 22.1232476452615 

 At row:166, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:166, column:105,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:105,the value of plot_cost is         : 22.281838157045105 

 At row:166, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:166, column:106,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:106,the value of plot_cost is         : 22.44123672923124 

 At row:166, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:166, column:107,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:107,the value of plot_cost is         : 22.601443361819875 

 At row:166, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:166, column:108,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:108,the value of plot_cost is         : 22.762458054811038 

 At row:166, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:166, column:109,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:109,the value of plot_cost is         : 22.924280808204717 

 At row:166, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:166, column:110,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:110,the value of plot_cost is         : 23.086911622000894 

 At row:166, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:166, column:111,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:111,the value of plot_cost is         : 23.2503504961996 

 At row:166, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:166, column:112,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:112,the value of plot_cost is         : 23.414597430800825 

 At row:166, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:166, column:113,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:113,the value of plot_cost is         : 23.57965242580455 

 At row:166, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:166, column:114,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:114,the value of plot_cost is         : 23.7455154812108 

 At row:166, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:166, column:115,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:115,the value of plot_cost is         : 23.91218659701957 

 At row:166, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:166, column:116,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:116,the value of plot_cost is         : 24.07966577323085 

 At row:166, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:166, column:117,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:117,the value of plot_cost is         : 24.24795300984464 

 At row:166, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:166, column:118,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:118,the value of plot_cost is         : 24.417048306860952 

 At row:166, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:166, column:119,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:119,the value of plot_cost is         : 24.586951664279773 

 At row:166, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:166, column:120,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:120,the value of plot_cost is         : 24.75766308210111 

 At row:166, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:166, column:121,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:121,the value of plot_cost is         : 24.929182560324964 

 At row:166, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:166, column:122,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:122,the value of plot_cost is         : 25.101510098951337 

 At row:166, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:166, column:123,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:123,the value of plot_cost is         : 25.274645697980223 

 At row:166, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:166, column:124,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:124,the value of plot_cost is         : 25.448589357411624 

 At row:166, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:166, column:125,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:125,the value of plot_cost is         : 25.623341077245538 

 At row:166, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:166, column:126,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:126,the value of plot_cost is         : 25.798900857481968 

 At row:166, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:166, column:127,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:127,the value of plot_cost is         : 25.975268698120907 

 At row:166, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:166, column:128,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:128,the value of plot_cost is         : 26.15244459916237 

 At row:166, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:166, column:129,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:129,the value of plot_cost is         : 26.330428560606343 

 At row:166, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:166, column:130,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:130,the value of plot_cost is         : 26.509220582452837 

 At row:166, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:166, column:131,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:131,the value of plot_cost is         : 26.68882066470184 

 At row:166, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:166, column:132,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:132,the value of plot_cost is         : 26.86922880735336 

 At row:166, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:166, column:133,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:133,the value of plot_cost is         : 27.050445010407394 

 At row:166, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:166, column:134,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:134,the value of plot_cost is         : 27.23246927386394 

 At row:166, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:166, column:135,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:135,the value of plot_cost is         : 27.41530159772302 

 At row:166, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:166, column:136,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:136,the value of plot_cost is         : 27.598941981984595 

 At row:166, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:166, column:137,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:137,the value of plot_cost is         : 27.783390426648687 

 At row:166, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:166, column:138,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:138,the value of plot_cost is         : 27.968646931715302 

 At row:166, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:166, column:139,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:139,the value of plot_cost is         : 28.154711497184426 

 At row:166, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:166, column:140,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:140,the value of plot_cost is         : 28.341584123056066 

 At row:166, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:166, column:141,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:141,the value of plot_cost is         : 28.529264809330222 

 At row:166, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:166, column:142,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:142,the value of plot_cost is         : 28.71775355600689 

 At row:166, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:166, column:143,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:143,the value of plot_cost is         : 28.90705036308608 

 At row:166, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:166, column:144,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:144,the value of plot_cost is         : 29.097155230567786 

 At row:166, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:166, column:145,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:145,the value of plot_cost is         : 29.288068158452006 

 At row:166, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:166, column:146,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:146,the value of plot_cost is         : 29.47978914673873 

 At row:166, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:166, column:147,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:147,the value of plot_cost is         : 29.672318195427977 

 At row:166, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:166, column:148,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:148,the value of plot_cost is         : 29.86565530451974 

 At row:166, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:166, column:149,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:149,the value of plot_cost is         : 30.05980047401402 

 At row:166, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:166, column:150,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:150,the value of plot_cost is         : 30.254753703910808 

 At row:166, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:166, column:151,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:151,the value of plot_cost is         : 30.450514994210117 

 At row:166, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:166, column:152,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:152,the value of plot_cost is         : 30.647084344911935 

 At row:166, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:166, column:153,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:153,the value of plot_cost is         : 30.844461756016273 

 At row:166, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:166, column:154,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:154,the value of plot_cost is         : 31.04264722752312 

 At row:166, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:166, column:155,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:155,the value of plot_cost is         : 31.241640759432503 

 At row:166, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:166, column:156,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:156,the value of plot_cost is         : 31.44144235174438 

 At row:166, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:166, column:157,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:157,the value of plot_cost is         : 31.642052004458776 

 At row:166, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:166, column:158,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:158,the value of plot_cost is         : 31.84346971757569 

 At row:166, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:166, column:159,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:159,the value of plot_cost is         : 32.04569549109512 

 At row:166, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:166, column:160,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:160,the value of plot_cost is         : 32.24872932501706 

 At row:166, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:166, column:161,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:161,the value of plot_cost is         : 32.45257121934152 

 At row:166, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:166, column:162,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:162,the value of plot_cost is         : 32.65722117406849 

 At row:166, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:166, column:163,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:163,the value of plot_cost is         : 32.86267918919797 

 At row:166, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:166, column:164,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:164,the value of plot_cost is         : 33.06894526472998 

 At row:166, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:166, column:165,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:165,the value of plot_cost is         : 33.2760194006645 

 At row:166, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:166, column:166,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:166,the value of plot_cost is         : 33.483901597001534 

 At row:166, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:166, column:167,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:167,the value of plot_cost is         : 33.69259185374108 

 At row:166, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:166, column:168,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:168,the value of plot_cost is         : 33.90209017088314 

 At row:166, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:166, column:169,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:169,the value of plot_cost is         : 34.11239654842772 

 At row:166, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:166, column:170,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:170,the value of plot_cost is         : 34.323510986374814 

 At row:166, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:166, column:171,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:171,the value of plot_cost is         : 34.53543348472443 

 At row:166, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:166, column:172,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:172,the value of plot_cost is         : 34.74816404347655 

 At row:166, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:166, column:173,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:173,the value of plot_cost is         : 34.96170266263118 

 At row:166, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:166, column:174,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:174,the value of plot_cost is         : 35.176049342188335 

 At row:166, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:166, column:175,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:175,the value of plot_cost is         : 35.391204082148015 

 At row:166, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:166, column:176,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:176,the value of plot_cost is         : 35.6071668825102 

 At row:166, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:166, column:177,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:177,the value of plot_cost is         : 35.82393774327489 

 At row:166, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:166, column:178,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:178,the value of plot_cost is         : 36.041516664442106 

 At row:166, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:166, column:179,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:179,the value of plot_cost is         : 36.259903646011836 

 At row:166, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:166, column:180,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:180,the value of plot_cost is         : 36.47909868798408 

 At row:166, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:166, column:181,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:181,the value of plot_cost is         : 36.699101790358846 

 At row:166, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:166, column:182,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:182,the value of plot_cost is         : 36.91991295313611 

 At row:166, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:166, column:183,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:183,the value of plot_cost is         : 37.141532176315906 

 At row:166, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:166, column:184,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:184,the value of plot_cost is         : 37.36395945989821 

 At row:166, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:166, column:185,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:185,the value of plot_cost is         : 37.587194803883044 

 At row:166, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:166, column:186,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:186,the value of plot_cost is         : 37.811238208270375 

 At row:166, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:166, column:187,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:187,the value of plot_cost is         : 38.03608967306022 

 At row:166, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:166, column:188,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:188,the value of plot_cost is         : 38.26174919825258 

 At row:166, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:166, column:189,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:189,the value of plot_cost is         : 38.48821678384746 

 At row:166, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:166, column:190,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:190,the value of plot_cost is         : 38.71549242984486 

 At row:166, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:166, column:191,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:191,the value of plot_cost is         : 38.943576136244765 

 At row:166, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:166, column:192,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:192,the value of plot_cost is         : 39.17246790304719 

 At row:166, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:166, column:193,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:193,the value of plot_cost is         : 39.40216773025213 

 At row:166, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:166, column:194,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:194,the value of plot_cost is         : 39.63267561785958 

 At row:166, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:166, column:195,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:195,the value of plot_cost is         : 39.86399156586956 

 At row:166, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:166, column:196,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:196,the value of plot_cost is         : 40.096115574282045 

 At row:166, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:166, column:197,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:197,the value of plot_cost is         : 40.329047643097056 

 At row:166, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:166, column:198,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:198,the value of plot_cost is         : 40.562787772314564 

 At row:166, column:199,the value of plot_t0 is           : 3.0
 At row:166, column:199,the value of plot_t1 is           : 2.3366834170854274
 At row:166, column:199,the value of plot_cost is         : 40.7973359619346 

 At row:167, column:0,the value of plot_t0 is           : -1.0
 At row:167, column:0,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:0,the value of plot_cost is         : 10.499297023523937 

 At row:167, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:167, column:1,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:1,the value of plot_cost is         : 10.576527396494315 

 At row:167, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:167, column:2,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:2,the value of plot_cost is         : 10.65456582986721 

 At row:167, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:167, column:3,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:3,the value of plot_cost is         : 10.733412323642623 

 At row:167, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:167, column:4,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:4,the value of plot_cost is         : 10.813066877820548 

 At row:167, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:167, column:5,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:5,the value of plot_cost is         : 10.893529492400985 

 At row:167, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:167, column:6,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:6,the value of plot_cost is         : 10.974800167383938 

 At row:167, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:167, column:7,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:7,the value of plot_cost is         : 11.056878902769407 

 At row:167, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:167, column:8,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:8,the value of plot_cost is         : 11.139765698557397 

 At row:167, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:167, column:9,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:9,the value of plot_cost is         : 11.223460554747897 

 At row:167, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:167, column:10,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:10,the value of plot_cost is         : 11.307963471340912 

 At row:167, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:167, column:11,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:11,the value of plot_cost is         : 11.39327444833644 

 At row:167, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:167, column:12,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:12,the value of plot_cost is         : 11.479393485734484 

 At row:167, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:167, column:13,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:13,the value of plot_cost is         : 11.56632058353505 

 At row:167, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:167, column:14,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:14,the value of plot_cost is         : 11.654055741738125 

 At row:167, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:167, column:15,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:15,the value of plot_cost is         : 11.742598960343713 

 At row:167, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:167, column:16,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:16,the value of plot_cost is         : 11.831950239351817 

 At row:167, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:167, column:17,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:17,the value of plot_cost is         : 11.922109578762438 

 At row:167, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:167, column:18,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:18,the value of plot_cost is         : 12.013076978575578 

 At row:167, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:167, column:19,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:19,the value of plot_cost is         : 12.10485243879123 

 At row:167, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:167, column:20,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:20,the value of plot_cost is         : 12.197435959409395 

 At row:167, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:167, column:21,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:21,the value of plot_cost is         : 12.290827540430074 

 At row:167, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:167, column:22,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:22,the value of plot_cost is         : 12.38502718185327 

 At row:167, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:167, column:23,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:23,the value of plot_cost is         : 12.480034883678984 

 At row:167, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:167, column:24,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:24,the value of plot_cost is         : 12.575850645907211 

 At row:167, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:167, column:25,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:25,the value of plot_cost is         : 12.672474468537951 

 At row:167, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:167, column:26,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:26,the value of plot_cost is         : 12.769906351571205 

 At row:167, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:167, column:27,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:27,the value of plot_cost is         : 12.868146295006976 

 At row:167, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:167, column:28,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:28,the value of plot_cost is         : 12.967194298845271 

 At row:167, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:167, column:29,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:29,the value of plot_cost is         : 13.06705036308607 

 At row:167, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:167, column:30,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:30,the value of plot_cost is         : 13.167714487729386 

 At row:167, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:167, column:31,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:31,the value of plot_cost is         : 13.269186672775215 

 At row:167, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:167, column:32,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:32,the value of plot_cost is         : 13.371466918223563 

 At row:167, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:167, column:33,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:33,the value of plot_cost is         : 13.474555224074427 

 At row:167, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:167, column:34,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:34,the value of plot_cost is         : 13.578451590327806 

 At row:167, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:167, column:35,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:35,the value of plot_cost is         : 13.683156016983697 

 At row:167, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:167, column:36,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:36,the value of plot_cost is         : 13.788668504042102 

 At row:167, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:167, column:37,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:37,the value of plot_cost is         : 13.894989051503025 

 At row:167, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:167, column:38,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:38,the value of plot_cost is         : 14.002117659366466 

 At row:167, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:167, column:39,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:39,the value of plot_cost is         : 14.110054327632419 

 At row:167, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:167, column:40,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:40,the value of plot_cost is         : 14.218799056300886 

 At row:167, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:167, column:41,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:41,the value of plot_cost is         : 14.328351845371866 

 At row:167, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:167, column:42,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:42,the value of plot_cost is         : 14.438712694845366 

 At row:167, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:167, column:43,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:43,the value of plot_cost is         : 14.549881604721381 

 At row:167, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:167, column:44,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:44,the value of plot_cost is         : 14.661858574999911 

 At row:167, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:167, column:45,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:45,the value of plot_cost is         : 14.774643605680954 

 At row:167, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:167, column:46,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:46,the value of plot_cost is         : 14.888236696764508 

 At row:167, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:167, column:47,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:47,the value of plot_cost is         : 15.00263784825058 

 At row:167, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:167, column:48,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:48,the value of plot_cost is         : 15.117847060139175 

 At row:167, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:167, column:49,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:49,the value of plot_cost is         : 15.23386433243028 

 At row:167, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:167, column:50,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:50,the value of plot_cost is         : 15.350689665123895 

 At row:167, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:167, column:51,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:51,the value of plot_cost is         : 15.468323058220026 

 At row:167, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:167, column:52,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:52,the value of plot_cost is         : 15.586764511718675 

 At row:167, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:167, column:53,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:53,the value of plot_cost is         : 15.706014025619844 

 At row:167, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:167, column:54,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:54,the value of plot_cost is         : 15.826071599923523 

 At row:167, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:167, column:55,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:55,the value of plot_cost is         : 15.946937234629717 

 At row:167, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:167, column:56,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:56,the value of plot_cost is         : 16.068610929738423 

 At row:167, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:167, column:57,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:57,the value of plot_cost is         : 16.191092685249654 

 At row:167, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:167, column:58,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:58,the value of plot_cost is         : 16.314382501163394 

 At row:167, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:167, column:59,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:59,the value of plot_cost is         : 16.438480377479646 

 At row:167, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:167, column:60,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:60,the value of plot_cost is         : 16.56338631419841 

 At row:167, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:167, column:61,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:61,the value of plot_cost is         : 16.689100311319695 

 At row:167, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:167, column:62,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:62,the value of plot_cost is         : 16.815622368843496 

 At row:167, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:167, column:63,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:63,the value of plot_cost is         : 16.942952486769816 

 At row:167, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:167, column:64,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:64,the value of plot_cost is         : 17.071090665098644 

 At row:167, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:167, column:65,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:65,the value of plot_cost is         : 17.20003690382999 

 At row:167, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:167, column:66,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:66,the value of plot_cost is         : 17.329791202963847 

 At row:167, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:167, column:67,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:67,the value of plot_cost is         : 17.460353562500227 

 At row:167, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:167, column:68,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:68,the value of plot_cost is         : 17.591723982439117 

 At row:167, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:167, column:69,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:69,the value of plot_cost is         : 17.72390246278052 

 At row:167, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:167, column:70,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:70,the value of plot_cost is         : 17.85688900352444 

 At row:167, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:167, column:71,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:71,the value of plot_cost is         : 17.990683604670874 

 At row:167, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:167, column:72,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:72,the value of plot_cost is         : 18.125286266219824 

 At row:167, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:167, column:73,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:73,the value of plot_cost is         : 18.260696988171293 

 At row:167, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:167, column:74,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:74,the value of plot_cost is         : 18.39691577052528 

 At row:167, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:167, column:75,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:75,the value of plot_cost is         : 18.53394261328177 

 At row:167, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:167, column:76,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:76,the value of plot_cost is         : 18.671777516440773 

 At row:167, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:167, column:77,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:77,the value of plot_cost is         : 18.810420480002314 

 At row:167, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:167, column:78,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:78,the value of plot_cost is         : 18.94987150396635 

 At row:167, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:167, column:79,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:79,the value of plot_cost is         : 19.090130588332904 

 At row:167, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:167, column:80,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:80,the value of plot_cost is         : 19.231197733101975 

 At row:167, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:167, column:81,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:81,the value of plot_cost is         : 19.373072938273562 

 At row:167, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:167, column:82,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:82,the value of plot_cost is         : 19.51575620384766 

 At row:167, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:167, column:83,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:83,the value of plot_cost is         : 19.659247529824288 

 At row:167, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:167, column:84,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:84,the value of plot_cost is         : 19.80354691620341 

 At row:167, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:167, column:85,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:85,the value of plot_cost is         : 19.948654362985064 

 At row:167, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:167, column:86,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:86,the value of plot_cost is         : 20.094569870169224 

 At row:167, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:167, column:87,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:87,the value of plot_cost is         : 20.241293437755907 

 At row:167, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:167, column:88,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:88,the value of plot_cost is         : 20.388825065745095 

 At row:167, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:167, column:89,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:89,the value of plot_cost is         : 20.5371647541368 

 At row:167, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:167, column:90,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:90,the value of plot_cost is         : 20.686312502931017 

 At row:167, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:167, column:91,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:91,the value of plot_cost is         : 20.836268312127757 

 At row:167, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:167, column:92,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:92,the value of plot_cost is         : 20.987032181727006 

 At row:167, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:167, column:93,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:93,the value of plot_cost is         : 21.138604111728778 

 At row:167, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:167, column:94,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:94,the value of plot_cost is         : 21.29098410213306 

 At row:167, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:167, column:95,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:95,the value of plot_cost is         : 21.44417215293986 

 At row:167, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:167, column:96,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:96,the value of plot_cost is         : 21.598168264149173 

 At row:167, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:167, column:97,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:97,the value of plot_cost is         : 21.752972435761006 

 At row:167, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:167, column:98,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:98,the value of plot_cost is         : 21.908584667775347 

 At row:167, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:167, column:99,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:99,the value of plot_cost is         : 22.0650049601922 

 At row:167, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:167, column:100,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:100,the value of plot_cost is         : 22.22223331301157 

 At row:167, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:167, column:101,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:101,the value of plot_cost is         : 22.380269726233458 

 At row:167, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:167, column:102,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:102,the value of plot_cost is         : 22.539114199857863 

 At row:167, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:167, column:103,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:103,the value of plot_cost is         : 22.698766733884785 

 At row:167, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:167, column:104,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:104,the value of plot_cost is         : 22.85922732831422 

 At row:167, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:167, column:105,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:105,the value of plot_cost is         : 23.02049598314617 

 At row:167, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:167, column:106,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:106,the value of plot_cost is         : 23.182572698380632 

 At row:167, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:167, column:107,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:107,the value of plot_cost is         : 23.34545747401761 

 At row:167, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:167, column:108,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:108,the value of plot_cost is         : 23.509150310057105 

 At row:167, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:167, column:109,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:109,the value of plot_cost is         : 23.673651206499112 

 At row:167, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:167, column:110,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:110,the value of plot_cost is         : 23.838960163343632 

 At row:167, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:167, column:111,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:111,the value of plot_cost is         : 24.00507718059067 

 At row:167, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:167, column:112,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:112,the value of plot_cost is         : 24.172002258240223 

 At row:167, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:167, column:113,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:113,the value of plot_cost is         : 24.3397353962923 

 At row:167, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:167, column:114,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:114,the value of plot_cost is         : 24.50827659474688 

 At row:167, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:167, column:115,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:115,the value of plot_cost is         : 24.67762585360399 

 At row:167, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:167, column:116,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:116,the value of plot_cost is         : 24.847783172863597 

 At row:167, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:167, column:117,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:117,the value of plot_cost is         : 25.018748552525732 

 At row:167, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:167, column:118,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:118,the value of plot_cost is         : 25.190521992590373 

 At row:167, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:167, column:119,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:119,the value of plot_cost is         : 25.36310349305753 

 At row:167, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:167, column:120,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:120,the value of plot_cost is         : 25.536493053927202 

 At row:167, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:167, column:121,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:121,the value of plot_cost is         : 25.710690675199395 

 At row:167, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:167, column:122,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:122,the value of plot_cost is         : 25.885696356874096 

 At row:167, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:167, column:123,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:123,the value of plot_cost is         : 26.061510098951324 

 At row:167, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:167, column:124,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:124,the value of plot_cost is         : 26.238131901431064 

 At row:167, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:167, column:125,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:125,the value of plot_cost is         : 26.415561764313313 

 At row:167, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:167, column:126,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:126,the value of plot_cost is         : 26.59379968759807 

 At row:167, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:167, column:127,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:127,the value of plot_cost is         : 26.77284567128536 

 At row:167, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:167, column:128,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:128,the value of plot_cost is         : 26.952699715375154 

 At row:167, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:167, column:129,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:129,the value of plot_cost is         : 27.13336181986746 

 At row:167, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:167, column:130,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:130,the value of plot_cost is         : 27.314831984762282 

 At row:167, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:167, column:131,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:131,the value of plot_cost is         : 27.497110210059628 

 At row:167, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:167, column:132,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:132,the value of plot_cost is         : 27.68019649575948 

 At row:167, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:167, column:133,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:133,the value of plot_cost is         : 27.864090841861856 

 At row:167, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:167, column:134,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:134,the value of plot_cost is         : 28.04879324836674 

 At row:167, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:167, column:135,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:135,the value of plot_cost is         : 28.234303715274148 

 At row:167, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:167, column:136,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:136,the value of plot_cost is         : 28.42062224258406 

 At row:167, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:167, column:137,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:137,the value of plot_cost is         : 28.607748830296497 

 At row:167, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:167, column:138,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:138,the value of plot_cost is         : 28.79568347841144 

 At row:167, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:167, column:139,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:139,the value of plot_cost is         : 28.9844261869289 

 At row:167, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:167, column:140,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:140,the value of plot_cost is         : 29.173976955848875 

 At row:167, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:167, column:141,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:141,the value of plot_cost is         : 29.364335785171363 

 At row:167, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:167, column:142,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:142,the value of plot_cost is         : 29.55550267489637 

 At row:167, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:167, column:143,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:143,the value of plot_cost is         : 29.747477625023897 

 At row:167, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:167, column:144,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:144,the value of plot_cost is         : 29.94026063555394 

 At row:167, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:167, column:145,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:145,the value of plot_cost is         : 30.13385170648649 

 At row:167, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:167, column:146,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:146,the value of plot_cost is         : 30.328250837821553 

 At row:167, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:167, column:147,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:147,the value of plot_cost is         : 30.52345802955914 

 At row:167, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:167, column:148,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:148,the value of plot_cost is         : 30.71947328169924 

 At row:167, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:167, column:149,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:149,the value of plot_cost is         : 30.916296594241846 

 At row:167, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:167, column:150,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:150,the value of plot_cost is         : 31.11392796718697 

 At row:167, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:167, column:151,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:151,the value of plot_cost is         : 31.312367400534615 

 At row:167, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:167, column:152,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:152,the value of plot_cost is         : 31.511614894284765 

 At row:167, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:167, column:153,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:153,the value of plot_cost is         : 31.711670448437445 

 At row:167, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:167, column:154,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:154,the value of plot_cost is         : 31.91253406299263 

 At row:167, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:167, column:155,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:155,the value of plot_cost is         : 32.114205737950336 

 At row:167, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:167, column:156,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:156,the value of plot_cost is         : 32.316685473310564 

 At row:167, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:167, column:157,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:157,the value of plot_cost is         : 32.5199732690733 

 At row:167, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:167, column:158,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:158,the value of plot_cost is         : 32.72406912523854 

 At row:167, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:167, column:159,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:159,the value of plot_cost is         : 32.9289730418063 

 At row:167, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:167, column:160,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:160,the value of plot_cost is         : 33.13468501877657 

 At row:167, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:167, column:161,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:161,the value of plot_cost is         : 33.34120505614937 

 At row:167, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:167, column:162,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:162,the value of plot_cost is         : 33.54853315392467 

 At row:167, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:167, column:163,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:163,the value of plot_cost is         : 33.7566693121025 

 At row:167, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:167, column:164,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:164,the value of plot_cost is         : 33.96561353068285 

 At row:167, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:167, column:165,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:165,the value of plot_cost is         : 34.1753658096657 

 At row:167, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:167, column:166,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:166,the value of plot_cost is         : 34.38592614905107 

 At row:167, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:167, column:167,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:167,the value of plot_cost is         : 34.59729454883896 

 At row:167, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:167, column:168,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:168,the value of plot_cost is         : 34.80947100902935 

 At row:167, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:167, column:169,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:169,the value of plot_cost is         : 35.02245552962227 

 At row:167, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:167, column:170,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:170,the value of plot_cost is         : 35.236248110617694 

 At row:167, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:167, column:171,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:171,the value of plot_cost is         : 35.45084875201564 

 At row:167, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:167, column:172,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:172,the value of plot_cost is         : 35.66625745381609 

 At row:167, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:167, column:173,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:173,the value of plot_cost is         : 35.88247421601907 

 At row:167, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:167, column:174,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:174,the value of plot_cost is         : 36.09949903862456 

 At row:167, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:167, column:175,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:175,the value of plot_cost is         : 36.317331921632565 

 At row:167, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:167, column:176,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:176,the value of plot_cost is         : 36.5359728650431 

 At row:167, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:167, column:177,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:177,the value of plot_cost is         : 36.755421868856125 

 At row:167, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:167, column:178,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:178,the value of plot_cost is         : 36.97567893307168 

 At row:167, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:167, column:179,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:179,the value of plot_cost is         : 37.19674405768974 

 At row:167, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:167, column:180,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:180,the value of plot_cost is         : 37.41861724271031 

 At row:167, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:167, column:181,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:181,the value of plot_cost is         : 37.64129848813341 

 At row:167, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:167, column:182,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:182,the value of plot_cost is         : 37.86478779395902 

 At row:167, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:167, column:183,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:183,the value of plot_cost is         : 38.089085160187146 

 At row:167, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:167, column:184,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:184,the value of plot_cost is         : 38.3141905868178 

 At row:167, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:167, column:185,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:185,the value of plot_cost is         : 38.540104073850955 

 At row:167, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:167, column:186,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:186,the value of plot_cost is         : 38.76682562128663 

 At row:167, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:167, column:187,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:187,the value of plot_cost is         : 38.9943552291248 

 At row:167, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:167, column:188,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:188,the value of plot_cost is         : 39.222692897365505 

 At row:167, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:167, column:189,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:189,the value of plot_cost is         : 39.451838626008715 

 At row:167, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:167, column:190,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:190,the value of plot_cost is         : 39.681792415054446 

 At row:167, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:167, column:191,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:191,the value of plot_cost is         : 39.91255426450269 

 At row:167, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:167, column:192,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:192,the value of plot_cost is         : 40.14412417435344 

 At row:167, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:167, column:193,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:193,the value of plot_cost is         : 40.37650214460673 

 At row:167, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:167, column:194,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:194,the value of plot_cost is         : 40.60968817526253 

 At row:167, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:167, column:195,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:195,the value of plot_cost is         : 40.84368226632083 

 At row:167, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:167, column:196,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:196,the value of plot_cost is         : 41.078484417781674 

 At row:167, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:167, column:197,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:197,the value of plot_cost is         : 41.314094629645005 

 At row:167, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:167, column:198,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:198,the value of plot_cost is         : 41.55051290191086 

 At row:167, column:199,the value of plot_t0 is           : 3.0
 At row:167, column:199,the value of plot_t1 is           : 2.35678391959799
 At row:167, column:199,the value of plot_cost is         : 41.787739234579206 

 At row:168, column:0,the value of plot_t0 is           : -1.0
 At row:168, column:0,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:0,the value of plot_cost is         : 10.96933248438892 

 At row:168, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:168, column:1,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:1,the value of plot_cost is         : 11.049241000407635 

 At row:168, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:168, column:2,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:2,the value of plot_cost is         : 11.129957576828863 

 At row:168, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:168, column:3,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:3,the value of plot_cost is         : 11.211482213652614 

 At row:168, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:168, column:4,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:4,the value of plot_cost is         : 11.293814910878872 

 At row:168, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:168, column:5,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:5,the value of plot_cost is         : 11.376955668507648 

 At row:168, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:168, column:6,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:6,the value of plot_cost is         : 11.460904486538936 

 At row:168, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:168, column:7,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:7,the value of plot_cost is         : 11.545661364972739 

 At row:168, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:168, column:8,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:8,the value of plot_cost is         : 11.631226303809065 

 At row:168, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:168, column:9,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:9,the value of plot_cost is         : 11.717599303047901 

 At row:168, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:168, column:10,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:10,the value of plot_cost is         : 11.80478036268925 

 At row:168, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:168, column:11,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:11,the value of plot_cost is         : 11.892769482733117 

 At row:168, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:168, column:12,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:12,the value of plot_cost is         : 11.981566663179496 

 At row:168, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:168, column:13,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:13,the value of plot_cost is         : 12.071171904028398 

 At row:168, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:168, column:14,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:14,the value of plot_cost is         : 12.16158520527981 

 At row:168, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:168, column:15,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:15,the value of plot_cost is         : 12.252806566933733 

 At row:168, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:168, column:16,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:16,the value of plot_cost is         : 12.344835988990171 

 At row:168, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:168, column:17,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:17,the value of plot_cost is         : 12.437673471449127 

 At row:168, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:168, column:18,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:18,the value of plot_cost is         : 12.531319014310604 

 At row:168, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:168, column:19,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:19,the value of plot_cost is         : 12.625772617574592 

 At row:168, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:168, column:20,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:20,the value of plot_cost is         : 12.721034281241092 

 At row:168, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:168, column:21,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:21,the value of plot_cost is         : 12.817104005310105 

 At row:168, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:168, column:22,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:22,the value of plot_cost is         : 12.913981789781639 

 At row:168, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:168, column:23,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:23,the value of plot_cost is         : 13.01166763465569 

 At row:168, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:168, column:24,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:24,the value of plot_cost is         : 13.110161539932253 

 At row:168, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:168, column:25,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:25,the value of plot_cost is         : 13.209463505611328 

 At row:168, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:168, column:26,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:26,the value of plot_cost is         : 13.30957353169292 

 At row:168, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:168, column:27,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:27,the value of plot_cost is         : 13.410491618177023 

 At row:168, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:168, column:28,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:28,the value of plot_cost is         : 13.512217765063653 

 At row:168, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:168, column:29,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:29,the value of plot_cost is         : 13.614751972352789 

 At row:168, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:168, column:30,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:30,the value of plot_cost is         : 13.71809424004444 

 At row:168, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:168, column:31,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:31,the value of plot_cost is         : 13.822244568138606 

 At row:168, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:168, column:32,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:32,the value of plot_cost is         : 13.927202956635288 

 At row:168, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:168, column:33,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:33,the value of plot_cost is         : 14.032969405534491 

 At row:168, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:168, column:34,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:34,the value of plot_cost is         : 14.139543914836205 

 At row:168, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:168, column:35,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:35,the value of plot_cost is         : 14.24692648454043 

 At row:168, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:168, column:36,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:36,the value of plot_cost is         : 14.355117114647172 

 At row:168, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:168, column:37,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:37,the value of plot_cost is         : 14.46411580515643 

 At row:168, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:168, column:38,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:38,the value of plot_cost is         : 14.573922556068208 

 At row:168, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:168, column:39,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:39,the value of plot_cost is         : 14.684537367382497 

 At row:168, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:168, column:40,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:40,the value of plot_cost is         : 14.795960239099298 

 At row:168, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:168, column:41,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:41,the value of plot_cost is         : 14.908191171218615 

 At row:168, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:168, column:42,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:42,the value of plot_cost is         : 15.021230163740448 

 At row:168, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:168, column:43,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:43,the value of plot_cost is         : 15.135077216664802 

 At row:168, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:168, column:44,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:44,the value of plot_cost is         : 15.249732329991666 

 At row:168, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:168, column:45,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:45,the value of plot_cost is         : 15.365195503721042 

 At row:168, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:168, column:46,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:46,the value of plot_cost is         : 15.481466737852935 

 At row:168, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:168, column:47,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:47,the value of plot_cost is         : 15.598546032387343 

 At row:168, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:168, column:48,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:48,the value of plot_cost is         : 15.716433387324273 

 At row:168, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:168, column:49,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:49,the value of plot_cost is         : 15.83512880266371 

 At row:168, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:168, column:50,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:50,the value of plot_cost is         : 15.954632278405665 

 At row:168, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:168, column:51,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:51,the value of plot_cost is         : 16.074943814550135 

 At row:168, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:168, column:52,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:52,the value of plot_cost is         : 16.196063411097125 

 At row:168, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:168, column:53,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:53,the value of plot_cost is         : 16.31799106804662 

 At row:168, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:168, column:54,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:54,the value of plot_cost is         : 16.440726785398635 

 At row:168, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:168, column:55,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:55,the value of plot_cost is         : 16.564270563153162 

 At row:168, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:168, column:56,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:56,the value of plot_cost is         : 16.68862240131021 

 At row:168, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:168, column:57,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:57,the value of plot_cost is         : 16.813782299869768 

 At row:168, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:168, column:58,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:58,the value of plot_cost is         : 16.939750258831847 

 At row:168, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:168, column:59,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:59,the value of plot_cost is         : 17.066526278196434 

 At row:168, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:168, column:60,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:60,the value of plot_cost is         : 17.194110357963538 

 At row:168, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:168, column:61,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:61,the value of plot_cost is         : 17.322502498133158 

 At row:168, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:168, column:62,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:62,the value of plot_cost is         : 17.4517026987053 

 At row:168, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:168, column:63,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:63,the value of plot_cost is         : 17.58171095967995 

 At row:168, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:168, column:64,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:64,the value of plot_cost is         : 17.712527281057113 

 At row:168, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:168, column:65,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:65,the value of plot_cost is         : 17.844151662836794 

 At row:168, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:168, column:66,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:66,the value of plot_cost is         : 17.976584105018986 

 At row:168, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:168, column:67,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:67,the value of plot_cost is         : 18.1098246076037 

 At row:168, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:168, column:68,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:68,the value of plot_cost is         : 18.24387317059093 

 At row:168, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:168, column:69,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:69,the value of plot_cost is         : 18.378729793980668 

 At row:168, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:168, column:70,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:70,the value of plot_cost is         : 18.514394477772925 

 At row:168, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:168, column:71,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:71,the value of plot_cost is         : 18.65086722196769 

 At row:168, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:168, column:72,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:72,the value of plot_cost is         : 18.788148026564986 

 At row:168, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:168, column:73,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:73,the value of plot_cost is         : 18.926236891564784 

 At row:168, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:168, column:74,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:74,the value of plot_cost is         : 19.0651338169671 

 At row:168, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:168, column:75,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:75,the value of plot_cost is         : 19.20483880277193 

 At row:168, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:168, column:76,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:76,the value of plot_cost is         : 19.345351848979277 

 At row:168, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:168, column:77,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:77,the value of plot_cost is         : 19.48667295558914 

 At row:168, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:168, column:78,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:78,the value of plot_cost is         : 19.628802122601517 

 At row:168, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:168, column:79,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:79,the value of plot_cost is         : 19.771739350016407 

 At row:168, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:168, column:80,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:80,the value of plot_cost is         : 19.915484637833817 

 At row:168, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:168, column:81,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:81,the value of plot_cost is         : 20.060037986053743 

 At row:168, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:168, column:82,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:82,the value of plot_cost is         : 20.205399394676178 

 At row:168, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:168, column:83,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:83,the value of plot_cost is         : 20.351568863701132 

 At row:168, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:168, column:84,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:84,the value of plot_cost is         : 20.498546393128596 

 At row:168, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:168, column:85,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:85,the value of plot_cost is         : 20.64633198295858 

 At row:168, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:168, column:86,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:86,the value of plot_cost is         : 20.794925633191074 

 At row:168, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:168, column:87,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:87,the value of plot_cost is         : 20.944327343826085 

 At row:168, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:168, column:88,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:88,the value of plot_cost is         : 21.09453711486362 

 At row:168, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:168, column:89,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:89,the value of plot_cost is         : 21.24555494630366 

 At row:168, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:168, column:90,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:90,the value of plot_cost is         : 21.39738083814622 

 At row:168, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:168, column:91,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:91,the value of plot_cost is         : 21.550014790391295 

 At row:168, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:168, column:92,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:92,the value of plot_cost is         : 21.703456803038883 

 At row:168, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:168, column:93,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:93,the value of plot_cost is         : 21.857706876088987 

 At row:168, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:168, column:94,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:94,the value of plot_cost is         : 22.012765009541603 

 At row:168, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:168, column:95,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:95,the value of plot_cost is         : 22.168631203396735 

 At row:168, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:168, column:96,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:96,the value of plot_cost is         : 22.32530545765438 

 At row:168, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:168, column:97,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:97,the value of plot_cost is         : 22.48278777231454 

 At row:168, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:168, column:98,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:98,the value of plot_cost is         : 22.641078147377225 

 At row:168, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:168, column:99,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:99,the value of plot_cost is         : 22.800176582842415 

 At row:168, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:168, column:100,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:100,the value of plot_cost is         : 22.96008307871013 

 At row:168, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:168, column:101,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:101,the value of plot_cost is         : 23.120797634980352 

 At row:168, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:168, column:102,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:102,the value of plot_cost is         : 23.282320251653097 

 At row:168, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:168, column:103,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:103,the value of plot_cost is         : 23.444650928728354 

 At row:168, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:168, column:104,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:104,the value of plot_cost is         : 23.60778966620612 

 At row:168, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:168, column:105,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:105,the value of plot_cost is         : 23.7717364640864 

 At row:168, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:168, column:106,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:106,the value of plot_cost is         : 23.936491322369196 

 At row:168, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:168, column:107,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:107,the value of plot_cost is         : 24.10205424105451 

 At row:168, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:168, column:108,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:108,the value of plot_cost is         : 24.26842522014234 

 At row:168, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:168, column:109,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:109,the value of plot_cost is         : 24.435604259632683 

 At row:168, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:168, column:110,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:110,the value of plot_cost is         : 24.603591359525552 

 At row:168, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:168, column:111,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:111,the value of plot_cost is         : 24.772386519820923 

 At row:168, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:168, column:112,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:112,the value of plot_cost is         : 24.941989740518814 

 At row:168, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:168, column:113,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:113,the value of plot_cost is         : 25.112401021619224 

 At row:168, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:168, column:114,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:114,the value of plot_cost is         : 25.283620363122143 

 At row:168, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:168, column:115,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:115,the value of plot_cost is         : 25.45564776502757 

 At row:168, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:168, column:116,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:116,the value of plot_cost is         : 25.628483227335522 

 At row:168, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:168, column:117,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:117,the value of plot_cost is         : 25.80212675004599 

 At row:168, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:168, column:118,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:118,the value of plot_cost is         : 25.97657833315897 

 At row:168, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:168, column:119,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:119,the value of plot_cost is         : 26.15183797667447 

 At row:168, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:168, column:120,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:120,the value of plot_cost is         : 26.327905680592476 

 At row:168, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:168, column:121,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:121,the value of plot_cost is         : 26.504781444913004 

 At row:168, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:168, column:122,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:122,the value of plot_cost is         : 26.682465269636047 

 At row:168, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:168, column:123,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:123,the value of plot_cost is         : 26.860957154761604 

 At row:168, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:168, column:124,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:124,the value of plot_cost is         : 27.040257100289672 

 At row:168, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:168, column:125,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:125,the value of plot_cost is         : 27.220365106220257 

 At row:168, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:168, column:126,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:126,the value of plot_cost is         : 27.401281172553354 

 At row:168, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:168, column:127,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:127,the value of plot_cost is         : 27.58300529928897 

 At row:168, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:168, column:128,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:128,the value of plot_cost is         : 27.765537486427107 

 At row:168, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:168, column:129,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:129,the value of plot_cost is         : 27.948877733967752 

 At row:168, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:168, column:130,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:130,the value of plot_cost is         : 28.133026041910917 

 At row:168, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:168, column:131,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:131,the value of plot_cost is         : 28.317982410256594 

 At row:168, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:168, column:132,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:132,the value of plot_cost is         : 28.503746839004787 

 At row:168, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:168, column:133,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:133,the value of plot_cost is         : 28.690319328155493 

 At row:168, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:168, column:134,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:134,the value of plot_cost is         : 28.87769987770871 

 At row:168, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:168, column:135,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:135,the value of plot_cost is         : 29.065888487664445 

 At row:168, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:168, column:136,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:136,the value of plot_cost is         : 29.25488515802269 

 At row:168, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:168, column:137,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:137,the value of plot_cost is         : 29.44468988878346 

 At row:168, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:168, column:138,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:138,the value of plot_cost is         : 29.635302679946747 

 At row:168, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:168, column:139,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:139,the value of plot_cost is         : 29.82672353151255 

 At row:168, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:168, column:140,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:140,the value of plot_cost is         : 30.018952443480863 

 At row:168, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:168, column:141,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:141,the value of plot_cost is         : 30.21198941585169 

 At row:168, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:168, column:142,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:142,the value of plot_cost is         : 30.405834448625036 

 At row:168, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:168, column:143,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:143,the value of plot_cost is         : 30.600487541800888 

 At row:168, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:168, column:144,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:144,the value of plot_cost is         : 30.79594869537926 

 At row:168, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:168, column:145,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:145,the value of plot_cost is         : 30.99221790936015 

 At row:168, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:168, column:146,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:146,the value of plot_cost is         : 31.189295183743543 

 At row:168, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:168, column:147,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:147,the value of plot_cost is         : 31.387180518529465 

 At row:168, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:168, column:148,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:148,the value of plot_cost is         : 31.585873913717897 

 At row:168, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:168, column:149,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:149,the value of plot_cost is         : 31.785375369308845 

 At row:168, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:168, column:150,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:150,the value of plot_cost is         : 31.985684885302316 

 At row:168, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:168, column:151,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:151,the value of plot_cost is         : 32.1868024616983 

 At row:168, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:168, column:152,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:152,the value of plot_cost is         : 32.38872809849679 

 At row:168, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:168, column:153,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:153,the value of plot_cost is         : 32.591461795697796 

 At row:168, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:168, column:154,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:154,the value of plot_cost is         : 32.795003553301314 

 At row:168, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:168, column:155,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:155,the value of plot_cost is         : 32.99935337130736 

 At row:168, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:168, column:156,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:156,the value of plot_cost is         : 33.20451124971591 

 At row:168, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:168, column:157,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:157,the value of plot_cost is         : 33.410477188526976 

 At row:168, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:168, column:158,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:158,the value of plot_cost is         : 33.617251187740564 

 At row:168, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:168, column:159,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:159,the value of plot_cost is         : 33.824833247356665 

 At row:168, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:168, column:160,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:160,the value of plot_cost is         : 34.03322336737528 

 At row:168, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:168, column:161,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:161,the value of plot_cost is         : 34.24242154779642 

 At row:168, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:168, column:162,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:162,the value of plot_cost is         : 34.45242778862005 

 At row:168, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:168, column:163,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:163,the value of plot_cost is         : 34.663242089846214 

 At row:168, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:168, column:164,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:164,the value of plot_cost is         : 34.874864451474885 

 At row:168, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:168, column:165,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:165,the value of plot_cost is         : 35.08729487350607 

 At row:168, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:168, column:166,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:166,the value of plot_cost is         : 35.30053335593978 

 At row:168, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:168, column:167,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:167,the value of plot_cost is         : 35.51457989877599 

 At row:168, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:168, column:168,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:168,the value of plot_cost is         : 35.72943450201473 

 At row:168, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:168, column:169,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:169,the value of plot_cost is         : 35.94509716565598 

 At row:168, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:168, column:170,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:170,the value of plot_cost is         : 36.16156788969975 

 At row:168, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:168, column:171,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:171,the value of plot_cost is         : 36.37884667414603 

 At row:168, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:168, column:172,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:172,the value of plot_cost is         : 36.59693351899483 

 At row:168, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:168, column:173,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:173,the value of plot_cost is         : 36.81582842424614 

 At row:168, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:168, column:174,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:174,the value of plot_cost is         : 37.035531389899965 

 At row:168, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:168, column:175,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:175,the value of plot_cost is         : 37.2560424159563 

 At row:168, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:168, column:176,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:176,the value of plot_cost is         : 37.47736150241516 

 At row:168, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:168, column:177,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:177,the value of plot_cost is         : 37.699488649276525 

 At row:168, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:168, column:178,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:178,the value of plot_cost is         : 37.922423856540405 

 At row:168, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:168, column:179,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:179,the value of plot_cost is         : 38.14616712420681 

 At row:168, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:168, column:180,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:180,the value of plot_cost is         : 38.37071845227573 

 At row:168, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:168, column:181,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:181,the value of plot_cost is         : 38.59607784074717 

 At row:168, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:168, column:182,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:182,the value of plot_cost is         : 38.82224528962111 

 At row:168, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:168, column:183,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:183,the value of plot_cost is         : 39.04922079889757 

 At row:168, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:168, column:184,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:184,the value of plot_cost is         : 39.27700436857655 

 At row:168, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:168, column:185,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:185,the value of plot_cost is         : 39.50559599865803 

 At row:168, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:168, column:186,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:186,the value of plot_cost is         : 39.73499568914204 

 At row:168, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:168, column:187,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:187,the value of plot_cost is         : 39.96520344002855 

 At row:168, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:168, column:188,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:188,the value of plot_cost is         : 40.19621925131759 

 At row:168, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:168, column:189,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:189,the value of plot_cost is         : 40.42804312300916 

 At row:168, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:168, column:190,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:190,the value of plot_cost is         : 40.66067505510323 

 At row:168, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:168, column:191,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:191,the value of plot_cost is         : 40.894115047599804 

 At row:168, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:168, column:192,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:192,the value of plot_cost is         : 41.128363100498895 

 At row:168, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:168, column:193,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:193,the value of plot_cost is         : 41.36341921380051 

 At row:168, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:168, column:194,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:194,the value of plot_cost is         : 41.599283387504634 

 At row:168, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:168, column:195,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:195,the value of plot_cost is         : 41.83595562161128 

 At row:168, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:168, column:196,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:196,the value of plot_cost is         : 42.07343591612044 

 At row:168, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:168, column:197,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:197,the value of plot_cost is         : 42.31172427103211 

 At row:168, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:168, column:198,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:198,the value of plot_cost is         : 42.55082068634629 

 At row:168, column:199,the value of plot_t0 is           : 3.0
 At row:168, column:199,the value of plot_t1 is           : 2.3768844221105527
 At row:168, column:199,the value of plot_cost is         : 42.790725162063005 

 At row:169, column:0,the value of plot_t0 is           : -1.0
 At row:169, column:0,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:0,the value of plot_cost is         : 11.451950600093072 

 At row:169, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:169, column:1,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:1,the value of plot_cost is         : 11.534537259160121 

 At row:169, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:169, column:2,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:2,the value of plot_cost is         : 11.617931978629688 

 At row:169, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:169, column:3,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:3,the value of plot_cost is         : 11.702134758501773 

 At row:169, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:169, column:4,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:4,the value of plot_cost is         : 11.78714559877637 

 At row:169, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:169, column:5,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:5,the value of plot_cost is         : 11.872964499453479 

 At row:169, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:169, column:6,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:6,the value of plot_cost is         : 11.959591460533101 

 At row:169, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:169, column:7,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:7,the value of plot_cost is         : 12.047026482015244 

 At row:169, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:169, column:8,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:8,the value of plot_cost is         : 12.135269563899904 

 At row:169, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:169, column:9,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:9,the value of plot_cost is         : 12.224320706187077 

 At row:169, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:169, column:10,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:10,the value of plot_cost is         : 12.31417990887676 

 At row:169, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:169, column:11,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:11,the value of plot_cost is         : 12.40484717196896 

 At row:169, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:169, column:12,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:12,the value of plot_cost is         : 12.496322495463678 

 At row:169, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:169, column:13,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:13,the value of plot_cost is         : 12.588605879360916 

 At row:169, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:169, column:14,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:14,the value of plot_cost is         : 12.68169732366066 

 At row:169, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:169, column:15,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:15,the value of plot_cost is         : 12.775596828362923 

 At row:169, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:169, column:16,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:16,the value of plot_cost is         : 12.870304393467697 

 At row:169, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:169, column:17,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:17,the value of plot_cost is         : 12.96582001897499 

 At row:169, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:169, column:18,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:18,the value of plot_cost is         : 13.0621437048848 

 At row:169, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:169, column:19,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:19,the value of plot_cost is         : 13.159275451197123 

 At row:169, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:169, column:20,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:20,the value of plot_cost is         : 13.257215257911959 

 At row:169, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:169, column:21,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:21,the value of plot_cost is         : 13.35596312502931 

 At row:169, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:169, column:22,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:22,the value of plot_cost is         : 13.455519052549178 

 At row:169, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:169, column:23,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:23,the value of plot_cost is         : 13.555883040471565 

 At row:169, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:169, column:24,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:24,the value of plot_cost is         : 13.657055088796461 

 At row:169, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:169, column:25,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:25,the value of plot_cost is         : 13.759035197523875 

 At row:169, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:169, column:26,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:26,the value of plot_cost is         : 13.861823366653802 

 At row:169, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:169, column:27,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:27,the value of plot_cost is         : 13.965419596186242 

 At row:169, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:169, column:28,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:28,the value of plot_cost is         : 14.069823886121204 

 At row:169, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:169, column:29,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:29,the value of plot_cost is         : 14.17503623645868 

 At row:169, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:169, column:30,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:30,the value of plot_cost is         : 14.281056647198664 

 At row:169, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:169, column:31,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:31,the value of plot_cost is         : 14.387885118341167 

 At row:169, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:169, column:32,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:32,the value of plot_cost is         : 14.495521649886186 

 At row:169, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:169, column:33,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:33,the value of plot_cost is         : 14.603966241833724 

 At row:169, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:169, column:34,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:34,the value of plot_cost is         : 14.713218894183774 

 At row:169, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:169, column:35,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:35,the value of plot_cost is         : 14.823279606936334 

 At row:169, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:169, column:36,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:36,the value of plot_cost is         : 14.93414838009141 

 At row:169, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:169, column:37,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:37,the value of plot_cost is         : 15.045825213649005 

 At row:169, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:169, column:38,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:38,the value of plot_cost is         : 15.158310107609118 

 At row:169, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:169, column:39,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:39,the value of plot_cost is         : 15.271603061971742 

 At row:169, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:169, column:40,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:40,the value of plot_cost is         : 15.38570407673688 

 At row:169, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:169, column:41,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:41,the value of plot_cost is         : 15.500613151904533 

 At row:169, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:169, column:42,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:42,the value of plot_cost is         : 15.616330287474701 

 At row:169, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:169, column:43,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:43,the value of plot_cost is         : 15.732855483447395 

 At row:169, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:169, column:44,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:44,the value of plot_cost is         : 15.850188739822592 

 At row:169, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:169, column:45,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:45,the value of plot_cost is         : 15.968330056600303 

 At row:169, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:169, column:46,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:46,the value of plot_cost is         : 16.087279433780534 

 At row:169, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:169, column:47,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:47,the value of plot_cost is         : 16.207036871363275 

 At row:169, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:169, column:48,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:48,the value of plot_cost is         : 16.327602369348543 

 At row:169, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:169, column:49,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:49,the value of plot_cost is         : 16.448975927736317 

 At row:169, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:169, column:50,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:50,the value of plot_cost is         : 16.571157546526607 

 At row:169, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:169, column:51,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:51,the value of plot_cost is         : 16.69414722571941 

 At row:169, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:169, column:52,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:52,the value of plot_cost is         : 16.817944965314734 

 At row:169, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:169, column:53,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:53,the value of plot_cost is         : 16.94255076531257 

 At row:169, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:169, column:54,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:54,the value of plot_cost is         : 17.067964625712918 

 At row:169, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:169, column:55,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:55,the value of plot_cost is         : 17.19418654651578 

 At row:169, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:169, column:56,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:56,the value of plot_cost is         : 17.321216527721162 

 At row:169, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:169, column:57,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:57,the value of plot_cost is         : 17.449054569329054 

 At row:169, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:169, column:58,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:58,the value of plot_cost is         : 17.57770067133947 

 At row:169, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:169, column:59,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:59,the value of plot_cost is         : 17.707154833752398 

 At row:169, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:169, column:60,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:60,the value of plot_cost is         : 17.837417056567837 

 At row:169, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:169, column:61,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:61,the value of plot_cost is         : 17.968487339785792 

 At row:169, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:169, column:62,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:62,the value of plot_cost is         : 18.10036568340627 

 At row:169, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:169, column:63,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:63,the value of plot_cost is         : 18.233052087429254 

 At row:169, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:169, column:64,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:64,the value of plot_cost is         : 18.366546551854757 

 At row:169, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:169, column:65,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:65,the value of plot_cost is         : 18.50084907668277 

 At row:169, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:169, column:66,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:66,the value of plot_cost is         : 18.6359596619133 

 At row:169, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:169, column:67,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:67,the value of plot_cost is         : 18.771878307546345 

 At row:169, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:169, column:68,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:68,the value of plot_cost is         : 18.908605013581912 

 At row:169, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:169, column:69,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:69,the value of plot_cost is         : 19.04613978001999 

 At row:169, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:169, column:70,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:70,the value of plot_cost is         : 19.184482606860577 

 At row:169, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:169, column:71,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:71,the value of plot_cost is         : 19.32363349410369 

 At row:169, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:169, column:72,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:72,the value of plot_cost is         : 19.463592441749313 

 At row:169, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:169, column:73,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:73,the value of plot_cost is         : 19.60435944979745 

 At row:169, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:169, column:74,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:74,the value of plot_cost is         : 19.745934518248102 

 At row:169, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:169, column:75,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:75,the value of plot_cost is         : 19.888317647101264 

 At row:169, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:169, column:76,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:76,the value of plot_cost is         : 20.031508836356945 

 At row:169, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:169, column:77,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:77,the value of plot_cost is         : 20.175508086015142 

 At row:169, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:169, column:78,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:78,the value of plot_cost is         : 20.32031539607586 

 At row:169, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:169, column:79,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:79,the value of plot_cost is         : 20.46593076653909 

 At row:169, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:169, column:80,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:80,the value of plot_cost is         : 20.61235419740483 

 At row:169, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:169, column:81,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:81,the value of plot_cost is         : 20.759585688673088 

 At row:169, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:169, column:82,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:82,the value of plot_cost is         : 20.907625240343865 

 At row:169, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:169, column:83,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:83,the value of plot_cost is         : 21.056472852417155 

 At row:169, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:169, column:84,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:84,the value of plot_cost is         : 21.206128524892957 

 At row:169, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:169, column:85,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:85,the value of plot_cost is         : 21.356592257771272 

 At row:169, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:169, column:86,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:86,the value of plot_cost is         : 21.507864051052096 

 At row:169, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:169, column:87,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:87,the value of plot_cost is         : 21.659943904735453 

 At row:169, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:169, column:88,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:88,the value of plot_cost is         : 21.812831818821316 

 At row:169, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:169, column:89,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:89,the value of plot_cost is         : 21.966527793309695 

 At row:169, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:169, column:90,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:90,the value of plot_cost is         : 22.12103182820059 

 At row:169, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:169, column:91,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:91,the value of plot_cost is         : 22.276343923493997 

 At row:169, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:169, column:92,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:92,the value of plot_cost is         : 22.432464079189927 

 At row:169, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:169, column:93,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:93,the value of plot_cost is         : 22.589392295288363 

 At row:169, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:169, column:94,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:94,the value of plot_cost is         : 22.747128571789318 

 At row:169, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:169, column:95,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:95,the value of plot_cost is         : 22.905672908692782 

 At row:169, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:169, column:96,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:96,the value of plot_cost is         : 23.065025305998763 

 At row:169, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:169, column:97,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:97,the value of plot_cost is         : 23.225185763707266 

 At row:169, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:169, column:98,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:98,the value of plot_cost is         : 23.386154281818285 

 At row:169, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:169, column:99,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:99,the value of plot_cost is         : 23.54793086033181 

 At row:169, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:169, column:100,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:100,the value of plot_cost is         : 23.710515499247848 

 At row:169, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:169, column:101,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:101,the value of plot_cost is         : 23.873908198566415 

 At row:169, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:169, column:102,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:102,the value of plot_cost is         : 24.0381089582875 

 At row:169, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:169, column:103,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:103,the value of plot_cost is         : 24.203117778411084 

 At row:169, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:169, column:104,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:104,the value of plot_cost is         : 24.368934658937185 

 At row:169, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:169, column:105,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:105,the value of plot_cost is         : 24.535559599865806 

 At row:169, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:169, column:106,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:106,the value of plot_cost is         : 24.70299260119694 

 At row:169, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:169, column:107,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:107,the value of plot_cost is         : 24.871233662930585 

 At row:169, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:169, column:108,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:108,the value of plot_cost is         : 25.04028278506676 

 At row:169, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:169, column:109,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:109,the value of plot_cost is         : 25.210139967605446 

 At row:169, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:169, column:110,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:110,the value of plot_cost is         : 25.380805210546633 

 At row:169, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:169, column:111,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:111,the value of plot_cost is         : 25.552278513890343 

 At row:169, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:169, column:112,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:112,the value of plot_cost is         : 25.724559877636572 

 At row:169, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:169, column:113,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:113,the value of plot_cost is         : 25.897649301785314 

 At row:169, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:169, column:114,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:114,the value of plot_cost is         : 26.07154678633657 

 At row:169, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:169, column:115,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:115,the value of plot_cost is         : 26.246252331290336 

 At row:169, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:169, column:116,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:116,the value of plot_cost is         : 26.42176593664662 

 At row:169, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:169, column:117,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:117,the value of plot_cost is         : 26.59808760240542 

 At row:169, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:169, column:118,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:118,the value of plot_cost is         : 26.77521732856674 

 At row:169, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:169, column:119,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:119,the value of plot_cost is         : 26.953155115130567 

 At row:169, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:169, column:120,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:120,the value of plot_cost is         : 27.131900962096925 

 At row:169, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:169, column:121,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:121,the value of plot_cost is         : 27.311454869465777 

 At row:169, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:169, column:122,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:122,the value of plot_cost is         : 27.49181683723716 

 At row:169, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:169, column:123,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:123,the value of plot_cost is         : 27.672986865411055 

 At row:169, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:169, column:124,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:124,the value of plot_cost is         : 27.854964953987455 

 At row:169, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:169, column:125,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:125,the value of plot_cost is         : 28.037751102966375 

 At row:169, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:169, column:126,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:126,the value of plot_cost is         : 28.221345312347808 

 At row:169, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:169, column:127,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:127,the value of plot_cost is         : 28.405747582131767 

 At row:169, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:169, column:128,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:128,the value of plot_cost is         : 28.590957912318235 

 At row:169, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:169, column:129,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:129,the value of plot_cost is         : 28.776976302907222 

 At row:169, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:169, column:130,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:130,the value of plot_cost is         : 28.963802753898715 

 At row:169, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:169, column:131,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:131,the value of plot_cost is         : 29.151437265292724 

 At row:169, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:169, column:132,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:132,the value of plot_cost is         : 29.33987983708926 

 At row:169, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:169, column:133,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:133,the value of plot_cost is         : 29.529130469288297 

 At row:169, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:169, column:134,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:134,the value of plot_cost is         : 29.719189161889858 

 At row:169, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:169, column:135,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:135,the value of plot_cost is         : 29.910055914893924 

 At row:169, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:169, column:136,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:136,the value of plot_cost is         : 30.10173072830051 

 At row:169, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:169, column:137,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:137,the value of plot_cost is         : 30.294213602109615 

 At row:169, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:169, column:138,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:138,the value of plot_cost is         : 30.487504536321232 

 At row:169, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:169, column:139,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:139,the value of plot_cost is         : 30.681603530935366 

 At row:169, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:169, column:140,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:140,the value of plot_cost is         : 30.87651058595202 

 At row:169, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:169, column:141,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:141,the value of plot_cost is         : 31.07222570137118 

 At row:169, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:169, column:142,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:142,the value of plot_cost is         : 31.26874887719286 

 At row:169, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:169, column:143,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:143,the value of plot_cost is         : 31.466080113417057 

 At row:169, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:169, column:144,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:144,the value of plot_cost is         : 31.664219410043764 

 At row:169, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:169, column:145,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:145,the value of plot_cost is         : 31.863166767072983 

 At row:169, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:169, column:146,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:146,the value of plot_cost is         : 32.062922184504714 

 At row:169, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:169, column:147,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:147,the value of plot_cost is         : 32.26348566233897 

 At row:169, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:169, column:148,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:148,the value of plot_cost is         : 32.46485720057575 

 At row:169, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:169, column:149,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:149,the value of plot_cost is         : 32.66703679921503 

 At row:169, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:169, column:150,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:150,the value of plot_cost is         : 32.87002445825683 

 At row:169, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:169, column:151,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:151,the value of plot_cost is         : 33.07382017770115 

 At row:169, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:169, column:152,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:152,the value of plot_cost is         : 33.27842395754797 

 At row:169, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:169, column:153,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:153,the value of plot_cost is         : 33.483835797797326 

 At row:169, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:169, column:154,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:154,the value of plot_cost is         : 33.69005569844918 

 At row:169, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:169, column:155,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:155,the value of plot_cost is         : 33.89708365950355 

 At row:169, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:169, column:156,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:156,the value of plot_cost is         : 34.10491968096044 

 At row:169, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:169, column:157,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:157,the value of plot_cost is         : 34.31356376281985 

 At row:169, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:169, column:158,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:158,the value of plot_cost is         : 34.52301590508177 

 At row:169, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:169, column:159,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:159,the value of plot_cost is         : 34.73327610774619 

 At row:169, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:169, column:160,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:160,the value of plot_cost is         : 34.944344370813155 

 At row:169, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:169, column:161,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:161,the value of plot_cost is         : 35.15622069428262 

 At row:169, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:169, column:162,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:162,the value of plot_cost is         : 35.3689050781546 

 At row:169, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:169, column:163,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:163,the value of plot_cost is         : 35.58239752242909 

 At row:169, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:169, column:164,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:164,the value of plot_cost is         : 35.796698027106096 

 At row:169, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:169, column:165,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:165,the value of plot_cost is         : 36.01180659218562 

 At row:169, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:169, column:166,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:166,the value of plot_cost is         : 36.227723217667666 

 At row:169, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:169, column:167,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:167,the value of plot_cost is         : 36.444447903552216 

 At row:169, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:169, column:168,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:168,the value of plot_cost is         : 36.661980649839286 

 At row:169, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:169, column:169,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:169,the value of plot_cost is         : 36.88032145652889 

 At row:169, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:169, column:170,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:170,the value of plot_cost is         : 37.099470323620984 

 At row:169, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:169, column:171,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:171,the value of plot_cost is         : 37.3194272511156 

 At row:169, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:169, column:172,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:172,the value of plot_cost is         : 37.540192239012725 

 At row:169, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:169, column:173,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:173,the value of plot_cost is         : 37.76176528731238 

 At row:169, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:169, column:174,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:174,the value of plot_cost is         : 37.98414639601453 

 At row:169, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:169, column:175,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:175,the value of plot_cost is         : 38.2073355651192 

 At row:169, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:169, column:176,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:176,the value of plot_cost is         : 38.4313327946264 

 At row:169, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:169, column:177,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:177,the value of plot_cost is         : 38.65613808453611 

 At row:169, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:169, column:178,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:178,the value of plot_cost is         : 38.881751434848326 

 At row:169, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:169, column:179,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:179,the value of plot_cost is         : 39.108172845563054 

 At row:169, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:169, column:180,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:180,the value of plot_cost is         : 39.335402316680316 

 At row:169, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:169, column:181,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:181,the value of plot_cost is         : 39.56343984820009 

 At row:169, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:169, column:182,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:182,the value of plot_cost is         : 39.79228544012236 

 At row:169, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:169, column:183,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:183,the value of plot_cost is         : 40.02193909244717 

 At row:169, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:169, column:184,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:184,the value of plot_cost is         : 40.25240080517448 

 At row:169, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:169, column:185,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:185,the value of plot_cost is         : 40.48367057830429 

 At row:169, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:169, column:186,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:186,the value of plot_cost is         : 40.71574841183664 

 At row:169, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:169, column:187,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:187,the value of plot_cost is         : 40.9486343057715 

 At row:169, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:169, column:188,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:188,the value of plot_cost is         : 41.182328260108875 

 At row:169, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:169, column:189,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:189,the value of plot_cost is         : 41.41683027484877 

 At row:169, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:169, column:190,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:190,the value of plot_cost is         : 41.65214034999117 

 At row:169, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:169, column:191,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:191,the value of plot_cost is         : 41.88825848553609 

 At row:169, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:169, column:192,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:192,the value of plot_cost is         : 42.12518468148352 

 At row:169, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:169, column:193,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:193,the value of plot_cost is         : 42.36291893783347 

 At row:169, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:169, column:194,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:194,the value of plot_cost is         : 42.60146125458593 

 At row:169, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:169, column:195,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:195,the value of plot_cost is         : 42.840811631740905 

 At row:169, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:169, column:196,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:196,the value of plot_cost is         : 43.080970069298395 

 At row:169, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:169, column:197,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:197,the value of plot_cost is         : 43.321936567258405 

 At row:169, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:169, column:198,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:198,the value of plot_cost is         : 43.56371112562093 

 At row:169, column:199,the value of plot_t0 is           : 3.0
 At row:169, column:199,the value of plot_t1 is           : 2.3969849246231156
 At row:169, column:199,the value of plot_cost is         : 43.806293744385954 

 At row:170, column:0,the value of plot_t0 is           : -1.0
 At row:170, column:0,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:0,the value of plot_cost is         : 11.94715137063639 

 At row:170, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:170, column:1,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:1,the value of plot_cost is         : 12.032416172751773 

 At row:170, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:170, column:2,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:2,the value of plot_cost is         : 12.118489035269675 

 At row:170, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:170, column:3,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:3,the value of plot_cost is         : 12.205369958190097 

 At row:170, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:170, column:4,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:4,the value of plot_cost is         : 12.29305894151303 

 At row:170, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:170, column:5,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:5,the value of plot_cost is         : 12.381555985238473 

 At row:170, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:170, column:6,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:6,the value of plot_cost is         : 12.470861089366434 

 At row:170, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:170, column:7,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:7,the value of plot_cost is         : 12.56097425389691 

 At row:170, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:170, column:8,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:8,the value of plot_cost is         : 12.651895478829909 

 At row:170, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:170, column:9,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:9,the value of plot_cost is         : 12.743624764165412 

 At row:170, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:170, column:10,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:10,the value of plot_cost is         : 12.836162109903436 

 At row:170, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:170, column:11,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:11,the value of plot_cost is         : 12.929507516043973 

 At row:170, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:170, column:12,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:12,the value of plot_cost is         : 13.023660982587025 

 At row:170, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:170, column:13,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:13,the value of plot_cost is         : 13.118622509532596 

 At row:170, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:170, column:14,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:14,the value of plot_cost is         : 13.214392096880678 

 At row:170, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:170, column:15,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:15,the value of plot_cost is         : 13.310969744631274 

 At row:170, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:170, column:16,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:16,the value of plot_cost is         : 13.408355452784388 

 At row:170, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:170, column:17,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:17,the value of plot_cost is         : 13.506549221340013 

 At row:170, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:170, column:18,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:18,the value of plot_cost is         : 13.605551050298162 

 At row:170, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:170, column:19,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:19,the value of plot_cost is         : 13.705360939658819 

 At row:170, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:170, column:20,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:20,the value of plot_cost is         : 13.80597888942199 

 At row:170, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:170, column:21,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:21,the value of plot_cost is         : 13.907404899587679 

 At row:170, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:170, column:22,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:22,the value of plot_cost is         : 14.009638970155882 

 At row:170, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:170, column:23,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:23,the value of plot_cost is         : 14.112681101126602 

 At row:170, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:170, column:24,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:24,the value of plot_cost is         : 14.216531292499837 

 At row:170, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:170, column:25,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:25,the value of plot_cost is         : 14.321189544275585 

 At row:170, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:170, column:26,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:26,the value of plot_cost is         : 14.426655856453845 

 At row:170, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:170, column:27,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:27,the value of plot_cost is         : 14.532930229034625 

 At row:170, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:170, column:28,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:28,the value of plot_cost is         : 14.640012662017924 

 At row:170, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:170, column:29,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:29,the value of plot_cost is         : 14.74790315540373 

 At row:170, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:170, column:30,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:30,the value of plot_cost is         : 14.856601709192054 

 At row:170, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:170, column:31,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:31,the value of plot_cost is         : 14.966108323382894 

 At row:170, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:170, column:32,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:32,the value of plot_cost is         : 15.076422997976245 

 At row:170, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:170, column:33,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:33,the value of plot_cost is         : 15.18754573297212 

 At row:170, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:170, column:34,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:34,the value of plot_cost is         : 15.299476528370505 

 At row:170, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:170, column:35,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:35,the value of plot_cost is         : 15.4122153841714 

 At row:170, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:170, column:36,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:36,the value of plot_cost is         : 15.525762300374817 

 At row:170, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:170, column:37,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:37,the value of plot_cost is         : 15.640117276980742 

 At row:170, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:170, column:38,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:38,the value of plot_cost is         : 15.755280313989195 

 At row:170, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:170, column:39,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:39,the value of plot_cost is         : 15.871251411400156 

 At row:170, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:170, column:40,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:40,the value of plot_cost is         : 15.988030569213626 

 At row:170, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:170, column:41,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:41,the value of plot_cost is         : 16.105617787429615 

 At row:170, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:170, column:42,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:42,the value of plot_cost is         : 16.22401306604812 

 At row:170, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:170, column:43,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:43,the value of plot_cost is         : 16.343216405069146 

 At row:170, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:170, column:44,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:44,the value of plot_cost is         : 16.46322780449268 

 At row:170, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:170, column:45,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:45,the value of plot_cost is         : 16.584047264318727 

 At row:170, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:170, column:46,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:46,the value of plot_cost is         : 16.705674784547295 

 At row:170, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:170, column:47,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:47,the value of plot_cost is         : 16.82811036517837 

 At row:170, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:170, column:48,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:48,the value of plot_cost is         : 16.951354006211975 

 At row:170, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:170, column:49,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:49,the value of plot_cost is         : 17.075405707648084 

 At row:170, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:170, column:50,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:50,the value of plot_cost is         : 17.20026546948671 

 At row:170, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:170, column:51,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:51,the value of plot_cost is         : 17.325933291727846 

 At row:170, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:170, column:52,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:52,the value of plot_cost is         : 17.45240917437151 

 At row:170, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:170, column:53,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:53,the value of plot_cost is         : 17.57969311741768 

 At row:170, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:170, column:54,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:54,the value of plot_cost is         : 17.707785120866365 

 At row:170, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:170, column:55,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:55,the value of plot_cost is         : 17.836685184717563 

 At row:170, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:170, column:56,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:56,the value of plot_cost is         : 17.96639330897128 

 At row:170, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:170, column:57,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:57,the value of plot_cost is         : 18.09690949362751 

 At row:170, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:170, column:58,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:58,the value of plot_cost is         : 18.22823373868626 

 At row:170, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:170, column:59,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:59,the value of plot_cost is         : 18.360366044147522 

 At row:170, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:170, column:60,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:60,the value of plot_cost is         : 18.493306410011296 

 At row:170, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:170, column:61,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:61,the value of plot_cost is         : 18.62705483627759 

 At row:170, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:170, column:62,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:62,the value of plot_cost is         : 18.761611322946404 

 At row:170, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:170, column:63,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:63,the value of plot_cost is         : 18.896975870017723 

 At row:170, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:170, column:64,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:64,the value of plot_cost is         : 19.033148477491554 

 At row:170, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:170, column:65,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:65,the value of plot_cost is         : 19.17012914536791 

 At row:170, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:170, column:66,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:66,the value of plot_cost is         : 19.307917873646776 

 At row:170, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:170, column:67,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:67,the value of plot_cost is         : 19.446514662328156 

 At row:170, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:170, column:68,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:68,the value of plot_cost is         : 19.585919511412058 

 At row:170, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:170, column:69,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:69,the value of plot_cost is         : 19.726132420898466 

 At row:170, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:170, column:70,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:70,the value of plot_cost is         : 19.8671533907874 

 At row:170, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:170, column:71,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:71,the value of plot_cost is         : 20.00898242107884 

 At row:170, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:170, column:72,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:72,the value of plot_cost is         : 20.1516195117728 

 At row:170, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:170, column:73,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:73,the value of plot_cost is         : 20.295064662869272 

 At row:170, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:170, column:74,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:74,the value of plot_cost is         : 20.43931787436826 

 At row:170, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:170, column:75,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:75,the value of plot_cost is         : 20.584379146269765 

 At row:170, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:170, column:76,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:76,the value of plot_cost is         : 20.73024847857378 

 At row:170, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:170, column:77,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:77,the value of plot_cost is         : 20.87692587128031 

 At row:170, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:170, column:78,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:78,the value of plot_cost is         : 21.024411324389362 

 At row:170, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:170, column:79,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:79,the value of plot_cost is         : 21.172704837900923 

 At row:170, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:170, column:80,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:80,the value of plot_cost is         : 21.32180641181501 

 At row:170, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:170, column:81,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:81,the value of plot_cost is         : 21.4717160461316 

 At row:170, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:170, column:82,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:82,the value of plot_cost is         : 21.622433740850713 

 At row:170, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:170, column:83,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:83,the value of plot_cost is         : 21.77395949597233 

 At row:170, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:170, column:84,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:84,the value of plot_cost is         : 21.926293311496472 

 At row:170, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:170, column:85,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:85,the value of plot_cost is         : 22.079435187423126 

 At row:170, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:170, column:86,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:86,the value of plot_cost is         : 22.233385123752296 

 At row:170, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:170, column:87,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:87,the value of plot_cost is         : 22.388143120483974 

 At row:170, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:170, column:88,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:88,the value of plot_cost is         : 22.54370917761818 

 At row:170, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:170, column:89,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:89,the value of plot_cost is         : 22.700083295154887 

 At row:170, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:170, column:90,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:90,the value of plot_cost is         : 22.857265473094127 

 At row:170, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:170, column:91,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:91,the value of plot_cost is         : 23.015255711435866 

 At row:170, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:170, column:92,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:92,the value of plot_cost is         : 23.174054010180132 

 At row:170, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:170, column:93,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:93,the value of plot_cost is         : 23.3336603693269 

 At row:170, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:170, column:94,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:94,the value of plot_cost is         : 23.494074788876194 

 At row:170, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:170, column:95,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:95,the value of plot_cost is         : 23.655297268827997 

 At row:170, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:170, column:96,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:96,the value of plot_cost is         : 23.817327809182316 

 At row:170, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:170, column:97,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:97,the value of plot_cost is         : 23.980166409939148 

 At row:170, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:170, column:98,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:98,the value of plot_cost is         : 24.1438130710985 

 At row:170, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:170, column:99,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:99,the value of plot_cost is         : 24.308267792660363 

 At row:170, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:170, column:100,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:100,the value of plot_cost is         : 24.47353057462475 

 At row:170, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:170, column:101,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:101,the value of plot_cost is         : 24.639601416991646 

 At row:170, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:170, column:102,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:102,the value of plot_cost is         : 24.806480319761057 

 At row:170, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:170, column:103,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:103,the value of plot_cost is         : 24.97416728293298 

 At row:170, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:170, column:104,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:104,the value of plot_cost is         : 25.142662306507418 

 At row:170, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:170, column:105,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:105,the value of plot_cost is         : 25.311965390484374 

 At row:170, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:170, column:106,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:106,the value of plot_cost is         : 25.482076534863843 

 At row:170, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:170, column:107,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:107,the value of plot_cost is         : 25.652995739645824 

 At row:170, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:170, column:108,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:108,the value of plot_cost is         : 25.824723004830332 

 At row:170, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:170, column:109,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:109,the value of plot_cost is         : 25.99725833041735 

 At row:170, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:170, column:110,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:110,the value of plot_cost is         : 26.17060171640689 

 At row:170, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:170, column:111,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:111,the value of plot_cost is         : 26.344753162798934 

 At row:170, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:170, column:112,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:112,the value of plot_cost is         : 26.519712669593492 

 At row:170, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:170, column:113,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:113,the value of plot_cost is         : 26.695480236790566 

 At row:170, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:170, column:114,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:114,the value of plot_cost is         : 26.87205586439016 

 At row:170, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:170, column:115,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:115,the value of plot_cost is         : 27.049439552392265 

 At row:170, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:170, column:116,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:116,the value of plot_cost is         : 27.227631300796887 

 At row:170, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:170, column:117,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:117,the value of plot_cost is         : 27.406631109604017 

 At row:170, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:170, column:118,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:118,the value of plot_cost is         : 27.586438978813668 

 At row:170, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:170, column:119,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:119,the value of plot_cost is         : 27.767054908425852 

 At row:170, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:170, column:120,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:120,the value of plot_cost is         : 27.94847889844053 

 At row:170, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:170, column:121,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:121,the value of plot_cost is         : 28.130710948857722 

 At row:170, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:170, column:122,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:122,the value of plot_cost is         : 28.31375105967744 

 At row:170, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:170, column:123,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:123,the value of plot_cost is         : 28.497599230899667 

 At row:170, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:170, column:124,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:124,the value of plot_cost is         : 28.682255462524402 

 At row:170, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:170, column:125,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:125,the value of plot_cost is         : 28.86771975455166 

 At row:170, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:170, column:126,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:126,the value of plot_cost is         : 29.053992106981433 

 At row:170, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:170, column:127,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:127,the value of plot_cost is         : 29.241072519813716 

 At row:170, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:170, column:128,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:128,the value of plot_cost is         : 29.428960993048523 

 At row:170, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:170, column:129,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:129,the value of plot_cost is         : 29.617657526685843 

 At row:170, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:170, column:130,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:130,the value of plot_cost is         : 29.807162120725682 

 At row:170, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:170, column:131,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:131,the value of plot_cost is         : 29.99747477516803 

 At row:170, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:170, column:132,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:132,the value of plot_cost is         : 30.188595490012894 

 At row:170, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:170, column:133,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:133,the value of plot_cost is         : 30.38052426526027 

 At row:170, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:170, column:134,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:134,the value of plot_cost is         : 30.57326110091016 

 At row:170, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:170, column:135,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:135,the value of plot_cost is         : 30.766805996962567 

 At row:170, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:170, column:136,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:136,the value of plot_cost is         : 30.961158953417492 

 At row:170, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:170, column:137,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:137,the value of plot_cost is         : 31.156319970274925 

 At row:170, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:170, column:138,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:138,the value of plot_cost is         : 31.352289047534878 

 At row:170, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:170, column:139,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:139,the value of plot_cost is         : 31.549066185197358 

 At row:170, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:170, column:140,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:140,the value of plot_cost is         : 31.746651383262343 

 At row:170, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:170, column:141,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:141,the value of plot_cost is         : 31.945044641729833 

 At row:170, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:170, column:142,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:142,the value of plot_cost is         : 32.144245960599854 

 At row:170, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:170, column:143,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:143,the value of plot_cost is         : 32.344255339872376 

 At row:170, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:170, column:144,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:144,the value of plot_cost is         : 32.545072779547425 

 At row:170, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:170, column:145,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:145,the value of plot_cost is         : 32.74669827962499 

 At row:170, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:170, column:146,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:146,the value of plot_cost is         : 32.94913184010506 

 At row:170, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:170, column:147,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:147,the value of plot_cost is         : 33.15237346098764 

 At row:170, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:170, column:148,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:148,the value of plot_cost is         : 33.356423142272746 

 At row:170, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:170, column:149,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:149,the value of plot_cost is         : 33.56128088396037 

 At row:170, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:170, column:150,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:150,the value of plot_cost is         : 33.76694668605051 

 At row:170, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:170, column:151,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:151,the value of plot_cost is         : 33.97342054854317 

 At row:170, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:170, column:152,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:152,the value of plot_cost is         : 34.18070247143832 

 At row:170, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:170, column:153,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:153,the value of plot_cost is         : 34.388792454736006 

 At row:170, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:170, column:154,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:154,the value of plot_cost is         : 34.5976904984362 

 At row:170, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:170, column:155,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:155,the value of plot_cost is         : 34.80739660253891 

 At row:170, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:170, column:156,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:156,the value of plot_cost is         : 35.01791076704413 

 At row:170, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:170, column:157,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:157,the value of plot_cost is         : 35.22923299195187 

 At row:170, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:170, column:158,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:158,the value of plot_cost is         : 35.44136327726213 

 At row:170, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:170, column:159,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:159,the value of plot_cost is         : 35.654301622974906 

 At row:170, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:170, column:160,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:160,the value of plot_cost is         : 35.86804802909019 

 At row:170, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:170, column:161,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:161,the value of plot_cost is         : 36.08260249560799 

 At row:170, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:170, column:162,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:162,the value of plot_cost is         : 36.2979650225283 

 At row:170, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:170, column:163,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:163,the value of plot_cost is         : 36.51413560985113 

 At row:170, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:170, column:164,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:164,the value of plot_cost is         : 36.73111425757647 

 At row:170, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:170, column:165,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:165,the value of plot_cost is         : 36.94890096570435 

 At row:170, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:170, column:166,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:166,the value of plot_cost is         : 37.16749573423471 

 At row:170, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:170, column:167,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:167,the value of plot_cost is         : 37.3868985631676 

 At row:170, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:170, column:168,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:168,the value of plot_cost is         : 37.607109452503 

 At row:170, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:170, column:169,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:169,the value of plot_cost is         : 37.828128402240935 

 At row:170, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:170, column:170,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:170,the value of plot_cost is         : 38.04995541238137 

 At row:170, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:170, column:171,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:171,the value of plot_cost is         : 38.27259048292433 

 At row:170, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:170, column:172,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:172,the value of plot_cost is         : 38.49603361386979 

 At row:170, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:170, column:173,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:173,the value of plot_cost is         : 38.72028480521777 

 At row:170, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:170, column:174,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:174,the value of plot_cost is         : 38.94534405696826 

 At row:170, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:170, column:175,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:175,the value of plot_cost is         : 39.17121136912127 

 At row:170, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:170, column:176,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:176,the value of plot_cost is         : 39.39788674167681 

 At row:170, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:170, column:177,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:177,the value of plot_cost is         : 39.625370174634845 

 At row:170, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:170, column:178,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:178,the value of plot_cost is         : 39.8536616679954 

 At row:170, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:170, column:179,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:179,the value of plot_cost is         : 40.08276122175848 

 At row:170, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:170, column:180,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:180,the value of plot_cost is         : 40.31266883592408 

 At row:170, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:170, column:181,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:181,the value of plot_cost is         : 40.543384510492174 

 At row:170, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:170, column:182,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:182,the value of plot_cost is         : 40.77490824546279 

 At row:170, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:170, column:183,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:183,the value of plot_cost is         : 41.00724004083592 

 At row:170, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:170, column:184,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:184,the value of plot_cost is         : 41.240379896611564 

 At row:170, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:170, column:185,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:185,the value of plot_cost is         : 41.47432781278974 

 At row:170, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:170, column:186,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:186,the value of plot_cost is         : 41.7090837893704 

 At row:170, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:170, column:187,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:187,the value of plot_cost is         : 41.94464782635359 

 At row:170, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:170, column:188,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:188,the value of plot_cost is         : 42.18101992373929 

 At row:170, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:170, column:189,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:189,the value of plot_cost is         : 42.41820008152753 

 At row:170, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:170, column:190,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:190,the value of plot_cost is         : 42.65618829971828 

 At row:170, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:170, column:191,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:191,the value of plot_cost is         : 42.89498457831153 

 At row:170, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:170, column:192,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:192,the value of plot_cost is         : 43.13458891730729 

 At row:170, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:170, column:193,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:193,the value of plot_cost is         : 43.37500131670557 

 At row:170, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:170, column:194,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:194,the value of plot_cost is         : 43.61622177650637 

 At row:170, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:170, column:195,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:195,the value of plot_cost is         : 43.858250296709684 

 At row:170, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:170, column:196,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:196,the value of plot_cost is         : 44.10108687731551 

 At row:170, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:170, column:197,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:197,the value of plot_cost is         : 44.34473151832386 

 At row:170, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:170, column:198,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:198,the value of plot_cost is         : 44.58918421973471 

 At row:170, column:199,the value of plot_t0 is           : 3.0
 At row:170, column:199,the value of plot_t1 is           : 2.4170854271356785
 At row:170, column:199,the value of plot_cost is         : 44.8344449815481 

 At row:171, column:0,the value of plot_t0 is           : -1.0
 At row:171, column:0,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:0,the value of plot_cost is         : 12.454934796018867 

 At row:171, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:171, column:1,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:1,the value of plot_cost is         : 12.542877741182584 

 At row:171, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:171, column:2,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:2,the value of plot_cost is         : 12.631628746748824 

 At row:171, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:171, column:3,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:3,the value of plot_cost is         : 12.721187812717579 

 At row:171, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:171, column:4,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:4,the value of plot_cost is         : 12.811554939088847 

 At row:171, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:171, column:5,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:5,the value of plot_cost is         : 12.902730125862627 

 At row:171, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:171, column:6,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:6,the value of plot_cost is         : 12.994713373038925 

 At row:171, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:171, column:7,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:7,the value of plot_cost is         : 13.087504680617736 

 At row:171, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:171, column:8,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:8,the value of plot_cost is         : 13.18110404859907 

 At row:171, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:171, column:9,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:9,the value of plot_cost is         : 13.275511476982913 

 At row:171, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:171, column:10,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:10,the value of plot_cost is         : 13.370726965769268 

 At row:171, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:171, column:11,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:11,the value of plot_cost is         : 13.466750514958141 

 At row:171, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:171, column:12,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:12,the value of plot_cost is         : 13.563582124549526 

 At row:171, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:171, column:13,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:13,the value of plot_cost is         : 13.661221794543437 

 At row:171, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:171, column:14,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:14,the value of plot_cost is         : 13.759669524939856 

 At row:171, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:171, column:15,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:15,the value of plot_cost is         : 13.858925315738787 

 At row:171, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:171, column:16,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:16,the value of plot_cost is         : 13.958989166940235 

 At row:171, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:171, column:17,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:17,the value of plot_cost is         : 14.059861078544195 

 At row:171, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:171, column:18,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:18,the value of plot_cost is         : 14.161541050550682 

 At row:171, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:171, column:19,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:19,the value of plot_cost is         : 14.264029082959674 

 At row:171, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:171, column:20,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:20,the value of plot_cost is         : 14.36732517577118 

 At row:171, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:171, column:21,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:21,the value of plot_cost is         : 14.471429328985204 

 At row:171, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:171, column:22,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:22,the value of plot_cost is         : 14.576341542601742 

 At row:171, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:171, column:23,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:23,the value of plot_cost is         : 14.682061816620802 

 At row:171, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:171, column:24,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:24,the value of plot_cost is         : 14.78859015104237 

 At row:171, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:171, column:25,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:25,the value of plot_cost is         : 14.895926545866452 

 At row:171, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:171, column:26,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:26,the value of plot_cost is         : 15.004071001093052 

 At row:171, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:171, column:27,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:27,the value of plot_cost is         : 15.113023516722166 

 At row:171, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:171, column:28,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:28,the value of plot_cost is         : 15.2227840927538 

 At row:171, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:171, column:29,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:29,the value of plot_cost is         : 15.333352729187943 

 At row:171, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:171, column:30,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:30,the value of plot_cost is         : 15.444729426024601 

 At row:171, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:171, column:31,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:31,the value of plot_cost is         : 15.556914183263777 

 At row:171, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:171, column:32,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:32,the value of plot_cost is         : 15.669907000905463 

 At row:171, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:171, column:33,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:33,the value of plot_cost is         : 15.783707878949674 

 At row:171, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:171, column:34,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:34,the value of plot_cost is         : 15.898316817396395 

 At row:171, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:171, column:35,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:35,the value of plot_cost is         : 16.01373381624563 

 At row:171, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:171, column:36,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:36,the value of plot_cost is         : 16.129958875497376 

 At row:171, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:171, column:37,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:37,the value of plot_cost is         : 16.246991995151642 

 At row:171, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:171, column:38,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:38,the value of plot_cost is         : 16.364833175208428 

 At row:171, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:171, column:39,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:39,the value of plot_cost is         : 16.483482415667723 

 At row:171, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:171, column:40,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:40,the value of plot_cost is         : 16.60293971652953 

 At row:171, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:171, column:41,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:41,the value of plot_cost is         : 16.72320507779386 

 At row:171, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:171, column:42,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:42,the value of plot_cost is         : 16.844278499460696 

 At row:171, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:171, column:43,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:43,the value of plot_cost is         : 16.966159981530055 

 At row:171, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:171, column:44,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:44,the value of plot_cost is         : 17.088849524001926 

 At row:171, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:171, column:45,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:45,the value of plot_cost is         : 17.21234712687631 

 At row:171, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:171, column:46,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:46,the value of plot_cost is         : 17.336652790153213 

 At row:171, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:171, column:47,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:47,the value of plot_cost is         : 17.461766513832625 

 At row:171, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:171, column:48,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:48,the value of plot_cost is         : 17.587688297914564 

 At row:171, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:171, column:49,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:49,the value of plot_cost is         : 17.714418142399012 

 At row:171, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:171, column:50,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:50,the value of plot_cost is         : 17.84195604728597 

 At row:171, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:171, column:51,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:51,the value of plot_cost is         : 17.970302012575445 

 At row:171, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:171, column:52,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:52,the value of plot_cost is         : 18.09945603826744 

 At row:171, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:171, column:53,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:53,the value of plot_cost is         : 18.229418124361946 

 At row:171, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:171, column:54,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:54,the value of plot_cost is         : 18.36018827085897 

 At row:171, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:171, column:55,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:55,the value of plot_cost is         : 18.491766477758503 

 At row:171, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:171, column:56,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:56,the value of plot_cost is         : 18.624152745060552 

 At row:171, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:171, column:57,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:57,the value of plot_cost is         : 18.75734707276513 

 At row:171, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:171, column:58,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:58,the value of plot_cost is         : 18.89134946087221 

 At row:171, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:171, column:59,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:59,the value of plot_cost is         : 19.026159909381807 

 At row:171, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:171, column:60,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:60,the value of plot_cost is         : 19.16177841829392 

 At row:171, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:171, column:61,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:61,the value of plot_cost is         : 19.298204987608543 

 At row:171, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:171, column:62,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:62,the value of plot_cost is         : 19.435439617325688 

 At row:171, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:171, column:63,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:63,the value of plot_cost is         : 19.573482307445346 

 At row:171, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:171, column:64,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:64,the value of plot_cost is         : 19.712333057967513 

 At row:171, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:171, column:65,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:65,the value of plot_cost is         : 19.851991868892213 

 At row:171, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:171, column:66,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:66,the value of plot_cost is         : 19.992458740219412 

 At row:171, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:171, column:67,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:67,the value of plot_cost is         : 20.13373367194913 

 At row:171, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:171, column:68,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:68,the value of plot_cost is         : 20.275816664081365 

 At row:171, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:171, column:69,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:69,the value of plot_cost is         : 20.41870771661611 

 At row:171, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:171, column:70,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:70,the value of plot_cost is         : 20.562406829553375 

 At row:171, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:171, column:71,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:71,the value of plot_cost is         : 20.70691400289315 

 At row:171, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:171, column:72,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:72,the value of plot_cost is         : 20.85222923663545 

 At row:171, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:171, column:73,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:73,the value of plot_cost is         : 20.99835253078025 

 At row:171, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:171, column:74,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:74,the value of plot_cost is         : 21.145283885327572 

 At row:171, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:171, column:75,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:75,the value of plot_cost is         : 21.29302330027742 

 At row:171, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:171, column:76,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:76,the value of plot_cost is         : 21.441570775629778 

 At row:171, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:171, column:77,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:77,the value of plot_cost is         : 21.590926311384642 

 At row:171, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:171, column:78,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:78,the value of plot_cost is         : 21.74108990754203 

 At row:171, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:171, column:79,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:79,the value of plot_cost is         : 21.892061564101922 

 At row:171, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:171, column:80,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:80,the value of plot_cost is         : 22.043841281064342 

 At row:171, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:171, column:81,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:81,the value of plot_cost is         : 22.196429058429267 

 At row:171, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:171, column:82,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:82,the value of plot_cost is         : 22.349824896196715 

 At row:171, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:171, column:83,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:83,the value of plot_cost is         : 22.50402879436667 

 At row:171, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:171, column:84,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:84,the value of plot_cost is         : 22.659040752939145 

 At row:171, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:171, column:85,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:85,the value of plot_cost is         : 22.814860771914145 

 At row:171, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:171, column:86,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:86,the value of plot_cost is         : 22.971488851291642 

 At row:171, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:171, column:87,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:87,the value of plot_cost is         : 23.12892499107166 

 At row:171, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:171, column:88,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:88,the value of plot_cost is         : 23.287169191254197 

 At row:171, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:171, column:89,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:89,the value of plot_cost is         : 23.44622145183925 

 At row:171, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:171, column:90,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:90,the value of plot_cost is         : 23.606081772826812 

 At row:171, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:171, column:91,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:91,the value of plot_cost is         : 23.766750154216894 

 At row:171, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:171, column:92,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:92,the value of plot_cost is         : 23.928226596009488 

 At row:171, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:171, column:93,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:93,the value of plot_cost is         : 24.090511098204598 

 At row:171, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:171, column:94,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:94,the value of plot_cost is         : 24.253603660802217 

 At row:171, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:171, column:95,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:95,the value of plot_cost is         : 24.417504283802373 

 At row:171, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:171, column:96,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:96,the value of plot_cost is         : 24.582212967205024 

 At row:171, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:171, column:97,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:97,the value of plot_cost is         : 24.74772971101019 

 At row:171, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:171, column:98,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:98,the value of plot_cost is         : 24.914054515217877 

 At row:171, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:171, column:99,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:99,the value of plot_cost is         : 25.081187379828076 

 At row:171, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:171, column:100,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:100,the value of plot_cost is         : 25.24912830484079 

 At row:171, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:171, column:101,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:101,the value of plot_cost is         : 25.417877290256023 

 At row:171, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:171, column:102,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:102,the value of plot_cost is         : 25.587434336073773 

 At row:171, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:171, column:103,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:103,the value of plot_cost is         : 25.75779944229403 

 At row:171, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:171, column:104,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:104,the value of plot_cost is         : 25.92897260891681 

 At row:171, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:171, column:105,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:105,the value of plot_cost is         : 26.100953835942097 

 At row:171, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:171, column:106,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:106,the value of plot_cost is         : 26.27374312336991 

 At row:171, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:171, column:107,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:107,the value of plot_cost is         : 26.447340471200228 

 At row:171, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:171, column:108,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:108,the value of plot_cost is         : 26.621745879433067 

 At row:171, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:171, column:109,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:109,the value of plot_cost is         : 26.79695934806842 

 At row:171, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:171, column:110,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:110,the value of plot_cost is         : 26.972980877106288 

 At row:171, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:171, column:111,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:111,the value of plot_cost is         : 27.149810466546665 

 At row:171, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:171, column:112,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:112,the value of plot_cost is         : 27.327448116389565 

 At row:171, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:171, column:113,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:113,the value of plot_cost is         : 27.505893826634974 

 At row:171, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:171, column:114,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:114,the value of plot_cost is         : 27.685147597282914 

 At row:171, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:171, column:115,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:115,the value of plot_cost is         : 27.865209428333355 

 At row:171, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:171, column:116,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:116,the value of plot_cost is         : 28.046079319786305 

 At row:171, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:171, column:117,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:117,the value of plot_cost is         : 28.227757271641778 

 At row:171, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:171, column:118,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:118,the value of plot_cost is         : 28.410243283899767 

 At row:171, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:171, column:119,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:119,the value of plot_cost is         : 28.59353735656027 

 At row:171, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:171, column:120,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:120,the value of plot_cost is         : 28.777639489623287 

 At row:171, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:171, column:121,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:121,the value of plot_cost is         : 28.962549683088817 

 At row:171, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:171, column:122,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:122,the value of plot_cost is         : 29.14826793695687 

 At row:171, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:171, column:123,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:123,the value of plot_cost is         : 29.334794251227425 

 At row:171, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:171, column:124,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:124,the value of plot_cost is         : 29.522128625900507 

 At row:171, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:171, column:125,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:125,the value of plot_cost is         : 29.710271060976105 

 At row:171, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:171, column:126,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:126,the value of plot_cost is         : 29.89922155645421 

 At row:171, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:171, column:127,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:127,the value of plot_cost is         : 30.08898011233483 

 At row:171, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:171, column:128,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:128,the value of plot_cost is         : 30.279546728617973 

 At row:171, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:171, column:129,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:129,the value of plot_cost is         : 30.470921405303624 

 At row:171, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:171, column:130,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:130,the value of plot_cost is         : 30.663104142391795 

 At row:171, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:171, column:131,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:131,the value of plot_cost is         : 30.856094939882478 

 At row:171, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:171, column:132,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:132,the value of plot_cost is         : 31.049893797775677 

 At row:171, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:171, column:133,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:133,the value of plot_cost is         : 31.244500716071386 

 At row:171, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:171, column:134,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:134,the value of plot_cost is         : 31.439915694769628 

 At row:171, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:171, column:135,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:135,the value of plot_cost is         : 31.63613873387037 

 At row:171, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:171, column:136,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:136,the value of plot_cost is         : 31.833169833373624 

 At row:171, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:171, column:137,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:137,the value of plot_cost is         : 32.03100899327939 

 At row:171, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:171, column:138,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:138,the value of plot_cost is         : 32.229656213587695 

 At row:171, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:171, column:139,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:139,the value of plot_cost is         : 32.42911149429849 

 At row:171, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:171, column:140,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:140,the value of plot_cost is         : 32.62937483541182 

 At row:171, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:171, column:141,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:141,the value of plot_cost is         : 32.83044623692764 

 At row:171, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:171, column:142,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:142,the value of plot_cost is         : 33.032325698845995 

 At row:171, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:171, column:143,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:143,the value of plot_cost is         : 33.23501322116686 

 At row:171, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:171, column:144,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:144,the value of plot_cost is         : 33.43850880389024 

 At row:171, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:171, column:145,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:145,the value of plot_cost is         : 33.64281244701615 

 At row:171, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:171, column:146,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:146,the value of plot_cost is         : 33.84792415054455 

 At row:171, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:171, column:147,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:147,the value of plot_cost is         : 34.05384391447547 

 At row:171, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:171, column:148,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:148,the value of plot_cost is         : 34.26057173880891 

 At row:171, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:171, column:149,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:149,the value of plot_cost is         : 34.46810762354487 

 At row:171, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:171, column:150,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:150,the value of plot_cost is         : 34.67645156868334 

 At row:171, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:171, column:151,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:151,the value of plot_cost is         : 34.88560357422433 

 At row:171, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:171, column:152,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:152,the value of plot_cost is         : 35.095563640167825 

 At row:171, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:171, column:153,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:153,the value of plot_cost is         : 35.306331766513836 

 At row:171, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:171, column:154,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:154,the value of plot_cost is         : 35.51790795326238 

 At row:171, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:171, column:155,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:155,the value of plot_cost is         : 35.73029220041342 

 At row:171, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:171, column:156,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:156,the value of plot_cost is         : 35.94348450796698 

 At row:171, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:171, column:157,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:157,the value of plot_cost is         : 36.15748487592305 

 At row:171, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:171, column:158,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:158,the value of plot_cost is         : 36.37229330428165 

 At row:171, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:171, column:159,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:159,the value of plot_cost is         : 36.58790979304275 

 At row:171, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:171, column:160,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:160,the value of plot_cost is         : 36.804334342206374 

 At row:171, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:171, column:161,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:161,the value of plot_cost is         : 37.02156695177252 

 At row:171, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:171, column:162,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:162,the value of plot_cost is         : 37.23960762174116 

 At row:171, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:171, column:163,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:163,the value of plot_cost is         : 37.45845635211232 

 At row:171, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:171, column:164,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:164,the value of plot_cost is         : 37.678113142886005 

 At row:171, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:171, column:165,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:165,the value of plot_cost is         : 37.89857799406221 

 At row:171, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:171, column:166,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:166,the value of plot_cost is         : 38.119850905640924 

 At row:171, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:171, column:167,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:167,the value of plot_cost is         : 38.341931877622144 

 At row:171, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:171, column:168,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:168,the value of plot_cost is         : 38.564820910005885 

 At row:171, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:171, column:169,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:169,the value of plot_cost is         : 38.78851800279215 

 At row:171, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:171, column:170,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:170,the value of plot_cost is         : 39.013023155980925 

 At row:171, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:171, column:171,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:171,the value of plot_cost is         : 39.23833636957221 

 At row:171, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:171, column:172,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:172,the value of plot_cost is         : 39.46445764356601 

 At row:171, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:171, column:173,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:173,the value of plot_cost is         : 39.69138697796232 

 At row:171, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:171, column:174,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:174,the value of plot_cost is         : 39.91912437276116 

 At row:171, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:171, column:175,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:175,the value of plot_cost is         : 40.14766982796251 

 At row:171, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:171, column:176,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:176,the value of plot_cost is         : 40.37702334356637 

 At row:171, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:171, column:177,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:177,the value of plot_cost is         : 40.60718491957274 

 At row:171, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:171, column:178,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:178,the value of plot_cost is         : 40.83815455598164 

 At row:171, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:171, column:179,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:179,the value of plot_cost is         : 41.06993225279304 

 At row:171, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:171, column:180,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:180,the value of plot_cost is         : 41.30251801000698 

 At row:171, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:171, column:181,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:181,the value of plot_cost is         : 41.535911827623416 

 At row:171, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:171, column:182,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:182,the value of plot_cost is         : 41.770113705642366 

 At row:171, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:171, column:183,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:183,the value of plot_cost is         : 42.00512364406383 

 At row:171, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:171, column:184,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:184,the value of plot_cost is         : 42.24094164288781 

 At row:171, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:171, column:185,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:185,the value of plot_cost is         : 42.477567702114314 

 At row:171, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:171, column:186,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:186,the value of plot_cost is         : 42.71500182174333 

 At row:171, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:171, column:187,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:187,the value of plot_cost is         : 42.953244001774856 

 At row:171, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:171, column:188,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:188,the value of plot_cost is         : 43.1922942422089 

 At row:171, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:171, column:189,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:189,the value of plot_cost is         : 43.43215254304546 

 At row:171, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:171, column:190,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:190,the value of plot_cost is         : 43.67281890428453 

 At row:171, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:171, column:191,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:191,the value of plot_cost is         : 43.914293325926124 

 At row:171, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:171, column:192,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:192,the value of plot_cost is         : 44.15657580797023 

 At row:171, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:171, column:193,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:193,the value of plot_cost is         : 44.399666350416844 

 At row:171, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:171, column:194,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:194,the value of plot_cost is         : 44.64356495326599 

 At row:171, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:171, column:195,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:195,the value of plot_cost is         : 44.888271616517635 

 At row:171, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:171, column:196,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:196,the value of plot_cost is         : 45.1337863401718 

 At row:171, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:171, column:197,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:197,the value of plot_cost is         : 45.380109124228476 

 At row:171, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:171, column:198,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:198,the value of plot_cost is         : 45.62723996868767 

 At row:171, column:199,the value of plot_t0 is           : 3.0
 At row:171, column:199,the value of plot_t1 is           : 2.4371859296482414
 At row:171, column:199,the value of plot_cost is         : 45.87517887354937 

 At row:172, column:0,the value of plot_t0 is           : -1.0
 At row:172, column:0,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:0,the value of plot_cost is         : 12.975300876240492 

 At row:172, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:172, column:1,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:1,the value of plot_cost is         : 13.06592196445255 

 At row:172, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:172, column:2,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:2,the value of plot_cost is         : 13.157351113067124 

 At row:172, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:172, column:3,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:3,the value of plot_cost is         : 13.249588322084216 

 At row:172, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:172, column:4,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:4,the value of plot_cost is         : 13.34263359150382 

 At row:172, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:172, column:5,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:5,the value of plot_cost is         : 13.436486921325937 

 At row:172, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:172, column:6,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:6,the value of plot_cost is         : 13.531148311550568 

 At row:172, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:172, column:7,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:7,the value of plot_cost is         : 13.626617762177716 

 At row:172, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:172, column:8,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:8,the value of plot_cost is         : 13.722895273207385 

 At row:172, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:172, column:9,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:9,the value of plot_cost is         : 13.819980844639563 

 At row:172, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:172, column:10,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:10,the value of plot_cost is         : 13.917874476474255 

 At row:172, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:172, column:11,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:11,the value of plot_cost is         : 14.016576168711463 

 At row:172, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:172, column:12,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:12,the value of plot_cost is         : 14.116085921351186 

 At row:172, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:172, column:13,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:13,the value of plot_cost is         : 14.21640373439343 

 At row:172, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:172, column:14,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:14,the value of plot_cost is         : 14.317529607838184 

 At row:172, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:172, column:15,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:15,the value of plot_cost is         : 14.41946354168545 

 At row:172, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:172, column:16,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:16,the value of plot_cost is         : 14.522205535935234 

 At row:172, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:172, column:17,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:17,the value of plot_cost is         : 14.625755590587532 

 At row:172, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:172, column:18,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:18,the value of plot_cost is         : 14.73011370564235 

 At row:172, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:172, column:19,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:19,the value of plot_cost is         : 14.835279881099682 

 At row:172, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:172, column:20,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:20,the value of plot_cost is         : 14.941254116959524 

 At row:172, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:172, column:21,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:21,the value of plot_cost is         : 15.048036413221881 

 At row:172, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:172, column:22,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:22,the value of plot_cost is         : 15.155626769886757 

 At row:172, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:172, column:23,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:23,the value of plot_cost is         : 15.26402518695415 

 At row:172, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:172, column:24,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:24,the value of plot_cost is         : 15.373231664424056 

 At row:172, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:172, column:25,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:25,the value of plot_cost is         : 15.483246202296474 

 At row:172, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:172, column:26,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:26,the value of plot_cost is         : 15.594068800571408 

 At row:172, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:172, column:27,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:27,the value of plot_cost is         : 15.705699459248855 

 At row:172, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:172, column:28,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:28,the value of plot_cost is         : 15.818138178328828 

 At row:172, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:172, column:29,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:29,the value of plot_cost is         : 15.931384957811307 

 At row:172, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:172, column:30,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:30,the value of plot_cost is         : 16.0454397976963 

 At row:172, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:172, column:31,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:31,the value of plot_cost is         : 16.16030269798381 

 At row:172, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:172, column:32,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:32,the value of plot_cost is         : 16.275973658673834 

 At row:172, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:172, column:33,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:33,the value of plot_cost is         : 16.39245267976638 

 At row:172, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:172, column:34,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:34,the value of plot_cost is         : 16.509739761261436 

 At row:172, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:172, column:35,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:35,the value of plot_cost is         : 16.627834903159005 

 At row:172, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:172, column:36,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:36,the value of plot_cost is         : 16.74673810545909 

 At row:172, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:172, column:37,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:37,the value of plot_cost is         : 16.86644936816169 

 At row:172, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:172, column:38,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:38,the value of plot_cost is         : 16.986968691266814 

 At row:172, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:172, column:39,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:39,the value of plot_cost is         : 17.108296074774444 

 At row:172, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:172, column:40,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:40,the value of plot_cost is         : 17.230431518684586 

 At row:172, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:172, column:41,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:41,the value of plot_cost is         : 17.353375022997245 

 At row:172, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:172, column:42,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:42,the value of plot_cost is         : 17.477126587712423 

 At row:172, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:172, column:43,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:43,the value of plot_cost is         : 17.60168621283012 

 At row:172, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:172, column:44,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:44,the value of plot_cost is         : 17.727053898350327 

 At row:172, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:172, column:45,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:45,the value of plot_cost is         : 17.853229644273046 

 At row:172, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:172, column:46,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:46,the value of plot_cost is         : 17.980213450598285 

 At row:172, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:172, column:47,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:47,the value of plot_cost is         : 18.108005317326032 

 At row:172, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:172, column:48,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:48,the value of plot_cost is         : 18.236605244456303 

 At row:172, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:172, column:49,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:49,the value of plot_cost is         : 18.366013231989086 

 At row:172, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:172, column:50,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:50,the value of plot_cost is         : 18.496229279924382 

 At row:172, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:172, column:51,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:51,the value of plot_cost is         : 18.627253388262194 

 At row:172, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:172, column:52,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:52,the value of plot_cost is         : 18.75908555700252 

 At row:172, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:172, column:53,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:53,the value of plot_cost is         : 18.89172578614536 

 At row:172, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:172, column:54,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:54,the value of plot_cost is         : 19.025174075690725 

 At row:172, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:172, column:55,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:55,the value of plot_cost is         : 19.1594304256386 

 At row:172, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:172, column:56,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:56,the value of plot_cost is         : 19.29449483598899 

 At row:172, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:172, column:57,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:57,the value of plot_cost is         : 19.43036730674189 

 At row:172, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:172, column:58,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:58,the value of plot_cost is         : 19.567047837897306 

 At row:172, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:172, column:59,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:59,the value of plot_cost is         : 19.704536429455242 

 At row:172, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:172, column:60,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:60,the value of plot_cost is         : 19.842833081415684 

 At row:172, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:172, column:61,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:61,the value of plot_cost is         : 19.981937793778652 

 At row:172, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:172, column:62,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:62,the value of plot_cost is         : 20.12185056654413 

 At row:172, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:172, column:63,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:63,the value of plot_cost is         : 20.262571399712126 

 At row:172, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:172, column:64,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:64,the value of plot_cost is         : 20.404100293282628 

 At row:172, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:172, column:65,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:65,the value of plot_cost is         : 20.54643724725566 

 At row:172, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:172, column:66,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:66,the value of plot_cost is         : 20.689582261631195 

 At row:172, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:172, column:67,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:67,the value of plot_cost is         : 20.833535336409252 

 At row:172, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:172, column:68,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:68,the value of plot_cost is         : 20.978296471589818 

 At row:172, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:172, column:69,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:69,the value of plot_cost is         : 21.123865667172904 

 At row:172, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:172, column:70,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:70,the value of plot_cost is         : 21.2702429231585 

 At row:172, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:172, column:71,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:71,the value of plot_cost is         : 21.41742823954661 

 At row:172, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:172, column:72,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:72,the value of plot_cost is         : 21.565421616337243 

 At row:172, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:172, column:73,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:73,the value of plot_cost is         : 21.71422305353039 

 At row:172, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:172, column:74,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:74,the value of plot_cost is         : 21.86383255112604 

 At row:172, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:172, column:75,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:75,the value of plot_cost is         : 22.014250109124227 

 At row:172, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:172, column:76,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:76,the value of plot_cost is         : 22.16547572752491 

 At row:172, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:172, column:77,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:77,the value of plot_cost is         : 22.317509406328117 

 At row:172, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:172, column:78,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:78,the value of plot_cost is         : 22.47035114553384 

 At row:172, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:172, column:79,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:79,the value of plot_cost is         : 22.624000945142072 

 At row:172, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:172, column:80,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:80,the value of plot_cost is         : 22.778458805152823 

 At row:172, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:172, column:81,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:81,the value of plot_cost is         : 22.933724725566083 

 At row:172, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:172, column:82,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:82,the value of plot_cost is         : 23.089798706381867 

 At row:172, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:172, column:83,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:83,the value of plot_cost is         : 23.24668074760016 

 At row:172, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:172, column:84,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:84,the value of plot_cost is         : 23.404370849220967 

 At row:172, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:172, column:85,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:85,the value of plot_cost is         : 23.562869011244302 

 At row:172, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:172, column:86,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:86,the value of plot_cost is         : 23.72217523367014 

 At row:172, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:172, column:87,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:87,the value of plot_cost is         : 23.882289516498496 

 At row:172, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:172, column:88,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:88,the value of plot_cost is         : 24.043211859729368 

 At row:172, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:172, column:89,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:89,the value of plot_cost is         : 24.204942263362753 

 At row:172, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:172, column:90,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:90,the value of plot_cost is         : 24.36748072739865 

 At row:172, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:172, column:91,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:91,the value of plot_cost is         : 24.530827251837064 

 At row:172, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:172, column:92,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:92,the value of plot_cost is         : 24.694981836677997 

 At row:172, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:172, column:93,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:93,the value of plot_cost is         : 24.859944481921445 

 At row:172, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:172, column:94,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:94,the value of plot_cost is         : 25.025715187567403 

 At row:172, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:172, column:95,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:95,the value of plot_cost is         : 25.192293953615888 

 At row:172, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:172, column:96,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:96,the value of plot_cost is         : 25.359680780066874 

 At row:172, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:172, column:97,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:97,the value of plot_cost is         : 25.527875666920384 

 At row:172, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:172, column:98,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:98,the value of plot_cost is         : 25.696878614176406 

 At row:172, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:172, column:99,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:99,the value of plot_cost is         : 25.86668962183494 

 At row:172, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:172, column:100,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:100,the value of plot_cost is         : 26.03730868989599 

 At row:172, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:172, column:101,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:101,the value of plot_cost is         : 26.208735818359553 

 At row:172, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:172, column:102,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:102,the value of plot_cost is         : 26.38097100722564 

 At row:172, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:172, column:103,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:103,the value of plot_cost is         : 26.554014256494234 

 At row:172, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:172, column:104,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:104,the value of plot_cost is         : 26.72786556616535 

 At row:172, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:172, column:105,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:105,the value of plot_cost is         : 26.902524936238972 

 At row:172, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:172, column:106,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:106,the value of plot_cost is         : 27.07799236671512 

 At row:172, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:172, column:107,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:107,the value of plot_cost is         : 27.254267857593778 

 At row:172, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:172, column:108,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:108,the value of plot_cost is         : 27.431351408874953 

 At row:172, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:172, column:109,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:109,the value of plot_cost is         : 27.60924302055864 

 At row:172, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:172, column:110,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:110,the value of plot_cost is         : 27.78794269264484 

 At row:172, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:172, column:111,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:111,the value of plot_cost is         : 27.967450425133553 

 At row:172, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:172, column:112,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:112,the value of plot_cost is         : 28.14776621802479 

 At row:172, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:172, column:113,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:113,the value of plot_cost is         : 28.328890071318533 

 At row:172, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:172, column:114,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:114,the value of plot_cost is         : 28.510821985014807 

 At row:172, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:172, column:115,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:115,the value of plot_cost is         : 28.693561959113584 

 At row:172, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:172, column:116,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:116,the value of plot_cost is         : 28.87710999361487 

 At row:172, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:172, column:117,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:117,the value of plot_cost is         : 29.061466088518678 

 At row:172, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:172, column:118,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:118,the value of plot_cost is         : 29.24663024382501 

 At row:172, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:172, column:119,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:119,the value of plot_cost is         : 29.43260245953384 

 At row:172, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:172, column:120,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:120,the value of plot_cost is         : 29.619382735645196 

 At row:172, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:172, column:121,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:121,the value of plot_cost is         : 29.80697107215906 

 At row:172, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:172, column:122,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:122,the value of plot_cost is         : 29.99536746907545 

 At row:172, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:172, column:123,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:123,the value of plot_cost is         : 30.184571926394344 

 At row:172, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:172, column:124,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:124,the value of plot_cost is         : 30.374584444115758 

 At row:172, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:172, column:125,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:125,the value of plot_cost is         : 30.56540502223969 

 At row:172, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:172, column:126,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:126,the value of plot_cost is         : 30.757033660766133 

 At row:172, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:172, column:127,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:127,the value of plot_cost is         : 30.949470359695095 

 At row:172, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:172, column:128,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:128,the value of plot_cost is         : 31.14271511902657 

 At row:172, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:172, column:129,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:129,the value of plot_cost is         : 31.336767938760556 

 At row:172, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:172, column:130,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:130,the value of plot_cost is         : 31.53162881889706 

 At row:172, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:172, column:131,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:131,the value of plot_cost is         : 31.727297759436077 

 At row:172, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:172, column:132,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:132,the value of plot_cost is         : 31.923774760377615 

 At row:172, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:172, column:133,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:133,the value of plot_cost is         : 32.121059821721666 

 At row:172, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:172, column:134,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:134,the value of plot_cost is         : 32.31915294346823 

 At row:172, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:172, column:135,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:135,the value of plot_cost is         : 32.51805412561731 

 At row:172, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:172, column:136,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:136,the value of plot_cost is         : 32.71776336816891 

 At row:172, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:172, column:137,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:137,the value of plot_cost is         : 32.918280671123014 

 At row:172, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:172, column:138,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:138,the value of plot_cost is         : 33.11960603447964 

 At row:172, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:172, column:139,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:139,the value of plot_cost is         : 33.32173945823878 

 At row:172, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:172, column:140,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:140,the value of plot_cost is         : 33.52468094240044 

 At row:172, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:172, column:141,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:141,the value of plot_cost is         : 33.728430486964605 

 At row:172, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:172, column:142,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:142,the value of plot_cost is         : 33.93298809193129 

 At row:172, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:172, column:143,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:143,the value of plot_cost is         : 34.138353757300486 

 At row:172, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:172, column:144,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:144,the value of plot_cost is         : 34.344527483072206 

 At row:172, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:172, column:145,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:145,the value of plot_cost is         : 34.55150926924644 

 At row:172, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:172, column:146,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:146,the value of plot_cost is         : 34.75929911582318 

 At row:172, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:172, column:147,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:147,the value of plot_cost is         : 34.96789702280245 

 At row:172, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:172, column:148,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:148,the value of plot_cost is         : 35.177302990184224 

 At row:172, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:172, column:149,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:149,the value of plot_cost is         : 35.38751701796851 

 At row:172, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:172, column:150,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:150,the value of plot_cost is         : 35.59853910615532 

 At row:172, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:172, column:151,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:151,the value of plot_cost is         : 35.81036925474464 

 At row:172, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:172, column:152,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:152,the value of plot_cost is         : 36.02300746373648 

 At row:172, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:172, column:153,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:153,the value of plot_cost is         : 36.23645373313082 

 At row:172, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:172, column:154,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:154,the value of plot_cost is         : 36.4507080629277 

 At row:172, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:172, column:155,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:155,the value of plot_cost is         : 36.66577045312709 

 At row:172, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:172, column:156,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:156,the value of plot_cost is         : 36.88164090372898 

 At row:172, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:172, column:157,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:157,the value of plot_cost is         : 37.09831941473339 

 At row:172, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:172, column:158,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:158,the value of plot_cost is         : 37.31580598614031 

 At row:172, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:172, column:159,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:159,the value of plot_cost is         : 37.534100617949754 

 At row:172, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:172, column:160,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:160,the value of plot_cost is         : 37.753203310161716 

 At row:172, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:172, column:161,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:161,the value of plot_cost is         : 37.97311406277619 

 At row:172, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:172, column:162,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:162,the value of plot_cost is         : 38.19383287579317 

 At row:172, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:172, column:163,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:163,the value of plot_cost is         : 38.415359749212676 

 At row:172, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:172, column:164,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:164,the value of plot_cost is         : 38.63769468303469 

 At row:172, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:172, column:165,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:165,the value of plot_cost is         : 38.86083767725923 

 At row:172, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:172, column:166,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:166,the value of plot_cost is         : 39.08478873188627 

 At row:172, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:172, column:167,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:167,the value of plot_cost is         : 39.30954784691583 

 At row:172, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:172, column:168,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:168,the value of plot_cost is         : 39.53511502234791 

 At row:172, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:172, column:169,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:169,the value of plot_cost is         : 39.761490258182505 

 At row:172, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:172, column:170,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:170,the value of plot_cost is         : 39.98867355441962 

 At row:172, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:172, column:171,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:171,the value of plot_cost is         : 40.21666491105923 

 At row:172, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:172, column:172,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:172,the value of plot_cost is         : 40.44546432810137 

 At row:172, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:172, column:173,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:173,the value of plot_cost is         : 40.67507180554602 

 At row:172, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:172, column:174,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:174,the value of plot_cost is         : 40.905487343393204 

 At row:172, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:172, column:175,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:175,the value of plot_cost is         : 41.13671094164288 

 At row:172, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:172, column:176,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:176,the value of plot_cost is         : 41.368742600295086 

 At row:172, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:172, column:177,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:177,the value of plot_cost is         : 41.601582319349795 

 At row:172, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:172, column:178,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:178,the value of plot_cost is         : 41.835230098807024 

 At row:172, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:172, column:179,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:179,the value of plot_cost is         : 42.06968593866677 

 At row:172, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:172, column:180,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:180,the value of plot_cost is         : 42.30494983892902 

 At row:172, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:172, column:181,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:181,the value of plot_cost is         : 42.5410217995938 

 At row:172, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:172, column:182,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:182,the value of plot_cost is         : 42.77790182066108 

 At row:172, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:172, column:183,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:183,the value of plot_cost is         : 43.01558990213089 

 At row:172, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:172, column:184,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:184,the value of plot_cost is         : 43.2540860440032 

 At row:172, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:172, column:185,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:185,the value of plot_cost is         : 43.49339024627805 

 At row:172, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:172, column:186,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:186,the value of plot_cost is         : 43.73350250895539 

 At row:172, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:172, column:187,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:187,the value of plot_cost is         : 43.97442283203526 

 At row:172, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:172, column:188,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:188,the value of plot_cost is         : 44.21615121551764 

 At row:172, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:172, column:189,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:189,the value of plot_cost is         : 44.45868765940253 

 At row:172, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:172, column:190,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:190,the value of plot_cost is         : 44.70203216368994 

 At row:172, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:172, column:191,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:191,the value of plot_cost is         : 44.946184728379876 

 At row:172, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:172, column:192,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:192,the value of plot_cost is         : 45.1911453534723 

 At row:172, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:172, column:193,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:193,the value of plot_cost is         : 45.43691403896726 

 At row:172, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:172, column:194,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:194,the value of plot_cost is         : 45.68349078486473 

 At row:172, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:172, column:195,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:195,the value of plot_cost is         : 45.930875591164714 

 At row:172, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:172, column:196,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:196,the value of plot_cost is         : 46.17906845786722 

 At row:172, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:172, column:197,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:197,the value of plot_cost is         : 46.42806938497223 

 At row:172, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:172, column:198,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:198,the value of plot_cost is         : 46.67787837247975 

 At row:172, column:199,the value of plot_t0 is           : 3.0
 At row:172, column:199,the value of plot_t1 is           : 2.457286432160804
 At row:172, column:199,the value of plot_cost is         : 46.92849542038981 

 At row:173, column:0,the value of plot_t0 is           : -1.0
 At row:173, column:0,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:0,the value of plot_cost is         : 13.5082496113013 

 At row:173, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:173, column:1,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:1,the value of plot_cost is         : 13.601548842561693 

 At row:173, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:173, column:2,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:2,the value of plot_cost is         : 13.6956561342246 

 At row:173, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:173, column:3,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:3,the value of plot_cost is         : 13.79057148629003 

 At row:173, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:173, column:4,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:4,the value of plot_cost is         : 13.886294898757967 

 At row:173, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:173, column:5,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:5,the value of plot_cost is         : 13.982826371628422 

 At row:173, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:173, column:6,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:6,the value of plot_cost is         : 14.080165904901389 

 At row:173, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:173, column:7,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:7,the value of plot_cost is         : 14.178313498576873 

 At row:173, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:173, column:8,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:8,the value of plot_cost is         : 14.277269152654876 

 At row:173, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:173, column:9,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:9,the value of plot_cost is         : 14.37703286713539 

 At row:173, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:173, column:10,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:10,the value of plot_cost is         : 14.477604642018417 

 At row:173, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:173, column:11,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:11,the value of plot_cost is         : 14.578984477303958 

 At row:173, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:173, column:12,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:12,the value of plot_cost is         : 14.68117237299202 

 At row:173, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:173, column:13,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:13,the value of plot_cost is         : 14.784168329082599 

 At row:173, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:173, column:14,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:14,the value of plot_cost is         : 14.88797234557569 

 At row:173, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:173, column:15,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:15,the value of plot_cost is         : 14.992584422471293 

 At row:173, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:173, column:16,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:16,the value of plot_cost is         : 15.09800455976941 

 At row:173, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:173, column:17,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:17,the value of plot_cost is         : 15.204232757470045 

 At row:173, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:173, column:18,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:18,the value of plot_cost is         : 15.311269015573203 

 At row:173, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:173, column:19,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:19,the value of plot_cost is         : 15.419113334078865 

 At row:173, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:173, column:20,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:20,the value of plot_cost is         : 15.527765712987042 

 At row:173, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:173, column:21,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:21,the value of plot_cost is         : 15.637226152297735 

 At row:173, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:173, column:22,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:22,the value of plot_cost is         : 15.747494652010946 

 At row:173, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:173, column:23,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:23,the value of plot_cost is         : 15.85857121212668 

 At row:173, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:173, column:24,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:24,the value of plot_cost is         : 15.97045583264492 

 At row:173, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:173, column:25,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:25,the value of plot_cost is         : 16.083148513565675 

 At row:173, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:173, column:26,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:26,the value of plot_cost is         : 16.196649254888943 

 At row:173, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:173, column:27,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:27,the value of plot_cost is         : 16.310958056614727 

 At row:173, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:173, column:28,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:28,the value of plot_cost is         : 16.426074918743037 

 At row:173, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:173, column:29,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:29,the value of plot_cost is         : 16.54199984127385 

 At row:173, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:173, column:30,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:30,the value of plot_cost is         : 16.658732824207178 

 At row:173, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:173, column:31,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:31,the value of plot_cost is         : 16.776273867543022 

 At row:173, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:173, column:32,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:32,the value of plot_cost is         : 16.894622971281382 

 At row:173, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:173, column:33,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:33,the value of plot_cost is         : 17.013780135422266 

 At row:173, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:173, column:34,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:34,the value of plot_cost is         : 17.133745359965655 

 At row:173, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:173, column:35,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:35,the value of plot_cost is         : 17.25451864491156 

 At row:173, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:173, column:36,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:36,the value of plot_cost is         : 17.37609999025998 

 At row:173, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:173, column:37,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:37,the value of plot_cost is         : 17.498489396010918 

 At row:173, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:173, column:38,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:38,the value of plot_cost is         : 17.621686862164378 

 At row:173, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:173, column:39,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:39,the value of plot_cost is         : 17.745692388720343 

 At row:173, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:173, column:40,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:40,the value of plot_cost is         : 17.870505975678824 

 At row:173, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:173, column:41,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:41,the value of plot_cost is         : 17.996127623039815 

 At row:173, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:173, column:42,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:42,the value of plot_cost is         : 18.12255733080333 

 At row:173, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:173, column:43,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:43,the value of plot_cost is         : 18.24979509896936 

 At row:173, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:173, column:44,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:44,the value of plot_cost is         : 18.377840927537907 

 At row:173, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:173, column:45,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:45,the value of plot_cost is         : 18.506694816508965 

 At row:173, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:173, column:46,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:46,the value of plot_cost is         : 18.636356765882535 

 At row:173, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:173, column:47,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:47,the value of plot_cost is         : 18.766826775658622 

 At row:173, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:173, column:48,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:48,the value of plot_cost is         : 18.898104845837228 

 At row:173, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:173, column:49,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:49,the value of plot_cost is         : 19.030190976418343 

 At row:173, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:173, column:50,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:50,the value of plot_cost is         : 19.163085167401974 

 At row:173, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:173, column:51,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:51,the value of plot_cost is         : 19.29678741878812 

 At row:173, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:173, column:52,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:52,the value of plot_cost is         : 19.431297730576787 

 At row:173, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:173, column:53,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:53,the value of plot_cost is         : 19.566616102767966 

 At row:173, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:173, column:54,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:54,the value of plot_cost is         : 19.702742535361654 

 At row:173, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:173, column:55,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:55,the value of plot_cost is         : 19.83967702835787 

 At row:173, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:173, column:56,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:56,the value of plot_cost is         : 19.977419581756592 

 At row:173, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:173, column:57,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:57,the value of plot_cost is         : 20.115970195557832 

 At row:173, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:173, column:58,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:58,the value of plot_cost is         : 20.255328869761584 

 At row:173, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:173, column:59,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:59,the value of plot_cost is         : 20.395495604367856 

 At row:173, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:173, column:60,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:60,the value of plot_cost is         : 20.53647039937664 

 At row:173, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:173, column:61,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:61,the value of plot_cost is         : 20.678253254787933 

 At row:173, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:173, column:62,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:62,the value of plot_cost is         : 20.820844170601745 

 At row:173, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:173, column:63,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:63,the value of plot_cost is         : 20.964243146818077 

 At row:173, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:173, column:64,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:64,the value of plot_cost is         : 21.10845018343692 

 At row:173, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:173, column:65,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:65,the value of plot_cost is         : 21.253465280458286 

 At row:173, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:173, column:66,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:66,the value of plot_cost is         : 21.399288437882156 

 At row:173, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:173, column:67,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:67,the value of plot_cost is         : 21.54591965570855 

 At row:173, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:173, column:68,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:68,the value of plot_cost is         : 21.693358933937457 

 At row:173, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:173, column:69,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:69,the value of plot_cost is         : 21.841606272568875 

 At row:173, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:173, column:70,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:70,the value of plot_cost is         : 21.990661671602805 

 At row:173, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:173, column:71,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:71,the value of plot_cost is         : 22.140525131039258 

 At row:173, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:173, column:72,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:72,the value of plot_cost is         : 22.291196650878216 

 At row:173, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:173, column:73,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:73,the value of plot_cost is         : 22.4426762311197 

 At row:173, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:173, column:74,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:74,the value of plot_cost is         : 22.594963871763696 

 At row:173, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:173, column:75,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:75,the value of plot_cost is         : 22.74805957281021 

 At row:173, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:173, column:76,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:76,the value of plot_cost is         : 22.901963334259236 

 At row:173, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:173, column:77,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:77,the value of plot_cost is         : 23.056675156110778 

 At row:173, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:173, column:78,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:78,the value of plot_cost is         : 23.212195038364833 

 At row:173, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:173, column:79,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:79,the value of plot_cost is         : 23.3685229810214 

 At row:173, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:173, column:80,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:80,the value of plot_cost is         : 23.525658984080486 

 At row:173, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:173, column:81,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:81,the value of plot_cost is         : 23.683603047542086 

 At row:173, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:173, column:82,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:82,the value of plot_cost is         : 23.8423551714062 

 At row:173, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:173, column:83,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:83,the value of plot_cost is         : 24.001915355672832 

 At row:173, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:173, column:84,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:84,the value of plot_cost is         : 24.162283600341976 

 At row:173, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:173, column:85,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:85,the value of plot_cost is         : 24.323459905413646 

 At row:173, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:173, column:86,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:86,the value of plot_cost is         : 24.485444270887815 

 At row:173, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:173, column:87,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:87,the value of plot_cost is         : 24.648236696764513 

 At row:173, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:173, column:88,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:88,the value of plot_cost is         : 24.811837183043718 

 At row:173, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:173, column:89,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:89,the value of plot_cost is         : 24.97624572972544 

 At row:173, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:173, column:90,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:90,the value of plot_cost is         : 25.141462336809674 

 At row:173, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:173, column:91,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:91,the value of plot_cost is         : 25.30748700429642 

 At row:173, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:173, column:92,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:92,the value of plot_cost is         : 25.47431973218569 

 At row:173, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:173, column:93,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:93,the value of plot_cost is         : 25.641960520477472 

 At row:173, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:173, column:94,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:94,the value of plot_cost is         : 25.81040936917177 

 At row:173, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:173, column:95,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:95,the value of plot_cost is         : 25.97966627826859 

 At row:173, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:173, column:96,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:96,the value of plot_cost is         : 26.149731247767914 

 At row:173, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:173, column:97,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:97,the value of plot_cost is         : 26.32060427766976 

 At row:173, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:173, column:98,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:98,the value of plot_cost is         : 26.492285367974112 

 At row:173, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:173, column:99,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:99,the value of plot_cost is         : 26.664774518680986 

 At row:173, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:173, column:100,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:100,the value of plot_cost is         : 26.838071729790368 

 At row:173, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:173, column:101,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:101,the value of plot_cost is         : 27.01217700130227 

 At row:173, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:173, column:102,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:102,the value of plot_cost is         : 27.187090333216684 

 At row:173, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:173, column:103,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:103,the value of plot_cost is         : 27.362811725533625 

 At row:173, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:173, column:104,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:104,the value of plot_cost is         : 27.53934117825308 

 At row:173, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:173, column:105,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:105,the value of plot_cost is         : 27.716678691375037 

 At row:173, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:173, column:106,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:106,the value of plot_cost is         : 27.894824264899515 

 At row:173, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:173, column:107,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:107,the value of plot_cost is         : 28.07377789882651 

 At row:173, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:173, column:108,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:108,the value of plot_cost is         : 28.25353959315602 

 At row:173, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:173, column:109,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:109,the value of plot_cost is         : 28.434109347888043 

 At row:173, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:173, column:110,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:110,the value of plot_cost is         : 28.61548716302257 

 At row:173, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:173, column:111,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:111,the value of plot_cost is         : 28.797673038559626 

 At row:173, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:173, column:112,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:112,the value of plot_cost is         : 28.98066697449919 

 At row:173, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:173, column:113,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:113,the value of plot_cost is         : 29.164468970841284 

 At row:173, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:173, column:114,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:114,the value of plot_cost is         : 29.349079027585876 

 At row:173, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:173, column:115,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:115,the value of plot_cost is         : 29.534497144733002 

 At row:173, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:173, column:116,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:116,the value of plot_cost is         : 29.720723322282627 

 At row:173, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:173, column:117,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:117,the value of plot_cost is         : 29.90775756023477 

 At row:173, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:173, column:118,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:118,the value of plot_cost is         : 30.09559985858943 

 At row:173, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:173, column:119,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:119,the value of plot_cost is         : 30.284250217346603 

 At row:173, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:173, column:120,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:120,the value of plot_cost is         : 30.473708636506288 

 At row:173, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:173, column:121,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:121,the value of plot_cost is         : 30.66397511606849 

 At row:173, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:173, column:122,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:122,the value of plot_cost is         : 30.85504965603321 

 At row:173, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:173, column:123,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:123,the value of plot_cost is         : 31.046932256400453 

 At row:173, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:173, column:124,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:124,the value of plot_cost is         : 31.23962291717021 

 At row:173, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:173, column:125,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:125,the value of plot_cost is         : 31.43312163834247 

 At row:173, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:173, column:126,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:126,the value of plot_cost is         : 31.627428419917244 

 At row:173, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:173, column:127,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:127,the value of plot_cost is         : 31.82254326189454 

 At row:173, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:173, column:128,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:128,the value of plot_cost is         : 32.01846616427435 

 At row:173, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:173, column:129,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:129,the value of plot_cost is         : 32.215197127056676 

 At row:173, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:173, column:130,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:130,the value of plot_cost is         : 32.41273615024151 

 At row:173, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:173, column:131,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:131,the value of plot_cost is         : 32.61108323382886 

 At row:173, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:173, column:132,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:132,the value of plot_cost is         : 32.810238377818735 

 At row:173, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:173, column:133,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:133,the value of plot_cost is         : 33.010201582211124 

 At row:173, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:173, column:134,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:134,the value of plot_cost is         : 33.210972847006026 

 At row:173, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:173, column:135,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:135,the value of plot_cost is         : 33.41255217220345 

 At row:173, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:173, column:136,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:136,the value of plot_cost is         : 33.61493955780337 

 At row:173, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:173, column:137,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:137,the value of plot_cost is         : 33.81813500380582 

 At row:173, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:173, column:138,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:138,the value of plot_cost is         : 34.02213851021078 

 At row:173, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:173, column:139,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:139,the value of plot_cost is         : 34.22695007701825 

 At row:173, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:173, column:140,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:140,the value of plot_cost is         : 34.43256970422824 

 At row:173, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:173, column:141,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:141,the value of plot_cost is         : 34.638997391840746 

 At row:173, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:173, column:142,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:142,the value of plot_cost is         : 34.84623313985577 

 At row:173, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:173, column:143,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:143,the value of plot_cost is         : 35.054276948273305 

 At row:173, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:173, column:144,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:144,the value of plot_cost is         : 35.26312881709337 

 At row:173, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:173, column:145,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:145,the value of plot_cost is         : 35.47278874631593 

 At row:173, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:173, column:146,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:146,the value of plot_cost is         : 35.683256735941 

 At row:173, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:173, column:147,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:147,the value of plot_cost is         : 35.89453278596861 

 At row:173, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:173, column:148,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:148,the value of plot_cost is         : 36.10661689639872 

 At row:173, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:173, column:149,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:149,the value of plot_cost is         : 36.31950906723134 

 At row:173, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:173, column:150,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:150,the value of plot_cost is         : 36.53320929846649 

 At row:173, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:173, column:151,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:151,the value of plot_cost is         : 36.747717590104145 

 At row:173, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:173, column:152,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:152,the value of plot_cost is         : 36.963033942144314 

 At row:173, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:173, column:153,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:153,the value of plot_cost is         : 37.179158354587 

 At row:173, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:173, column:154,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:154,the value of plot_cost is         : 37.396090827432204 

 At row:173, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:173, column:155,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:155,the value of plot_cost is         : 37.613831360679924 

 At row:173, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:173, column:156,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:156,the value of plot_cost is         : 37.83237995433016 

 At row:173, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:173, column:157,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:157,the value of plot_cost is         : 38.0517366083829 

 At row:173, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:173, column:158,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:158,the value of plot_cost is         : 38.27190132283817 

 At row:173, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:173, column:159,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:159,the value of plot_cost is         : 38.49287409769595 

 At row:173, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:173, column:160,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:160,the value of plot_cost is         : 38.71465493295623 

 At row:173, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:173, column:161,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:161,the value of plot_cost is         : 38.937243828619046 

 At row:173, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:173, column:162,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:162,the value of plot_cost is         : 39.16064078468436 

 At row:173, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:173, column:163,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:163,the value of plot_cost is         : 39.38484580115221 

 At row:173, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:173, column:164,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:164,the value of plot_cost is         : 39.60985887802256 

 At row:173, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:173, column:165,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:165,the value of plot_cost is         : 39.835680015295424 

 At row:173, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:173, column:166,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:166,the value of plot_cost is         : 40.06230921297081 

 At row:173, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:173, column:167,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:167,the value of plot_cost is         : 40.28974647104871 

 At row:173, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:173, column:168,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:168,the value of plot_cost is         : 40.51799178952912 

 At row:173, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:173, column:169,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:169,the value of plot_cost is         : 40.74704516841205 

 At row:173, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:173, column:170,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:170,the value of plot_cost is         : 40.976906607697494 

 At row:173, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:173, column:171,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:171,the value of plot_cost is         : 41.20757610738545 

 At row:173, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:173, column:172,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:172,the value of plot_cost is         : 41.43905366747592 

 At row:173, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:173, column:173,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:173,the value of plot_cost is         : 41.67133928796891 

 At row:173, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:173, column:174,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:174,the value of plot_cost is         : 41.90443296886441 

 At row:173, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:173, column:175,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:175,the value of plot_cost is         : 42.13833471016244 

 At row:173, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:173, column:176,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:176,the value of plot_cost is         : 42.373044511862986 

 At row:173, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:173, column:177,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:177,the value of plot_cost is         : 42.608562373966016 

 At row:173, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:173, column:178,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:178,the value of plot_cost is         : 42.84488829647159 

 At row:173, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:173, column:179,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:179,the value of plot_cost is         : 43.08202227937967 

 At row:173, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:173, column:180,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:180,the value of plot_cost is         : 43.31996432269026 

 At row:173, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:173, column:181,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:181,the value of plot_cost is         : 43.55871442640337 

 At row:173, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:173, column:182,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:182,the value of plot_cost is         : 43.79827259051899 

 At row:173, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:173, column:183,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:183,the value of plot_cost is         : 44.03863881503714 

 At row:173, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:173, column:184,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:184,the value of plot_cost is         : 44.27981309995779 

 At row:173, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:173, column:185,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:185,the value of plot_cost is         : 44.52179544528096 

 At row:173, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:173, column:186,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:186,the value of plot_cost is         : 44.76458585100665 

 At row:173, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:173, column:187,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:187,the value of plot_cost is         : 45.00818431713484 

 At row:173, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:173, column:188,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:188,the value of plot_cost is         : 45.25259084366556 

 At row:173, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:173, column:189,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:189,the value of plot_cost is         : 45.49780543059879 

 At row:173, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:173, column:190,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:190,the value of plot_cost is         : 45.74382807793453 

 At row:173, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:173, column:191,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:191,the value of plot_cost is         : 45.9906587856728 

 At row:173, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:173, column:192,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:192,the value of plot_cost is         : 46.23829755381357 

 At row:173, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:173, column:193,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:193,the value of plot_cost is         : 46.48674438235686 

 At row:173, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:173, column:194,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:194,the value of plot_cost is         : 46.73599927130267 

 At row:173, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:173, column:195,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:195,the value of plot_cost is         : 46.98606222065099 

 At row:173, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:173, column:196,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:196,the value of plot_cost is         : 47.236933230401824 

 At row:173, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:173, column:197,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:197,the value of plot_cost is         : 47.488612300555175 

 At row:173, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:173, column:198,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:198,the value of plot_cost is         : 47.74109943111104 

 At row:173, column:199,the value of plot_t0 is           : 3.0
 At row:173, column:199,the value of plot_t1 is           : 2.477386934673367
 At row:173, column:199,the value of plot_cost is         : 47.99439462206943 

 At row:174, column:0,the value of plot_t0 is           : -1.0
 At row:174, column:0,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:0,the value of plot_cost is         : 14.053781001201274 

 At row:174, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:174, column:1,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:1,the value of plot_cost is         : 14.14975837551 

 At row:174, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:174, column:2,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:2,the value of plot_cost is         : 14.246543810221244 

 At row:174, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:174, column:3,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:3,the value of plot_cost is         : 14.34413730533501 

 At row:174, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:174, column:4,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:4,the value of plot_cost is         : 14.442538860851283 

 At row:174, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:174, column:5,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:5,the value of plot_cost is         : 14.54174847677007 

 At row:174, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:174, column:6,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:6,the value of plot_cost is         : 14.641766153091375 

 At row:174, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:174, column:7,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:7,the value of plot_cost is         : 14.742591889815193 

 At row:174, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:174, column:8,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:8,the value of plot_cost is         : 14.844225686941536 

 At row:174, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:174, column:9,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:9,the value of plot_cost is         : 14.946667544470383 

 At row:174, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:174, column:10,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:10,the value of plot_cost is         : 15.049917462401748 

 At row:174, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:174, column:11,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:11,the value of plot_cost is         : 15.153975440735628 

 At row:174, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:174, column:12,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:12,the value of plot_cost is         : 15.258841479472022 

 At row:174, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:174, column:13,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:13,the value of plot_cost is         : 15.364515578610938 

 At row:174, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:174, column:14,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:14,the value of plot_cost is         : 15.470997738152363 

 At row:174, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:174, column:15,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:15,the value of plot_cost is         : 15.5782879580963 

 At row:174, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:174, column:16,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:16,the value of plot_cost is         : 15.686386238442756 

 At row:174, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:174, column:17,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:17,the value of plot_cost is         : 15.795292579191726 

 At row:174, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:174, column:18,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:18,the value of plot_cost is         : 15.905006980343217 

 At row:174, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:174, column:19,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:19,the value of plot_cost is         : 16.01552944189722 

 At row:174, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:174, column:20,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:20,the value of plot_cost is         : 16.12685996385373 

 At row:174, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:174, column:21,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:21,the value of plot_cost is         : 16.238998546212763 

 At row:174, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:174, column:22,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:22,the value of plot_cost is         : 16.351945188974305 

 At row:174, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:174, column:23,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:23,the value of plot_cost is         : 16.465699892138375 

 At row:174, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:174, column:24,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:24,the value of plot_cost is         : 16.58026265570495 

 At row:174, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:174, column:25,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:25,the value of plot_cost is         : 16.69563347967404 

 At row:174, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:174, column:26,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:26,the value of plot_cost is         : 16.811812364045647 

 At row:174, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:174, column:27,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:27,the value of plot_cost is         : 16.928799308819762 

 At row:174, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:174, column:28,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:28,the value of plot_cost is         : 17.04659431399641 

 At row:174, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:174, column:29,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:29,the value of plot_cost is         : 17.16519737957556 

 At row:174, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:174, column:30,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:30,the value of plot_cost is         : 17.284608505557227 

 At row:174, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:174, column:31,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:31,the value of plot_cost is         : 17.404827691941406 

 At row:174, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:174, column:32,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:32,the value of plot_cost is         : 17.5258549387281 

 At row:174, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:174, column:33,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:33,the value of plot_cost is         : 17.647690245917317 

 At row:174, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:174, column:34,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:34,the value of plot_cost is         : 17.77033361350904 

 At row:174, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:174, column:35,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:35,the value of plot_cost is         : 17.89378504150329 

 At row:174, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:174, column:36,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:36,the value of plot_cost is         : 18.018044529900042 

 At row:174, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:174, column:37,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:37,the value of plot_cost is         : 18.143112078699314 

 At row:174, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:174, column:38,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:38,the value of plot_cost is         : 18.268987687901106 

 At row:174, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:174, column:39,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:39,the value of plot_cost is         : 18.39567135750541 

 At row:174, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:174, column:40,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:40,the value of plot_cost is         : 18.523163087512224 

 At row:174, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:174, column:41,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:41,the value of plot_cost is         : 18.651462877921556 

 At row:174, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:174, column:42,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:42,the value of plot_cost is         : 18.780570728733405 

 At row:174, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:174, column:43,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:43,the value of plot_cost is         : 18.910486639947766 

 At row:174, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:174, column:44,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:44,the value of plot_cost is         : 19.041210611564647 

 At row:174, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:174, column:45,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:45,the value of plot_cost is         : 19.172742643584044 

 At row:174, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:174, column:46,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:46,the value of plot_cost is         : 19.305082736005954 

 At row:174, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:174, column:47,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:47,the value of plot_cost is         : 19.438230888830372 

 At row:174, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:174, column:48,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:48,the value of plot_cost is         : 19.572187102057317 

 At row:174, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:174, column:49,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:49,the value of plot_cost is         : 19.706951375686767 

 At row:174, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:174, column:50,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:50,the value of plot_cost is         : 19.842523709718737 

 At row:174, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:174, column:51,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:51,the value of plot_cost is         : 19.978904104153216 

 At row:174, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:174, column:52,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:52,the value of plot_cost is         : 20.116092558990218 

 At row:174, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:174, column:53,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:53,the value of plot_cost is         : 20.25408907422973 

 At row:174, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:174, column:54,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:54,the value of plot_cost is         : 20.39289364987176 

 At row:174, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:174, column:55,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:55,the value of plot_cost is         : 20.53250628591631 

 At row:174, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:174, column:56,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:56,the value of plot_cost is         : 20.672926982363368 

 At row:174, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:174, column:57,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:57,the value of plot_cost is         : 20.814155739212943 

 At row:174, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:174, column:58,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:58,the value of plot_cost is         : 20.95619255646503 

 At row:174, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:174, column:59,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:59,the value of plot_cost is         : 21.099037434119637 

 At row:174, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:174, column:60,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:60,the value of plot_cost is         : 21.242690372176757 

 At row:174, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:174, column:61,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:61,the value of plot_cost is         : 21.38715137063639 

 At row:174, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:174, column:62,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:62,the value of plot_cost is         : 21.53242042949854 

 At row:174, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:174, column:63,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:63,the value of plot_cost is         : 21.678497548763204 

 At row:174, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:174, column:64,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:64,the value of plot_cost is         : 21.825382728430384 

 At row:174, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:174, column:65,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:65,the value of plot_cost is         : 21.973075968500083 

 At row:174, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:174, column:66,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:66,the value of plot_cost is         : 22.121577268972292 

 At row:174, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:174, column:67,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:67,the value of plot_cost is         : 22.270886629847016 

 At row:174, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:174, column:68,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:68,the value of plot_cost is         : 22.42100405112426 

 At row:174, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:174, column:69,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:69,the value of plot_cost is         : 22.571929532804013 

 At row:174, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:174, column:70,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:70,the value of plot_cost is         : 22.723663074886286 

 At row:174, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:174, column:71,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:71,the value of plot_cost is         : 22.876204677371064 

 At row:174, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:174, column:72,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:72,the value of plot_cost is         : 23.02955434025837 

 At row:174, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:174, column:73,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:73,the value of plot_cost is         : 23.18371206354818 

 At row:174, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:174, column:74,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:74,the value of plot_cost is         : 23.33867784724051 

 At row:174, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:174, column:75,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:75,the value of plot_cost is         : 23.494451691335364 

 At row:174, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:174, column:76,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:76,the value of plot_cost is         : 23.651033595832722 

 At row:174, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:174, column:77,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:77,the value of plot_cost is         : 23.8084235607326 

 At row:174, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:174, column:78,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:78,the value of plot_cost is         : 23.966621586034993 

 At row:174, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:174, column:79,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:79,the value of plot_cost is         : 24.1256276717399 

 At row:174, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:174, column:80,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:80,the value of plot_cost is         : 24.28544181784732 

 At row:174, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:174, column:81,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:81,the value of plot_cost is         : 24.446064024357252 

 At row:174, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:174, column:82,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:82,the value of plot_cost is         : 24.607494291269706 

 At row:174, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:174, column:83,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:83,the value of plot_cost is         : 24.76973261858467 

 At row:174, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:174, column:84,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:84,the value of plot_cost is         : 24.932779006302155 

 At row:174, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:174, column:85,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:85,the value of plot_cost is         : 25.096633454422157 

 At row:174, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:174, column:86,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:86,the value of plot_cost is         : 25.261295962944665 

 At row:174, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:174, column:87,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:87,the value of plot_cost is         : 25.426766531869692 

 At row:174, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:174, column:88,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:88,the value of plot_cost is         : 25.59304516119723 

 At row:174, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:174, column:89,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:89,the value of plot_cost is         : 25.76013185092729 

 At row:174, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:174, column:90,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:90,the value of plot_cost is         : 25.928026601059862 

 At row:174, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:174, column:91,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:91,the value of plot_cost is         : 26.09672941159495 

 At row:174, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:174, column:92,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:92,the value of plot_cost is         : 26.266240282532554 

 At row:174, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:174, column:93,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:93,the value of plot_cost is         : 26.43655921387267 

 At row:174, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:174, column:94,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:94,the value of plot_cost is         : 26.6076862056153 

 At row:174, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:174, column:95,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:95,the value of plot_cost is         : 26.779621257760457 

 At row:174, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:174, column:96,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:96,the value of plot_cost is         : 26.95236437030812 

 At row:174, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:174, column:97,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:97,the value of plot_cost is         : 27.125915543258294 

 At row:174, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:174, column:98,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:98,the value of plot_cost is         : 27.30027477661099 

 At row:174, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:174, column:99,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:99,the value of plot_cost is         : 27.475442070366192 

 At row:174, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:174, column:100,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:100,the value of plot_cost is         : 27.65141742452392 

 At row:174, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:174, column:101,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:101,the value of plot_cost is         : 27.828200839084154 

 At row:174, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:174, column:102,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:102,the value of plot_cost is         : 28.005792314046914 

 At row:174, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:174, column:103,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:103,the value of plot_cost is         : 28.184191849412176 

 At row:174, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:174, column:104,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:104,the value of plot_cost is         : 28.363399445179958 

 At row:174, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:174, column:105,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:105,the value of plot_cost is         : 28.543415101350252 

 At row:174, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:174, column:106,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:106,the value of plot_cost is         : 28.724238817923077 

 At row:174, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:174, column:107,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:107,the value of plot_cost is         : 28.905870594898406 

 At row:174, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:174, column:108,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:108,the value of plot_cost is         : 29.088310432276252 

 At row:174, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:174, column:109,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:109,the value of plot_cost is         : 29.27155833005661 

 At row:174, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:174, column:110,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:110,the value of plot_cost is         : 29.45561428823948 

 At row:174, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:174, column:111,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:111,the value of plot_cost is         : 29.640478306824868 

 At row:174, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:174, column:112,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:112,the value of plot_cost is         : 29.826150385812774 

 At row:174, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:174, column:113,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:113,the value of plot_cost is         : 30.01263052520319 

 At row:174, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:174, column:114,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:114,the value of plot_cost is         : 30.19991872499613 

 At row:174, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:174, column:115,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:115,the value of plot_cost is         : 30.388014985191585 

 At row:174, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:174, column:116,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:116,the value of plot_cost is         : 30.576919305789545 

 At row:174, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:174, column:117,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:117,the value of plot_cost is         : 30.766631686790024 

 At row:174, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:174, column:118,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:118,the value of plot_cost is         : 30.957152128193016 

 At row:174, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:174, column:119,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:119,the value of plot_cost is         : 31.14848062999853 

 At row:174, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:174, column:120,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:120,the value of plot_cost is         : 31.34061719220655 

 At row:174, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:174, column:121,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:121,the value of plot_cost is         : 31.533561814817094 

 At row:174, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:174, column:122,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:122,the value of plot_cost is         : 31.72731449783015 

 At row:174, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:174, column:123,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:123,the value of plot_cost is         : 31.92187524124572 

 At row:174, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:174, column:124,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:124,the value of plot_cost is         : 32.1172440450638 

 At row:174, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:174, column:125,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:125,the value of plot_cost is         : 32.31342090928441 

 At row:174, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:174, column:126,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:126,the value of plot_cost is         : 32.51040583390752 

 At row:174, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:174, column:127,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:127,the value of plot_cost is         : 32.70819881893315 

 At row:174, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:174, column:128,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:128,the value of plot_cost is         : 32.9067998643613 

 At row:174, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:174, column:129,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:129,the value of plot_cost is         : 33.10620897019196 

 At row:174, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:174, column:130,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:130,the value of plot_cost is         : 33.30642613642513 

 At row:174, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:174, column:131,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:131,the value of plot_cost is         : 33.507451363060824 

 At row:174, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:174, column:132,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:132,the value of plot_cost is         : 33.70928465009903 

 At row:174, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:174, column:133,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:133,the value of plot_cost is         : 33.91192599753975 

 At row:174, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:174, column:134,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:134,the value of plot_cost is         : 34.11537540538299 

 At row:174, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:174, column:135,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:135,the value of plot_cost is         : 34.31963287362875 

 At row:174, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:174, column:136,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:136,the value of plot_cost is         : 34.52469840227701 

 At row:174, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:174, column:137,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:137,the value of plot_cost is         : 34.730571991327785 

 At row:174, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:174, column:138,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:138,the value of plot_cost is         : 34.93725364078108 

 At row:174, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:174, column:139,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:139,the value of plot_cost is         : 35.1447433506369 

 At row:174, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:174, column:140,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:140,the value of plot_cost is         : 35.35304112089523 

 At row:174, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:174, column:141,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:141,the value of plot_cost is         : 35.562146951556066 

 At row:174, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:174, column:142,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:142,the value of plot_cost is         : 35.772060842619425 

 At row:174, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:174, column:143,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:143,the value of plot_cost is         : 35.98278279408529 

 At row:174, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:174, column:144,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:144,the value of plot_cost is         : 36.19431280595368 

 At row:174, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:174, column:145,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:145,the value of plot_cost is         : 36.40665087822459 

 At row:174, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:174, column:146,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:146,the value of plot_cost is         : 36.619797010898 

 At row:174, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:174, column:147,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:147,the value of plot_cost is         : 36.83375120397393 

 At row:174, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:174, column:148,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:148,the value of plot_cost is         : 37.04851345745238 

 At row:174, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:174, column:149,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:149,the value of plot_cost is         : 37.26408377133334 

 At row:174, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:174, column:150,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:150,the value of plot_cost is         : 37.480462145616826 

 At row:174, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:174, column:151,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:151,the value of plot_cost is         : 37.69764858030282 

 At row:174, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:174, column:152,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:152,the value of plot_cost is         : 37.91564307539132 

 At row:174, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:174, column:153,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:153,the value of plot_cost is         : 38.13444563088234 

 At row:174, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:174, column:154,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:154,the value of plot_cost is         : 38.35405624677589 

 At row:174, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:174, column:155,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:155,the value of plot_cost is         : 38.57447492307194 

 At row:174, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:174, column:156,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:156,the value of plot_cost is         : 38.79570165977051 

 At row:174, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:174, column:157,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:157,the value of plot_cost is         : 39.01773645687158 

 At row:174, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:174, column:158,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:158,the value of plot_cost is         : 39.24057931437518 

 At row:174, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:174, column:159,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:159,the value of plot_cost is         : 39.4642302322813 

 At row:174, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:174, column:160,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:160,the value of plot_cost is         : 39.688689210589935 

 At row:174, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:174, column:161,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:161,the value of plot_cost is         : 39.91395624930108 

 At row:174, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:174, column:162,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:162,the value of plot_cost is         : 40.14003134841472 

 At row:174, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:174, column:163,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:163,the value of plot_cost is         : 40.36691450793089 

 At row:174, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:174, column:164,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:164,the value of plot_cost is         : 40.59460572784959 

 At row:174, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:174, column:165,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:165,the value of plot_cost is         : 40.823105008170806 

 At row:174, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:174, column:166,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:166,the value of plot_cost is         : 41.05241234889452 

 At row:174, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:174, column:167,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:167,the value of plot_cost is         : 41.28252775002075 

 At row:174, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:174, column:168,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:168,the value of plot_cost is         : 41.513451211549494 

 At row:174, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:174, column:169,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:169,the value of plot_cost is         : 41.74518273348076 

 At row:174, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:174, column:170,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:170,the value of plot_cost is         : 41.97772231581455 

 At row:174, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:174, column:171,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:171,the value of plot_cost is         : 42.21106995855084 

 At row:174, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:174, column:172,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:172,the value of plot_cost is         : 42.44522566168965 

 At row:174, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:174, column:173,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:173,the value of plot_cost is         : 42.680189425230964 

 At row:174, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:174, column:174,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:174,the value of plot_cost is         : 42.91596124917482 

 At row:174, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:174, column:175,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:175,the value of plot_cost is         : 43.15254113352117 

 At row:174, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:174, column:176,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:176,the value of plot_cost is         : 43.38992907827004 

 At row:174, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:174, column:177,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:177,the value of plot_cost is         : 43.62812508342142 

 At row:174, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:174, column:178,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:178,the value of plot_cost is         : 43.86712914897532 

 At row:174, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:174, column:179,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:179,the value of plot_cost is         : 44.10694127493174 

 At row:174, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:174, column:180,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:180,the value of plot_cost is         : 44.34756146129067 

 At row:174, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:174, column:181,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:181,the value of plot_cost is         : 44.58898970805212 

 At row:174, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:174, column:182,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:182,the value of plot_cost is         : 44.83122601521607 

 At row:174, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:174, column:183,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:183,the value of plot_cost is         : 45.074270382782544 

 At row:174, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:174, column:184,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:184,the value of plot_cost is         : 45.31812281075153 

 At row:174, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:174, column:185,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:185,the value of plot_cost is         : 45.562783299123055 

 At row:174, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:174, column:186,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:186,the value of plot_cost is         : 45.80825184789707 

 At row:174, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:174, column:187,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:187,the value of plot_cost is         : 46.054528457073594 

 At row:174, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:174, column:188,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:188,the value of plot_cost is         : 46.301613126652654 

 At row:174, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:174, column:189,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:189,the value of plot_cost is         : 46.54950585663422 

 At row:174, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:174, column:190,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:190,the value of plot_cost is         : 46.798206647018304 

 At row:174, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:174, column:191,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:191,the value of plot_cost is         : 47.047715497804894 

 At row:174, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:174, column:192,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:192,the value of plot_cost is         : 47.29803240899401 

 At row:174, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:174, column:193,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:193,the value of plot_cost is         : 47.549157380585626 

 At row:174, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:174, column:194,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:194,the value of plot_cost is         : 47.80109041257978 

 At row:174, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:174, column:195,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:195,the value of plot_cost is         : 48.053831504976436 

 At row:174, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:174, column:196,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:196,the value of plot_cost is         : 48.3073806577756 

 At row:174, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:174, column:197,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:197,the value of plot_cost is         : 48.56173787097729 

 At row:174, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:174, column:198,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:198,the value of plot_cost is         : 48.816903144581495 

 At row:174, column:199,the value of plot_t0 is           : 3.0
 At row:174, column:199,the value of plot_t1 is           : 2.4974874371859297
 At row:174, column:199,the value of plot_cost is         : 49.07287647858821 

 At row:175, column:0,the value of plot_t0 is           : -1.0
 At row:175, column:0,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:0,the value of plot_cost is         : 14.611895045940408 

 At row:175, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:175, column:1,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:1,the value of plot_cost is         : 14.71055056329747 

 At row:175, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:175, column:2,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:2,the value of plot_cost is         : 14.810014141057053 

 At row:175, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:175, column:3,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:3,the value of plot_cost is         : 14.910285779219151 

 At row:175, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:175, column:4,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:4,the value of plot_cost is         : 15.011365477783762 

 At row:175, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:175, column:5,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:5,the value of plot_cost is         : 15.113253236750884 

 At row:175, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:175, column:6,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:6,the value of plot_cost is         : 15.215949056120524 

 At row:175, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:175, column:7,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:7,the value of plot_cost is         : 15.319452935892679 

 At row:175, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:175, column:8,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:8,the value of plot_cost is         : 15.423764876067354 

 At row:175, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:175, column:9,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:9,the value of plot_cost is         : 15.528884876644542 

 At row:175, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:175, column:10,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:10,the value of plot_cost is         : 15.634812937624238 

 At row:175, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:175, column:11,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:11,the value of plot_cost is         : 15.741549059006452 

 At row:175, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:175, column:12,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:12,the value of plot_cost is         : 15.849093240791184 

 At row:175, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:175, column:13,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:13,the value of plot_cost is         : 15.957445482978438 

 At row:175, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:175, column:14,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:14,the value of plot_cost is         : 16.066605785568196 

 At row:175, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:175, column:15,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:15,the value of plot_cost is         : 16.176574148560473 

 At row:175, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:175, column:16,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:16,the value of plot_cost is         : 16.287350571955262 

 At row:175, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:175, column:17,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:17,the value of plot_cost is         : 16.398935055752567 

 At row:175, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:175, column:18,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:18,the value of plot_cost is         : 16.511327599952395 

 At row:175, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:175, column:19,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:19,the value of plot_cost is         : 16.624528204554732 

 At row:175, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:175, column:20,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:20,the value of plot_cost is         : 16.73853686955958 

 At row:175, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:175, column:21,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:21,the value of plot_cost is         : 16.853353594966944 

 At row:175, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:175, column:22,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:22,the value of plot_cost is         : 16.968978380776825 

 At row:175, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:175, column:23,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:23,the value of plot_cost is         : 17.08541122698923 

 At row:175, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:175, column:24,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:24,the value of plot_cost is         : 17.202652133604143 

 At row:175, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:175, column:25,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:25,the value of plot_cost is         : 17.320701100621566 

 At row:175, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:175, column:26,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:26,the value of plot_cost is         : 17.439558128041508 

 At row:175, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:175, column:27,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:27,the value of plot_cost is         : 17.559223215863966 

 At row:175, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:175, column:28,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:28,the value of plot_cost is         : 17.67969636408894 

 At row:175, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:175, column:29,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:29,the value of plot_cost is         : 17.80097757271643 

 At row:175, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:175, column:30,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:30,the value of plot_cost is         : 17.92306684174643 

 At row:175, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:175, column:31,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:31,the value of plot_cost is         : 18.045964171178948 

 At row:175, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:175, column:32,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:32,the value of plot_cost is         : 18.169669561013976 

 At row:175, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:175, column:33,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:33,the value of plot_cost is         : 18.29418301125153 

 At row:175, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:175, column:34,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:34,the value of plot_cost is         : 18.419504521891593 

 At row:175, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:175, column:35,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:35,the value of plot_cost is         : 18.545634092934176 

 At row:175, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:175, column:36,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:36,the value of plot_cost is         : 18.672571724379264 

 At row:175, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:175, column:37,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:37,the value of plot_cost is         : 18.800317416226875 

 At row:175, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:175, column:38,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:38,the value of plot_cost is         : 18.928871168477 

 At row:175, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:175, column:39,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:39,the value of plot_cost is         : 19.05823298112964 

 At row:175, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:175, column:40,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:40,the value of plot_cost is         : 19.188402854184787 

 At row:175, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:175, column:41,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:41,the value of plot_cost is         : 19.319380787642455 

 At row:175, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:175, column:42,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:42,the value of plot_cost is         : 19.45116678150264 

 At row:175, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:175, column:43,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:43,the value of plot_cost is         : 19.58376083576534 

 At row:175, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:175, column:44,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:44,the value of plot_cost is         : 19.717162950430552 

 At row:175, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:175, column:45,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:45,the value of plot_cost is         : 19.851373125498288 

 At row:175, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:175, column:46,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:46,the value of plot_cost is         : 19.986391360968533 

 At row:175, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:175, column:47,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:47,the value of plot_cost is         : 20.12221765684129 

 At row:175, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:175, column:48,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:48,the value of plot_cost is         : 20.258852013116567 

 At row:175, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:175, column:49,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:49,the value of plot_cost is         : 20.396294429794352 

 At row:175, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:175, column:50,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:50,the value of plot_cost is         : 20.534544906874657 

 At row:175, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:175, column:51,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:51,the value of plot_cost is         : 20.673603444357475 

 At row:175, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:175, column:52,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:52,the value of plot_cost is         : 20.813470042242816 

 At row:175, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:175, column:53,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:53,the value of plot_cost is         : 20.954144700530662 

 At row:175, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:175, column:54,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:54,the value of plot_cost is         : 21.09562741922102 

 At row:175, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:175, column:55,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:55,the value of plot_cost is         : 21.23791819831391 

 At row:175, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:175, column:56,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:56,the value of plot_cost is         : 21.381017037809304 

 At row:175, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:175, column:57,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:57,the value of plot_cost is         : 21.52492393770721 

 At row:175, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:175, column:58,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:58,the value of plot_cost is         : 21.66963889800764 

 At row:175, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:175, column:59,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:59,the value of plot_cost is         : 21.81516191871058 

 At row:175, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:175, column:60,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:60,the value of plot_cost is         : 21.96149299981603 

 At row:175, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:175, column:61,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:61,the value of plot_cost is         : 22.108632141324 

 At row:175, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:175, column:62,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:62,the value of plot_cost is         : 22.256579343234492 

 At row:175, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:175, column:63,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:63,the value of plot_cost is         : 22.40533460554749 

 At row:175, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:175, column:64,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:64,the value of plot_cost is         : 22.554897928263003 

 At row:175, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:175, column:65,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:65,the value of plot_cost is         : 22.70526931138104 

 At row:175, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:175, column:66,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:66,the value of plot_cost is         : 22.856448754901585 

 At row:175, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:175, column:67,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:67,the value of plot_cost is         : 23.008436258824645 

 At row:175, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:175, column:68,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:68,the value of plot_cost is         : 23.161231823150224 

 At row:175, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:175, column:69,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:69,the value of plot_cost is         : 23.31483544787831 

 At row:175, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:175, column:70,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:70,the value of plot_cost is         : 23.469247133008917 

 At row:175, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:175, column:71,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:71,the value of plot_cost is         : 23.624466878542037 

 At row:175, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:175, column:72,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:72,the value of plot_cost is         : 23.78049468447768 

 At row:175, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:175, column:73,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:73,the value of plot_cost is         : 23.93733055081583 

 At row:175, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:175, column:74,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:74,the value of plot_cost is         : 24.09497447755649 

 At row:175, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:175, column:75,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:75,the value of plot_cost is         : 24.25342646469968 

 At row:175, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:175, column:76,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:76,the value of plot_cost is         : 24.412686512245376 

 At row:175, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:175, column:77,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:77,the value of plot_cost is         : 24.57275462019358 

 At row:175, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:175, column:78,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:78,the value of plot_cost is         : 24.733630788544314 

 At row:175, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:175, column:79,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:79,the value of plot_cost is         : 24.895315017297555 

 At row:175, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:175, column:80,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:80,the value of plot_cost is         : 25.05780730645331 

 At row:175, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:175, column:81,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:81,the value of plot_cost is         : 25.221107656011576 

 At row:175, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:175, column:82,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:82,the value of plot_cost is         : 25.385216065972376 

 At row:175, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:175, column:83,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:83,the value of plot_cost is         : 25.550132536335674 

 At row:175, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:175, column:84,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:84,the value of plot_cost is         : 25.71585706710149 

 At row:175, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:175, column:85,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:85,the value of plot_cost is         : 25.88238965826983 

 At row:175, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:175, column:86,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:86,the value of plot_cost is         : 26.049730309840673 

 At row:175, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:175, column:87,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:87,the value of plot_cost is         : 26.21787902181403 

 At row:175, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:175, column:88,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:88,the value of plot_cost is         : 26.386835794189913 

 At row:175, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:175, column:89,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:89,the value of plot_cost is         : 26.55660062696831 

 At row:175, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:175, column:90,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:90,the value of plot_cost is         : 26.72717352014921 

 At row:175, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:175, column:91,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:91,the value of plot_cost is         : 26.898554473732634 

 At row:175, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:175, column:92,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:92,the value of plot_cost is         : 27.07074348771858 

 At row:175, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:175, column:93,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:93,the value of plot_cost is         : 27.24374056210703 

 At row:175, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:175, column:94,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:94,the value of plot_cost is         : 27.417545696897992 

 At row:175, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:175, column:95,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:95,the value of plot_cost is         : 27.592158892091486 

 At row:175, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:175, column:96,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:96,the value of plot_cost is         : 27.767580147687482 

 At row:175, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:175, column:97,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:97,the value of plot_cost is         : 27.943809463685987 

 At row:175, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:175, column:98,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:98,the value of plot_cost is         : 28.120846840087022 

 At row:175, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:175, column:99,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:99,the value of plot_cost is         : 28.29869227689057 

 At row:175, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:175, column:100,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:100,the value of plot_cost is         : 28.477345774096623 

 At row:175, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:175, column:101,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:101,the value of plot_cost is         : 28.656807331705195 

 At row:175, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:175, column:102,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:102,the value of plot_cost is         : 28.83707694971629 

 At row:175, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:175, column:103,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:103,the value of plot_cost is         : 29.018154628129892 

 At row:175, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:175, column:104,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:104,the value of plot_cost is         : 29.20004036694602 

 At row:175, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:175, column:105,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:105,the value of plot_cost is         : 29.382734166164646 

 At row:175, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:175, column:106,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:106,the value of plot_cost is         : 29.566236025785802 

 At row:175, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:175, column:107,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:107,the value of plot_cost is         : 29.750545945809456 

 At row:175, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:175, column:108,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:108,the value of plot_cost is         : 29.935663926235645 

 At row:175, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:175, column:109,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:109,the value of plot_cost is         : 30.121589967064338 

 At row:175, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:175, column:110,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:110,the value of plot_cost is         : 30.30832406829554 

 At row:175, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:175, column:111,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:111,the value of plot_cost is         : 30.495866229929266 

 At row:175, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:175, column:112,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:112,the value of plot_cost is         : 30.684216451965515 

 At row:175, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:175, column:113,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:113,the value of plot_cost is         : 30.873374734404265 

 At row:175, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:175, column:114,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:114,the value of plot_cost is         : 31.063341077245532 

 At row:175, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:175, column:115,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:115,the value of plot_cost is         : 31.254115480489325 

 At row:175, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:175, column:116,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:116,the value of plot_cost is         : 31.445697944135624 

 At row:175, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:175, column:117,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:117,the value of plot_cost is         : 31.638088468184435 

 At row:175, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:175, column:118,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:118,the value of plot_cost is         : 31.83128705263577 

 At row:175, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:175, column:119,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:119,the value of plot_cost is         : 32.025293697489616 

 At row:175, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:175, column:120,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:120,the value of plot_cost is         : 32.22010840274597 

 At row:175, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:175, column:121,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:121,the value of plot_cost is         : 32.41573116840485 

 At row:175, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:175, column:122,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:122,the value of plot_cost is         : 32.61216199446625 

 At row:175, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:175, column:123,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:123,the value of plot_cost is         : 32.80940088093015 

 At row:175, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:175, column:124,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:124,the value of plot_cost is         : 33.007447827796575 

 At row:175, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:175, column:125,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:125,the value of plot_cost is         : 33.20630283506551 

 At row:175, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:175, column:126,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:126,the value of plot_cost is         : 33.40596590273696 

 At row:175, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:175, column:127,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:127,the value of plot_cost is         : 33.60643703081092 

 At row:175, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:175, column:128,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:128,the value of plot_cost is         : 33.80771621928741 

 At row:175, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:175, column:129,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:129,the value of plot_cost is         : 34.0098034681664 

 At row:175, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:175, column:130,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:130,the value of plot_cost is         : 34.21269877744791 

 At row:175, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:175, column:131,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:131,the value of plot_cost is         : 34.41640214713193 

 At row:175, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:175, column:132,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:132,the value of plot_cost is         : 34.62091357721848 

 At row:175, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:175, column:133,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:133,the value of plot_cost is         : 34.826233067707534 

 At row:175, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:175, column:134,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:134,the value of plot_cost is         : 35.03236061859911 

 At row:175, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:175, column:135,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:135,the value of plot_cost is         : 35.2392962298932 

 At row:175, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:175, column:136,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:136,the value of plot_cost is         : 35.4470399015898 

 At row:175, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:175, column:137,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:137,the value of plot_cost is         : 35.655591633688914 

 At row:175, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:175, column:138,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:138,the value of plot_cost is         : 35.86495142619055 

 At row:175, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:175, column:139,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:139,the value of plot_cost is         : 36.0751192790947 

 At row:175, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:175, column:140,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:140,the value of plot_cost is         : 36.286095192401355 

 At row:175, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:175, column:141,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:141,the value of plot_cost is         : 36.497879166110536 

 At row:175, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:175, column:142,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:142,the value of plot_cost is         : 36.71047120022223 

 At row:175, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:175, column:143,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:143,the value of plot_cost is         : 36.923871294736436 

 At row:175, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:175, column:144,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:144,the value of plot_cost is         : 37.13807944965317 

 At row:175, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:175, column:145,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:145,the value of plot_cost is         : 37.3530956649724 

 At row:175, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:175, column:146,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:146,the value of plot_cost is         : 37.56891994069415 

 At row:175, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:175, column:147,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:147,the value of plot_cost is         : 37.785552276818414 

 At row:175, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:175, column:148,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:148,the value of plot_cost is         : 38.002992673345204 

 At row:175, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:175, column:149,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:149,the value of plot_cost is         : 38.22124113027451 

 At row:175, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:175, column:150,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:150,the value of plot_cost is         : 38.44029764760632 

 At row:175, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:175, column:151,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:151,the value of plot_cost is         : 38.66016222534065 

 At row:175, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:175, column:152,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:152,the value of plot_cost is         : 38.88083486347748 

 At row:175, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:175, column:153,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:153,the value of plot_cost is         : 39.10231556201685 

 At row:175, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:175, column:154,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:154,the value of plot_cost is         : 39.32460432095871 

 At row:175, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:175, column:155,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:155,the value of plot_cost is         : 39.54770114030312 

 At row:175, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:175, column:156,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:156,the value of plot_cost is         : 39.771606020050015 

 At row:175, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:175, column:157,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:157,the value of plot_cost is         : 39.996318960199424 

 At row:175, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:175, column:158,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:158,the value of plot_cost is         : 40.22183996075137 

 At row:175, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:175, column:159,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:159,the value of plot_cost is         : 40.448169021705816 

 At row:175, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:175, column:160,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:160,the value of plot_cost is         : 40.67530614306278 

 At row:175, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:175, column:161,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:161,the value of plot_cost is         : 40.903251324822264 

 At row:175, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:175, column:162,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:162,the value of plot_cost is         : 41.13200456698425 

 At row:175, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:175, column:163,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:163,the value of plot_cost is         : 41.36156586954876 

 At row:175, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:175, column:164,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:164,the value of plot_cost is         : 41.59193523251579 

 At row:175, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:175, column:165,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:165,the value of plot_cost is         : 41.82311265588534 

 At row:175, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:175, column:166,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:166,the value of plot_cost is         : 42.05509813965738 

 At row:175, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:175, column:167,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:167,the value of plot_cost is         : 42.28789168383195 

 At row:175, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:175, column:168,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:168,the value of plot_cost is         : 42.52149328840903 

 At row:175, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:175, column:169,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:169,the value of plot_cost is         : 42.75590295338863 

 At row:175, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:175, column:170,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:170,the value of plot_cost is         : 42.991120678770756 

 At row:175, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:175, column:171,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:171,the value of plot_cost is         : 43.22714646455538 

 At row:175, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:175, column:172,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:172,the value of plot_cost is         : 43.46398031074253 

 At row:175, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:175, column:173,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:173,the value of plot_cost is         : 43.701622217332186 

 At row:175, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:175, column:174,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:174,the value of plot_cost is         : 43.94007218432435 

 At row:175, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:175, column:175,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:175,the value of plot_cost is         : 44.17933021171906 

 At row:175, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:175, column:176,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:176,the value of plot_cost is         : 44.41939629951626 

 At row:175, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:175, column:177,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:177,the value of plot_cost is         : 44.66027044771597 

 At row:175, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:175, column:178,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:178,the value of plot_cost is         : 44.901952656318215 

 At row:175, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:175, column:179,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:179,the value of plot_cost is         : 45.14444292532297 

 At row:175, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:175, column:180,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:180,the value of plot_cost is         : 45.38774125473023 

 At row:175, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:175, column:181,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:181,the value of plot_cost is         : 45.63184764454002 

 At row:175, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:175, column:182,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:182,the value of plot_cost is         : 45.87676209475231 

 At row:175, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:175, column:183,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:183,the value of plot_cost is         : 46.12248460536712 

 At row:175, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:175, column:184,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:184,the value of plot_cost is         : 46.36901517638445 

 At row:175, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:175, column:185,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:185,the value of plot_cost is         : 46.616353807804295 

 At row:175, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:175, column:186,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:186,the value of plot_cost is         : 46.864500499626644 

 At row:175, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:175, column:187,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:187,the value of plot_cost is         : 47.113455251851505 

 At row:175, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:175, column:188,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:188,the value of plot_cost is         : 47.3632180644789 

 At row:175, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:175, column:189,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:189,the value of plot_cost is         : 47.61378893750881 

 At row:175, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:175, column:190,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:190,the value of plot_cost is         : 47.86516787094123 

 At row:175, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:175, column:191,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:191,the value of plot_cost is         : 48.11735486477616 

 At row:175, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:175, column:192,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:192,the value of plot_cost is         : 48.3703499190136 

 At row:175, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:175, column:193,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:193,the value of plot_cost is         : 48.62415303365356 

 At row:175, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:175, column:194,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:194,the value of plot_cost is         : 48.87876420869603 

 At row:175, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:175, column:195,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:195,the value of plot_cost is         : 49.13418344414104 

 At row:175, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:175, column:196,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:196,the value of plot_cost is         : 49.39041073998854 

 At row:175, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:175, column:197,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:197,the value of plot_cost is         : 49.64744609623856 

 At row:175, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:175, column:198,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:198,the value of plot_cost is         : 49.9052895128911 

 At row:175, column:199,the value of plot_t0 is           : 3.0
 At row:175, column:199,the value of plot_t1 is           : 2.5175879396984926
 At row:175, column:199,the value of plot_cost is         : 50.163940989946155 

 At row:176, column:0,the value of plot_t0 is           : -1.0
 At row:176, column:0,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:0,the value of plot_cost is         : 15.182591745518696 

 At row:176, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:176, column:1,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:1,the value of plot_cost is         : 15.283925405924096 

 At row:176, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:176, column:2,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:2,the value of plot_cost is         : 15.386067126732012 

 At row:176, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:176, column:3,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:3,the value of plot_cost is         : 15.48901690794245 

 At row:176, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:176, column:4,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:4,the value of plot_cost is         : 15.592774749555394 

 At row:176, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:176, column:5,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:5,the value of plot_cost is         : 15.697340651570855 

 At row:176, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:176, column:6,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:6,the value of plot_cost is         : 15.802714613988828 

 At row:176, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:176, column:7,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:7,the value of plot_cost is         : 15.908896636809319 

 At row:176, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:176, column:8,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:8,the value of plot_cost is         : 16.01588672003233 

 At row:176, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:176, column:9,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:9,the value of plot_cost is         : 16.123684863657854 

 At row:176, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:176, column:10,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:10,the value of plot_cost is         : 16.232291067685885 

 At row:176, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:176, column:11,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:11,the value of plot_cost is         : 16.341705332116437 

 At row:176, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:176, column:12,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:12,the value of plot_cost is         : 16.451927656949504 

 At row:176, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:176, column:13,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:13,the value of plot_cost is         : 16.56295804218509 

 At row:176, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:176, column:14,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:14,the value of plot_cost is         : 16.674796487823187 

 At row:176, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:176, column:15,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:15,the value of plot_cost is         : 16.787442993863795 

 At row:176, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:176, column:16,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:16,the value of plot_cost is         : 16.90089756030692 

 At row:176, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:176, column:17,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:17,the value of plot_cost is         : 17.015160187152564 

 At row:176, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:176, column:18,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:18,the value of plot_cost is         : 17.130230874400727 

 At row:176, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:176, column:19,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:19,the value of plot_cost is         : 17.2461096220514 

 At row:176, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:176, column:20,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:20,the value of plot_cost is         : 17.362796430104584 

 At row:176, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:176, column:21,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:21,the value of plot_cost is         : 17.480291298560285 

 At row:176, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:176, column:22,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:22,the value of plot_cost is         : 17.598594227418502 

 At row:176, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:176, column:23,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:23,the value of plot_cost is         : 17.717705216679242 

 At row:176, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:176, column:24,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:24,the value of plot_cost is         : 17.83762426634249 

 At row:176, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:176, column:25,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:25,the value of plot_cost is         : 17.95835137640825 

 At row:176, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:176, column:26,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:26,the value of plot_cost is         : 18.079886546876526 

 At row:176, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:176, column:27,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:27,the value of plot_cost is         : 18.20222977774732 

 At row:176, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:176, column:28,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:28,the value of plot_cost is         : 18.325381069020633 

 At row:176, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:176, column:29,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:29,the value of plot_cost is         : 18.449340420696455 

 At row:176, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:176, column:30,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:30,the value of plot_cost is         : 18.574107832774793 

 At row:176, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:176, column:31,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:31,the value of plot_cost is         : 18.699683305255643 

 At row:176, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:176, column:32,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:32,the value of plot_cost is         : 18.826066838139013 

 At row:176, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:176, column:33,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:33,the value of plot_cost is         : 18.953258431424896 

 At row:176, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:176, column:34,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:34,the value of plot_cost is         : 19.081258085113294 

 At row:176, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:176, column:35,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:35,the value of plot_cost is         : 19.210065799204216 

 At row:176, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:176, column:36,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:36,the value of plot_cost is         : 19.339681573697643 

 At row:176, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:176, column:37,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:37,the value of plot_cost is         : 19.470105408593586 

 At row:176, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:176, column:38,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:38,the value of plot_cost is         : 19.60133730389205 

 At row:176, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:176, column:39,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:39,the value of plot_cost is         : 19.733377259593023 

 At row:176, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:176, column:40,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:40,the value of plot_cost is         : 19.866225275696507 

 At row:176, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:176, column:41,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:41,the value of plot_cost is         : 19.99988135220251 

 At row:176, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:176, column:42,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:42,the value of plot_cost is         : 20.134345489111027 

 At row:176, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:176, column:43,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:43,the value of plot_cost is         : 20.269617686422066 

 At row:176, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:176, column:44,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:44,the value of plot_cost is         : 20.405697944135614 

 At row:176, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:176, column:45,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:45,the value of plot_cost is         : 20.542586262251685 

 At row:176, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:176, column:46,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:46,the value of plot_cost is         : 20.680282640770262 

 At row:176, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:176, column:47,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:47,the value of plot_cost is         : 20.818787079691358 

 At row:176, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:176, column:48,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:48,the value of plot_cost is         : 20.95809957901497 

 At row:176, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:176, column:49,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:49,the value of plot_cost is         : 21.098220138741095 

 At row:176, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:176, column:50,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:50,the value of plot_cost is         : 21.239148758869735 

 At row:176, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:176, column:51,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:51,the value of plot_cost is         : 21.38088543940089 

 At row:176, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:176, column:52,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:52,the value of plot_cost is         : 21.523430180334557 

 At row:176, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:176, column:53,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:53,the value of plot_cost is         : 21.666782981670742 

 At row:176, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:176, column:54,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:54,the value of plot_cost is         : 21.810943843409444 

 At row:176, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:176, column:55,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:55,the value of plot_cost is         : 21.955912765550664 

 At row:176, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:176, column:56,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:56,the value of plot_cost is         : 22.10168974809439 

 At row:176, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:176, column:57,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:57,the value of plot_cost is         : 22.24827479104064 

 At row:176, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:176, column:58,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:58,the value of plot_cost is         : 22.3956678943894 

 At row:176, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:176, column:59,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:59,the value of plot_cost is         : 22.54386905814068 

 At row:176, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:176, column:60,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:60,the value of plot_cost is         : 22.692878282294462 

 At row:176, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:176, column:61,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:61,the value of plot_cost is         : 22.842695566850768 

 At row:176, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:176, column:62,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:62,the value of plot_cost is         : 22.99332091180959 

 At row:176, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:176, column:63,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:63,the value of plot_cost is         : 23.14475431717093 

 At row:176, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:176, column:64,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:64,the value of plot_cost is         : 23.296995782934783 

 At row:176, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:176, column:65,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:65,the value of plot_cost is         : 23.45004530910115 

 At row:176, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:176, column:66,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:66,the value of plot_cost is         : 23.60390289567003 

 At row:176, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:176, column:67,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:67,the value of plot_cost is         : 23.75856854264143 

 At row:176, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:176, column:68,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:68,the value of plot_cost is         : 23.914042250015346 

 At row:176, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:176, column:69,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:69,the value of plot_cost is         : 24.070324017791766 

 At row:176, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:176, column:70,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:70,the value of plot_cost is         : 24.227413845970705 

 At row:176, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:176, column:71,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:71,the value of plot_cost is         : 24.38531173455216 

 At row:176, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:176, column:72,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:72,the value of plot_cost is         : 24.54401768353614 

 At row:176, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:176, column:73,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:73,the value of plot_cost is         : 24.70353169292262 

 At row:176, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:176, column:74,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:74,the value of plot_cost is         : 24.863853762711624 

 At row:176, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:176, column:75,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:75,the value of plot_cost is         : 25.02498389290315 

 At row:176, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:176, column:76,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:76,the value of plot_cost is         : 25.18692208349718 

 At row:176, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:176, column:77,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:77,the value of plot_cost is         : 25.349668334493725 

 At row:176, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:176, column:78,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:78,the value of plot_cost is         : 25.51322264589279 

 At row:176, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:176, column:79,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:79,the value of plot_cost is         : 25.67758501769437 

 At row:176, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:176, column:80,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:80,the value of plot_cost is         : 25.84275544989846 

 At row:176, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:176, column:81,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:81,the value of plot_cost is         : 26.00873394250506 

 At row:176, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:176, column:82,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:82,the value of plot_cost is         : 26.17552049551419 

 At row:176, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:176, column:83,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:83,the value of plot_cost is         : 26.34311510892583 

 At row:176, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:176, column:84,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:84,the value of plot_cost is         : 26.511517782739976 

 At row:176, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:176, column:85,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:85,the value of plot_cost is         : 26.680728516956652 

 At row:176, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:176, column:86,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:86,the value of plot_cost is         : 26.850747311575834 

 At row:176, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:176, column:87,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:87,the value of plot_cost is         : 27.021574166597535 

 At row:176, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:176, column:88,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:88,the value of plot_cost is         : 27.193209082021752 

 At row:176, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:176, column:89,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:89,the value of plot_cost is         : 27.36565205784848 

 At row:176, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:176, column:90,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:90,the value of plot_cost is         : 27.538903094077718 

 At row:176, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:176, column:91,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:91,the value of plot_cost is         : 27.71296219070947 

 At row:176, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:176, column:92,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:92,the value of plot_cost is         : 27.88782934774375 

 At row:176, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:176, column:93,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:93,the value of plot_cost is         : 28.06350456518054 

 At row:176, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:176, column:94,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:94,the value of plot_cost is         : 28.23998784301984 

 At row:176, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:176, column:95,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:95,the value of plot_cost is         : 28.417279181261666 

 At row:176, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:176, column:96,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:96,the value of plot_cost is         : 28.595378579906 

 At row:176, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:176, column:97,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:97,the value of plot_cost is         : 28.774286038952845 

 At row:176, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:176, column:98,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:98,the value of plot_cost is         : 28.95400155840222 

 At row:176, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:176, column:99,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:99,the value of plot_cost is         : 29.134525138254094 

 At row:176, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:176, column:100,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:100,the value of plot_cost is         : 29.315856778508483 

 At row:176, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:176, column:101,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:101,the value of plot_cost is         : 29.49799647916539 

 At row:176, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:176, column:102,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:102,the value of plot_cost is         : 29.68094424022482 

 At row:176, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:176, column:103,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:103,the value of plot_cost is         : 29.86470006168676 

 At row:176, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:176, column:104,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:104,the value of plot_cost is         : 30.04926394355122 

 At row:176, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:176, column:105,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:105,the value of plot_cost is         : 30.234635885818193 

 At row:176, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:176, column:106,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:106,the value of plot_cost is         : 30.420815888487674 

 At row:176, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:176, column:107,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:107,the value of plot_cost is         : 30.607803951559674 

 At row:176, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:176, column:108,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:108,the value of plot_cost is         : 30.79560007503419 

 At row:176, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:176, column:109,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:109,the value of plot_cost is         : 30.984204258911223 

 At row:176, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:176, column:110,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:110,the value of plot_cost is         : 31.17361650319076 

 At row:176, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:176, column:111,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:111,the value of plot_cost is         : 31.363836807872822 

 At row:176, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:176, column:112,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:112,the value of plot_cost is         : 31.554865172957395 

 At row:176, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:176, column:113,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:113,the value of plot_cost is         : 31.74670159844449 

 At row:176, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:176, column:114,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:114,the value of plot_cost is         : 31.939346084334094 

 At row:176, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:176, column:115,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:115,the value of plot_cost is         : 32.13279863062622 

 At row:176, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:176, column:116,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:116,the value of plot_cost is         : 32.32705923732085 

 At row:176, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:176, column:117,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:117,the value of plot_cost is         : 32.52212790441801 

 At row:176, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:176, column:118,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:118,the value of plot_cost is         : 32.71800463191768 

 At row:176, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:176, column:119,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:119,the value of plot_cost is         : 32.91468941981986 

 At row:176, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:176, column:120,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:120,the value of plot_cost is         : 33.11218226812455 

 At row:176, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:176, column:121,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:121,the value of plot_cost is         : 33.31048317683175 

 At row:176, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:176, column:122,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:122,the value of plot_cost is         : 33.50959214594149 

 At row:176, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:176, column:123,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:123,the value of plot_cost is         : 33.70950917545373 

 At row:176, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:176, column:124,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:124,the value of plot_cost is         : 33.910234265368494 

 At row:176, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:176, column:125,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:125,the value of plot_cost is         : 34.111767415685755 

 At row:176, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:176, column:126,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:126,the value of plot_cost is         : 34.31410862640555 

 At row:176, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:176, column:127,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:127,the value of plot_cost is         : 34.51725789752785 

 At row:176, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:176, column:128,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:128,the value of plot_cost is         : 34.72121522905267 

 At row:176, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:176, column:129,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:129,the value of plot_cost is         : 34.92598062097999 

 At row:176, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:176, column:130,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:130,the value of plot_cost is         : 35.13155407330984 

 At row:176, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:176, column:131,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:131,the value of plot_cost is         : 35.33793558604221 

 At row:176, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:176, column:132,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:132,the value of plot_cost is         : 35.54512515917708 

 At row:176, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:176, column:133,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:133,the value of plot_cost is         : 35.75312279271448 

 At row:176, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:176, column:134,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:134,the value of plot_cost is         : 35.96192848665438 

 At row:176, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:176, column:135,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:135,the value of plot_cost is         : 36.171542240996814 

 At row:176, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:176, column:136,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:136,the value of plot_cost is         : 36.38196405574174 

 At row:176, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:176, column:137,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:137,the value of plot_cost is         : 36.5931939308892 

 At row:176, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:176, column:138,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:138,the value of plot_cost is         : 36.805231866439165 

 At row:176, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:176, column:139,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:139,the value of plot_cost is         : 37.01807786239166 

 At row:176, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:176, column:140,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:140,the value of plot_cost is         : 37.23173191874665 

 At row:176, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:176, column:141,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:141,the value of plot_cost is         : 37.44619403550416 

 At row:176, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:176, column:142,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:142,the value of plot_cost is         : 37.661464212664185 

 At row:176, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:176, column:143,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:143,the value of plot_cost is         : 37.877542450226734 

 At row:176, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:176, column:144,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:144,the value of plot_cost is         : 38.094428748191795 

 At row:176, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:176, column:145,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:145,the value of plot_cost is         : 38.31212310655937 

 At row:176, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:176, column:146,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:146,the value of plot_cost is         : 38.53062552532945 

 At row:176, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:176, column:147,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:147,the value of plot_cost is         : 38.74993600450206 

 At row:176, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:176, column:148,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:148,the value of plot_cost is         : 38.97005454407718 

 At row:176, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:176, column:149,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:149,the value of plot_cost is         : 39.19098114405481 

 At row:176, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:176, column:150,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:150,the value of plot_cost is         : 39.41271580443496 

 At row:176, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:176, column:151,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:151,the value of plot_cost is         : 39.63525852521763 

 At row:176, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:176, column:152,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:152,the value of plot_cost is         : 39.858609306402805 

 At row:176, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:176, column:153,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:153,the value of plot_cost is         : 40.08276814799049 

 At row:176, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:176, column:154,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:154,the value of plot_cost is         : 40.30773504998071 

 At row:176, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:176, column:155,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:155,the value of plot_cost is         : 40.53351001237344 

 At row:176, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:176, column:156,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:156,the value of plot_cost is         : 40.76009303516868 

 At row:176, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:176, column:157,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:157,the value of plot_cost is         : 40.987484118366424 

 At row:176, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:176, column:158,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:158,the value of plot_cost is         : 41.215683261966696 

 At row:176, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:176, column:159,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:159,the value of plot_cost is         : 41.44469046596949 

 At row:176, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:176, column:160,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:160,the value of plot_cost is         : 41.67450573037479 

 At row:176, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:176, column:161,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:161,the value of plot_cost is         : 41.905129055182606 

 At row:176, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:176, column:162,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:162,the value of plot_cost is         : 42.13656044039292 

 At row:176, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:176, column:163,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:163,the value of plot_cost is         : 42.368799886005775 

 At row:176, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:176, column:164,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:164,the value of plot_cost is         : 42.601847392021135 

 At row:176, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:176, column:165,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:165,the value of plot_cost is         : 42.835702958439015 

 At row:176, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:176, column:166,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:166,the value of plot_cost is         : 43.0703665852594 

 At row:176, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:176, column:167,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:167,the value of plot_cost is         : 43.3058382724823 

 At row:176, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:176, column:168,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:168,the value of plot_cost is         : 43.54211802010772 

 At row:176, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:176, column:169,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:169,the value of plot_cost is         : 43.779205828135666 

 At row:176, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:176, column:170,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:170,the value of plot_cost is         : 44.017101696566115 

 At row:176, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:176, column:171,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:171,the value of plot_cost is         : 44.255805625399084 

 At row:176, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:176, column:172,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:172,the value of plot_cost is         : 44.49531761463456 

 At row:176, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:176, column:173,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:173,the value of plot_cost is         : 44.73563766427255 

 At row:176, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:176, column:174,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:174,the value of plot_cost is         : 44.97676577431306 

 At row:176, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:176, column:175,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:175,the value of plot_cost is         : 45.218701944756106 

 At row:176, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:176, column:176,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:176,the value of plot_cost is         : 45.46144617560164 

 At row:176, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:176, column:177,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:177,the value of plot_cost is         : 45.70499846684968 

 At row:176, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:176, column:178,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:178,the value of plot_cost is         : 45.94935881850026 

 At row:176, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:176, column:179,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:179,the value of plot_cost is         : 46.194527230553355 

 At row:176, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:176, column:180,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:180,the value of plot_cost is         : 46.44050370300895 

 At row:176, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:176, column:181,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:181,the value of plot_cost is         : 46.68728823586707 

 At row:176, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:176, column:182,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:182,the value of plot_cost is         : 46.9348808291277 

 At row:176, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:176, column:183,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:183,the value of plot_cost is         : 47.183281482790846 

 At row:176, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:176, column:184,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:184,the value of plot_cost is         : 47.43249019685652 

 At row:176, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:176, column:185,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:185,the value of plot_cost is         : 47.6825069713247 

 At row:176, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:176, column:186,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:186,the value of plot_cost is         : 47.93333180619538 

 At row:176, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:176, column:187,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:187,the value of plot_cost is         : 48.18496470146859 

 At row:176, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:176, column:188,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:188,the value of plot_cost is         : 48.43740565714431 

 At row:176, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:176, column:189,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:189,the value of plot_cost is         : 48.69065467322254 

 At row:176, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:176, column:190,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:190,the value of plot_cost is         : 48.944711749703295 

 At row:176, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:176, column:191,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:191,the value of plot_cost is         : 49.19957688658657 

 At row:176, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:176, column:192,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:192,the value of plot_cost is         : 49.45525008387235 

 At row:176, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:176, column:193,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:193,the value of plot_cost is         : 49.71173134156065 

 At row:176, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:176, column:194,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:194,the value of plot_cost is         : 49.969020659651456 

 At row:176, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:176, column:195,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:195,the value of plot_cost is         : 50.227118038144795 

 At row:176, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:176, column:196,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:196,the value of plot_cost is         : 50.48602347704063 

 At row:176, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:176, column:197,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:197,the value of plot_cost is         : 50.74573697633899 

 At row:176, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:176, column:198,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:198,the value of plot_cost is         : 51.006258536039866 

 At row:176, column:199,the value of plot_t0 is           : 3.0
 At row:176, column:199,the value of plot_t1 is           : 2.5376884422110555
 At row:176, column:199,the value of plot_cost is         : 51.26758815614326 

 At row:177, column:0,the value of plot_t0 is           : -1.0
 At row:177, column:0,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:0,the value of plot_cost is         : 15.765871099936142 

 At row:177, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:177, column:1,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:1,the value of plot_cost is         : 15.869882903389875 

 At row:177, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:177, column:2,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:2,the value of plot_cost is         : 15.974702767246129 

 At row:177, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:177, column:3,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:3,the value of plot_cost is         : 16.080330691504898 

 At row:177, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:177, column:4,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:4,the value of plot_cost is         : 16.186766676166183 

 At row:177, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:177, column:5,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:5,the value of plot_cost is         : 16.294010721229974 

 At row:177, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:177, column:6,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:6,the value of plot_cost is         : 16.402062826696284 

 At row:177, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:177, column:7,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:7,the value of plot_cost is         : 16.510922992565114 

 At row:177, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:177, column:8,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:8,the value of plot_cost is         : 16.620591218836463 

 At row:177, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:177, column:9,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:9,the value of plot_cost is         : 16.731067505510318 

 At row:177, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:177, column:10,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:10,the value of plot_cost is         : 16.842351852586688 

 At row:177, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:177, column:11,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:11,the value of plot_cost is         : 16.954444260065575 

 At row:177, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:177, column:12,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:12,the value of plot_cost is         : 17.067344727946974 

 At row:177, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:177, column:13,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:13,the value of plot_cost is         : 17.181053256230896 

 At row:177, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:177, column:14,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:14,the value of plot_cost is         : 17.29556984491733 

 At row:177, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:177, column:15,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:15,the value of plot_cost is         : 17.410894494006275 

 At row:177, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:177, column:16,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:16,the value of plot_cost is         : 17.527027203497738 

 At row:177, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:177, column:17,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:17,the value of plot_cost is         : 17.643967973391714 

 At row:177, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:177, column:18,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:18,the value of plot_cost is         : 17.761716803688213 

 At row:177, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:177, column:19,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:19,the value of plot_cost is         : 17.880273694387224 

 At row:177, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:177, column:20,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:20,the value of plot_cost is         : 17.999638645488744 

 At row:177, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:177, column:21,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:21,the value of plot_cost is         : 18.11981165699278 

 At row:177, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:177, column:22,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:22,the value of plot_cost is         : 18.240792728899333 

 At row:177, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:177, column:23,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:23,the value of plot_cost is         : 18.3625818612084 

 At row:177, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:177, column:24,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:24,the value of plot_cost is         : 18.485179053919985 

 At row:177, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:177, column:25,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:25,the value of plot_cost is         : 18.60858430703409 

 At row:177, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:177, column:26,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:26,the value of plot_cost is         : 18.7327976205507 

 At row:177, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:177, column:27,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:27,the value of plot_cost is         : 18.857818994469827 

 At row:177, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:177, column:28,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:28,the value of plot_cost is         : 18.983648428791476 

 At row:177, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:177, column:29,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:29,the value of plot_cost is         : 19.110285923515633 

 At row:177, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:177, column:30,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:30,the value of plot_cost is         : 19.237731478642306 

 At row:177, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:177, column:31,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:31,the value of plot_cost is         : 19.365985094171492 

 At row:177, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:177, column:32,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:32,the value of plot_cost is         : 19.495046770103198 

 At row:177, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:177, column:33,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:33,the value of plot_cost is         : 19.62491650643742 

 At row:177, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:177, column:34,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:34,the value of plot_cost is         : 19.755594303174153 

 At row:177, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:177, column:35,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:35,the value of plot_cost is         : 19.887080160313406 

 At row:177, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:177, column:36,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:36,the value of plot_cost is         : 20.01937407785517 

 At row:177, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:177, column:37,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:37,the value of plot_cost is         : 20.15247605579945 

 At row:177, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:177, column:38,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:38,the value of plot_cost is         : 20.28638609414625 

 At row:177, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:177, column:39,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:39,the value of plot_cost is         : 20.421104192895555 

 At row:177, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:177, column:40,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:40,the value of plot_cost is         : 20.556630352047378 

 At row:177, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:177, column:41,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:41,the value of plot_cost is         : 20.692964571601717 

 At row:177, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:177, column:42,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:42,the value of plot_cost is         : 20.83010685155857 

 At row:177, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:177, column:43,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:43,the value of plot_cost is         : 20.968057191917946 

 At row:177, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:177, column:44,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:44,the value of plot_cost is         : 21.10681559267983 

 At row:177, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:177, column:45,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:45,the value of plot_cost is         : 21.246382053844236 

 At row:177, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:177, column:46,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:46,the value of plot_cost is         : 21.386756575411148 

 At row:177, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:177, column:47,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:47,the value of plot_cost is         : 21.527939157380573 

 At row:177, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:177, column:48,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:48,the value of plot_cost is         : 21.669929799752527 

 At row:177, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:177, column:49,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:49,the value of plot_cost is         : 21.81272850252699 

 At row:177, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:177, column:50,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:50,the value of plot_cost is         : 21.95633526570396 

 At row:177, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:177, column:51,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:51,the value of plot_cost is         : 22.100750089283448 

 At row:177, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:177, column:52,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:52,the value of plot_cost is         : 22.245972973265452 

 At row:177, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:177, column:53,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:53,the value of plot_cost is         : 22.392003917649976 

 At row:177, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:177, column:54,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:54,the value of plot_cost is         : 22.538842922437013 

 At row:177, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:177, column:55,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:55,the value of plot_cost is         : 22.68648998762657 

 At row:177, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:177, column:56,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:56,the value of plot_cost is         : 22.834945113218634 

 At row:177, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:177, column:57,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:57,the value of plot_cost is         : 22.98420829921322 

 At row:177, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:177, column:58,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:58,the value of plot_cost is         : 23.134279545610312 

 At row:177, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:177, column:59,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:59,the value of plot_cost is         : 23.285158852409925 

 At row:177, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:177, column:60,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:60,the value of plot_cost is         : 23.43684621961205 

 At row:177, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:177, column:61,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:61,the value of plot_cost is         : 23.58934164721669 

 At row:177, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:177, column:62,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:62,the value of plot_cost is         : 23.742645135223846 

 At row:177, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:177, column:63,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:63,the value of plot_cost is         : 23.89675668363352 

 At row:177, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:177, column:64,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:64,the value of plot_cost is         : 24.051676292445705 

 At row:177, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:177, column:65,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:65,the value of plot_cost is         : 24.20740396166041 

 At row:177, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:177, column:66,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:66,the value of plot_cost is         : 24.36393969127763 

 At row:177, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:177, column:67,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:67,the value of plot_cost is         : 24.521283481297367 

 At row:177, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:177, column:68,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:68,the value of plot_cost is         : 24.679435331719617 

 At row:177, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:177, column:69,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:69,the value of plot_cost is         : 24.83839524254437 

 At row:177, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:177, column:70,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:70,the value of plot_cost is         : 24.998163213771647 

 At row:177, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:177, column:71,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:71,the value of plot_cost is         : 25.158739245401435 

 At row:177, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:177, column:72,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:72,the value of plot_cost is         : 25.320123337433746 

 At row:177, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:177, column:73,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:73,the value of plot_cost is         : 25.482315489868572 

 At row:177, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:177, column:74,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:74,the value of plot_cost is         : 25.645315702705908 

 At row:177, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:177, column:75,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:75,the value of plot_cost is         : 25.80912397594577 

 At row:177, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:177, column:76,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:76,the value of plot_cost is         : 25.973740309588134 

 At row:177, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:177, column:77,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:77,the value of plot_cost is         : 26.13916470363302 

 At row:177, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:177, column:78,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:78,the value of plot_cost is         : 26.305397158080417 

 At row:177, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:177, column:79,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:79,the value of plot_cost is         : 26.472437672930326 

 At row:177, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:177, column:80,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:80,the value of plot_cost is         : 26.640286248182754 

 At row:177, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:177, column:81,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:81,the value of plot_cost is         : 26.808942883837695 

 At row:177, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:177, column:82,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:82,the value of plot_cost is         : 26.978407579895155 

 At row:177, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:177, column:83,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:83,the value of plot_cost is         : 27.14868033635513 

 At row:177, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:177, column:84,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:84,the value of plot_cost is         : 27.31976115321762 

 At row:177, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:177, column:85,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:85,the value of plot_cost is         : 27.491650030482628 

 At row:177, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:177, column:86,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:86,the value of plot_cost is         : 27.66434696815015 

 At row:177, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:177, column:87,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:87,the value of plot_cost is         : 27.837851966220185 

 At row:177, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:177, column:88,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:88,the value of plot_cost is         : 28.012165024692735 

 At row:177, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:177, column:89,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:89,the value of plot_cost is         : 28.187286143567793 

 At row:177, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:177, column:90,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:90,the value of plot_cost is         : 28.36321532284537 

 At row:177, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:177, column:91,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:91,the value of plot_cost is         : 28.539952562525464 

 At row:177, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:177, column:92,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:92,the value of plot_cost is         : 28.717497862608077 

 At row:177, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:177, column:93,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:93,the value of plot_cost is         : 28.895851223093203 

 At row:177, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:177, column:94,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:94,the value of plot_cost is         : 29.075012643980834 

 At row:177, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:177, column:95,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:95,the value of plot_cost is         : 29.254982125271 

 At row:177, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:177, column:96,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:96,the value of plot_cost is         : 29.435759666963666 

 At row:177, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:177, column:97,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:97,the value of plot_cost is         : 29.617345269058852 

 At row:177, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:177, column:98,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:98,the value of plot_cost is         : 29.799738931556554 

 At row:177, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:177, column:99,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:99,the value of plot_cost is         : 29.982940654456772 

 At row:177, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:177, column:100,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:100,the value of plot_cost is         : 30.166950437759496 

 At row:177, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:177, column:101,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:101,the value of plot_cost is         : 30.35176828146474 

 At row:177, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:177, column:102,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:102,the value of plot_cost is         : 30.5373941855725 

 At row:177, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:177, column:103,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:103,the value of plot_cost is         : 30.723828150082777 

 At row:177, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:177, column:104,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:104,the value of plot_cost is         : 30.911070174995576 

 At row:177, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:177, column:105,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:105,the value of plot_cost is         : 31.099120260310883 

 At row:177, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:177, column:106,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:106,the value of plot_cost is         : 31.287978406028696 

 At row:177, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:177, column:107,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:107,the value of plot_cost is         : 31.47764461214904 

 At row:177, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:177, column:108,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:108,the value of plot_cost is         : 31.668118878671894 

 At row:177, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:177, column:109,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:109,the value of plot_cost is         : 31.85940120559725 

 At row:177, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:177, column:110,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:110,the value of plot_cost is         : 32.05149159292513 

 At row:177, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:177, column:111,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:111,the value of plot_cost is         : 32.244390040655524 

 At row:177, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:177, column:112,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:112,the value of plot_cost is         : 32.43809654878844 

 At row:177, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:177, column:113,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:113,the value of plot_cost is         : 32.63261111732387 

 At row:177, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:177, column:114,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:114,the value of plot_cost is         : 32.827933746261806 

 At row:177, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:177, column:115,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:115,the value of plot_cost is         : 33.02406443560226 

 At row:177, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:177, column:116,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:116,the value of plot_cost is         : 33.22100318534524 

 At row:177, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:177, column:117,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:117,the value of plot_cost is         : 33.41874999549073 

 At row:177, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:177, column:118,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:118,the value of plot_cost is         : 33.61730486603873 

 At row:177, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:177, column:119,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:119,the value of plot_cost is         : 33.81666779698924 

 At row:177, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:177, column:120,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:120,the value of plot_cost is         : 34.01683878834228 

 At row:177, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:177, column:121,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:121,the value of plot_cost is         : 34.217817840097815 

 At row:177, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:177, column:122,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:122,the value of plot_cost is         : 34.419604952255874 

 At row:177, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:177, column:123,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:123,the value of plot_cost is         : 34.622200124816466 

 At row:177, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:177, column:124,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:124,the value of plot_cost is         : 34.825603357779556 

 At row:177, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:177, column:125,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:125,the value of plot_cost is         : 35.02981465114516 

 At row:177, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:177, column:126,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:126,the value of plot_cost is         : 35.23483400491329 

 At row:177, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:177, column:127,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:127,the value of plot_cost is         : 35.44066141908393 

 At row:177, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:177, column:128,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:128,the value of plot_cost is         : 35.64729689365708 

 At row:177, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:177, column:129,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:129,the value of plot_cost is         : 35.854740428632745 

 At row:177, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:177, column:130,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:130,the value of plot_cost is         : 36.062992024010924 

 At row:177, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:177, column:131,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:131,the value of plot_cost is         : 36.27205167979162 

 At row:177, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:177, column:132,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:132,the value of plot_cost is         : 36.481919395974835 

 At row:177, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:177, column:133,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:133,the value of plot_cost is         : 36.692595172560566 

 At row:177, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:177, column:134,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:134,the value of plot_cost is         : 36.90407900954881 

 At row:177, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:177, column:135,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:135,the value of plot_cost is         : 37.116370906939565 

 At row:177, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:177, column:136,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:136,the value of plot_cost is         : 37.32947086473285 

 At row:177, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:177, column:137,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:137,the value of plot_cost is         : 37.54337888292863 

 At row:177, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:177, column:138,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:138,the value of plot_cost is         : 37.758094961526936 

 At row:177, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:177, column:139,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:139,the value of plot_cost is         : 37.97361910052775 

 At row:177, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:177, column:140,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:140,the value of plot_cost is         : 38.18995129993109 

 At row:177, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:177, column:141,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:141,the value of plot_cost is         : 38.407091559736934 

 At row:177, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:177, column:142,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:142,the value of plot_cost is         : 38.6250398799453 

 At row:177, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:177, column:143,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:143,the value of plot_cost is         : 38.84379626055618 

 At row:177, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:177, column:144,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:144,the value of plot_cost is         : 39.063360701569586 

 At row:177, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:177, column:145,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:145,the value of plot_cost is         : 39.28373320298548 

 At row:177, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:177, column:146,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:146,the value of plot_cost is         : 39.50491376480391 

 At row:177, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:177, column:147,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:147,the value of plot_cost is         : 39.72690238702486 

 At row:177, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:177, column:148,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:148,the value of plot_cost is         : 39.9496990696483 

 At row:177, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:177, column:149,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:149,the value of plot_cost is         : 40.17330381267428 

 At row:177, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:177, column:150,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:150,the value of plot_cost is         : 40.397716616102755 

 At row:177, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:177, column:151,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:151,the value of plot_cost is         : 40.62293747993375 

 At row:177, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:177, column:152,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:152,the value of plot_cost is         : 40.848966404167264 

 At row:177, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:177, column:153,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:153,the value of plot_cost is         : 41.0758033888033 

 At row:177, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:177, column:154,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:154,the value of plot_cost is         : 41.303448433841844 

 At row:177, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:177, column:155,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:155,the value of plot_cost is         : 41.53190153928291 

 At row:177, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:177, column:156,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:156,the value of plot_cost is         : 41.76116270512649 

 At row:177, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:177, column:157,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:157,the value of plot_cost is         : 41.991231931372575 

 At row:177, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:177, column:158,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:158,the value of plot_cost is         : 42.22210921802118 

 At row:177, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:177, column:159,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:159,the value of plot_cost is         : 42.45379456507231 

 At row:177, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:177, column:160,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:160,the value of plot_cost is         : 42.68628797252594 

 At row:177, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:177, column:161,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:161,the value of plot_cost is         : 42.91958944038208 

 At row:177, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:177, column:162,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:162,the value of plot_cost is         : 43.15369896864075 

 At row:177, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:177, column:163,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:163,the value of plot_cost is         : 43.38861655730193 

 At row:177, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:177, column:164,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:164,the value of plot_cost is         : 43.62434220636563 

 At row:177, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:177, column:165,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:165,the value of plot_cost is         : 43.86087591583185 

 At row:177, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:177, column:166,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:166,the value of plot_cost is         : 44.098217685700575 

 At row:177, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:177, column:167,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:167,the value of plot_cost is         : 44.33636751597181 

 At row:177, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:177, column:168,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:168,the value of plot_cost is         : 44.57532540664556 

 At row:177, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:177, column:169,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:169,the value of plot_cost is         : 44.81509135772184 

 At row:177, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:177, column:170,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:170,the value of plot_cost is         : 45.055665369200625 

 At row:177, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:177, column:171,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:171,the value of plot_cost is         : 45.29704744108192 

 At row:177, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:177, column:172,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:172,the value of plot_cost is         : 45.53923757336573 

 At row:177, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:177, column:173,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:173,the value of plot_cost is         : 45.782235766052075 

 At row:177, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:177, column:174,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:174,the value of plot_cost is         : 46.02604201914091 

 At row:177, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:177, column:175,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:175,the value of plot_cost is         : 46.27065633263228 

 At row:177, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:177, column:176,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:176,the value of plot_cost is         : 46.51607870652616 

 At row:177, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:177, column:177,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:177,the value of plot_cost is         : 46.76230914082255 

 At row:177, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:177, column:178,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:178,the value of plot_cost is         : 47.00934763552145 

 At row:177, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:177, column:179,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:179,the value of plot_cost is         : 47.25719419062287 

 At row:177, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:177, column:180,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:180,the value of plot_cost is         : 47.505848806126814 

 At row:177, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:177, column:181,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:181,the value of plot_cost is         : 47.75531148203326 

 At row:177, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:177, column:182,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:182,the value of plot_cost is         : 48.00558221834223 

 At row:177, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:177, column:183,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:183,the value of plot_cost is         : 48.256661015053716 

 At row:177, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:177, column:184,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:184,the value of plot_cost is         : 48.50854787216772 

 At row:177, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:177, column:185,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:185,the value of plot_cost is         : 48.76124278968423 

 At row:177, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:177, column:186,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:186,the value of plot_cost is         : 49.014745767603266 

 At row:177, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:177, column:187,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:187,the value of plot_cost is         : 49.269056805924805 

 At row:177, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:177, column:188,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:188,the value of plot_cost is         : 49.52417590464886 

 At row:177, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:177, column:189,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:189,the value of plot_cost is         : 49.780103063775435 

 At row:177, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:177, column:190,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:190,the value of plot_cost is         : 50.036838283304526 

 At row:177, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:177, column:191,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:191,the value of plot_cost is         : 50.294381563236115 

 At row:177, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:177, column:192,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:192,the value of plot_cost is         : 50.55273290357023 

 At row:177, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:177, column:193,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:193,the value of plot_cost is         : 50.81189230430687 

 At row:177, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:177, column:194,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:194,the value of plot_cost is         : 51.07185976544602 

 At row:177, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:177, column:195,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:195,the value of plot_cost is         : 51.33263528698769 

 At row:177, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:177, column:196,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:196,the value of plot_cost is         : 51.59421886893188 

 At row:177, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:177, column:197,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:197,the value of plot_cost is         : 51.85661051127856 

 At row:177, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:177, column:198,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:198,the value of plot_cost is         : 52.119810214027765 

 At row:177, column:199,the value of plot_t0 is           : 3.0
 At row:177, column:199,the value of plot_t1 is           : 2.557788944723618
 At row:177, column:199,the value of plot_cost is         : 52.3838179771795 

 At row:178, column:0,the value of plot_t0 is           : -1.0
 At row:178, column:0,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:0,the value of plot_cost is         : 16.361733109192766 

 At row:178, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:178, column:1,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:1,the value of plot_cost is         : 16.46842305569484 

 At row:178, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:178, column:2,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:2,the value of plot_cost is         : 16.57592106259942 

 At row:178, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:178, column:3,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:3,the value of plot_cost is         : 16.68422712990653 

 At row:178, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:178, column:4,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:4,the value of plot_cost is         : 16.79334125761615 

 At row:178, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:178, column:5,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:5,the value of plot_cost is         : 16.903263445728278 

 At row:178, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:178, column:6,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:6,the value of plot_cost is         : 17.013993694242924 

 At row:178, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:178, column:7,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:7,the value of plot_cost is         : 17.12553200316009 

 At row:178, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:178, column:8,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:8,the value of plot_cost is         : 17.23787837247977 

 At row:178, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:178, column:9,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:9,the value of plot_cost is         : 17.351032802201964 

 At row:178, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:178, column:10,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:10,the value of plot_cost is         : 17.46499529232667 

 At row:178, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:178, column:11,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:11,the value of plot_cost is         : 17.579765842853888 

 At row:178, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:178, column:12,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:12,the value of plot_cost is         : 17.69534445378363 

 At row:178, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:178, column:13,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:13,the value of plot_cost is         : 17.811731125115884 

 At row:178, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:178, column:14,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:14,the value of plot_cost is         : 17.92892585685065 

 At row:178, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:178, column:15,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:15,the value of plot_cost is         : 18.04692864898794 

 At row:178, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:178, column:16,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:16,the value of plot_cost is         : 18.16573950152774 

 At row:178, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:178, column:17,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:17,the value of plot_cost is         : 18.28535841447005 

 At row:178, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:178, column:18,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:18,the value of plot_cost is         : 18.405785387814877 

 At row:178, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:178, column:19,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:19,the value of plot_cost is         : 18.527020421562224 

 At row:178, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:178, column:20,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:20,the value of plot_cost is         : 18.64906351571208 

 At row:178, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:178, column:21,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:21,the value of plot_cost is         : 18.77191467026445 

 At row:178, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:178, column:22,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:22,the value of plot_cost is         : 18.895573885219342 

 At row:178, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:178, column:23,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:23,the value of plot_cost is         : 19.020041160576746 

 At row:178, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:178, column:24,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:24,the value of plot_cost is         : 19.145316496336665 

 At row:178, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:178, column:25,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:25,the value of plot_cost is         : 19.271399892499097 

 At row:178, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:178, column:26,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:26,the value of plot_cost is         : 19.398291349064053 

 At row:178, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:178, column:27,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:27,the value of plot_cost is         : 19.52599086603152 

 At row:178, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:178, column:28,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:28,the value of plot_cost is         : 19.654498443401497 

 At row:178, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:178, column:29,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:29,the value of plot_cost is         : 19.783814081173997 

 At row:178, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:178, column:30,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:30,the value of plot_cost is         : 19.913937779349002 

 At row:178, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:178, column:31,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:31,the value of plot_cost is         : 20.044869537926527 

 At row:178, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:178, column:32,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:32,the value of plot_cost is         : 20.176609356906567 

 At row:178, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:178, column:33,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:33,the value of plot_cost is         : 20.30915723628912 

 At row:178, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:178, column:34,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:34,the value of plot_cost is         : 20.44251317607419 

 At row:178, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:178, column:35,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:35,the value of plot_cost is         : 20.576677176261782 

 At row:178, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:178, column:36,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:36,the value of plot_cost is         : 20.711649236851883 

 At row:178, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:178, column:37,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:37,the value of plot_cost is         : 20.847429357844494 

 At row:178, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:178, column:38,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:38,the value of plot_cost is         : 20.98401753923963 

 At row:178, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:178, column:39,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:39,the value of plot_cost is         : 21.121413781037273 

 At row:178, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:178, column:40,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:40,the value of plot_cost is         : 21.25961808323743 

 At row:178, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:178, column:41,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:41,the value of plot_cost is         : 21.39863044584011 

 At row:178, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:178, column:42,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:42,the value of plot_cost is         : 21.538450868845292 

 At row:178, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:178, column:43,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:43,the value of plot_cost is         : 21.679079352253 

 At row:178, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:178, column:44,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:44,the value of plot_cost is         : 21.820515896063224 

 At row:178, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:178, column:45,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:45,the value of plot_cost is         : 21.962760500275966 

 At row:178, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:178, column:46,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:46,the value of plot_cost is         : 22.105813164891213 

 At row:178, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:178, column:47,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:47,the value of plot_cost is         : 22.24967388990898 

 At row:178, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:178, column:48,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:48,the value of plot_cost is         : 22.394342675329266 

 At row:178, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:178, column:49,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:49,the value of plot_cost is         : 22.53981952115206 

 At row:178, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:178, column:50,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:50,the value of plot_cost is         : 22.68610442737737 

 At row:178, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:178, column:51,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:51,the value of plot_cost is         : 22.833197394005197 

 At row:178, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:178, column:52,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:52,the value of plot_cost is         : 22.98109842103554 

 At row:178, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:178, column:53,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:53,the value of plot_cost is         : 23.129807508468396 

 At row:178, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:178, column:54,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:54,the value of plot_cost is         : 23.279324656303764 

 At row:178, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:178, column:55,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:55,the value of plot_cost is         : 23.42964986454166 

 At row:178, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:178, column:56,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:56,the value of plot_cost is         : 23.58078313318206 

 At row:178, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:178, column:57,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:57,the value of plot_cost is         : 23.732724462224972 

 At row:178, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:178, column:58,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:58,the value of plot_cost is         : 23.88547385167041 

 At row:178, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:178, column:59,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:59,the value of plot_cost is         : 24.03903130151836 

 At row:178, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:178, column:60,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:60,the value of plot_cost is         : 24.193396811768814 

 At row:178, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:178, column:61,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:61,the value of plot_cost is         : 24.34857038242179 

 At row:178, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:178, column:62,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:62,the value of plot_cost is         : 24.504552013477287 

 At row:178, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:178, column:63,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:63,the value of plot_cost is         : 24.661341704935296 

 At row:178, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:178, column:64,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:64,the value of plot_cost is         : 24.818939456795817 

 At row:178, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:178, column:65,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:65,the value of plot_cost is         : 24.97734526905886 

 At row:178, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:178, column:66,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:66,the value of plot_cost is         : 25.136559141724415 

 At row:178, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:178, column:67,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:67,the value of plot_cost is         : 25.296581074792478 

 At row:178, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:178, column:68,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:68,the value of plot_cost is         : 25.45741106826307 

 At row:178, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:178, column:69,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:69,the value of plot_cost is         : 25.619049122136158 

 At row:178, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:178, column:70,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:70,the value of plot_cost is         : 25.78149523641177 

 At row:178, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:178, column:71,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:71,the value of plot_cost is         : 25.9447494110899 

 At row:178, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:178, column:72,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:72,the value of plot_cost is         : 26.108811646170544 

 At row:178, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:178, column:73,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:73,the value of plot_cost is         : 26.273681941653706 

 At row:178, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:178, column:74,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:74,the value of plot_cost is         : 26.439360297539377 

 At row:178, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:178, column:75,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:75,the value of plot_cost is         : 26.60584671382757 

 At row:178, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:178, column:76,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:76,the value of plot_cost is         : 26.773141190518274 

 At row:178, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:178, column:77,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:77,the value of plot_cost is         : 26.941243727611493 

 At row:178, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:178, column:78,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:78,the value of plot_cost is         : 27.110154325107224 

 At row:178, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:178, column:79,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:79,the value of plot_cost is         : 27.279872983005475 

 At row:178, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:178, column:80,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:80,the value of plot_cost is         : 27.450399701306235 

 At row:178, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:178, column:81,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:81,the value of plot_cost is         : 27.621734480009515 

 At row:178, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:178, column:82,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:82,the value of plot_cost is         : 27.79387731911531 

 At row:178, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:178, column:83,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:83,the value of plot_cost is         : 27.966828218623622 

 At row:178, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:178, column:84,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:84,the value of plot_cost is         : 28.140587178534446 

 At row:178, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:178, column:85,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:85,the value of plot_cost is         : 28.31515419884779 

 At row:178, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:178, column:86,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:86,the value of plot_cost is         : 28.490529279563646 

 At row:178, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:178, column:87,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:87,the value of plot_cost is         : 28.66671242068201 

 At row:178, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:178, column:88,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:88,the value of plot_cost is         : 28.843703622202902 

 At row:178, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:178, column:89,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:89,the value of plot_cost is         : 29.0215028841263 

 At row:178, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:178, column:90,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:90,the value of plot_cost is         : 29.200110206452212 

 At row:178, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:178, column:91,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:91,the value of plot_cost is         : 29.379525589180638 

 At row:178, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:178, column:92,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:92,the value of plot_cost is         : 29.559749032311586 

 At row:178, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:178, column:93,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:93,the value of plot_cost is         : 29.740780535845047 

 At row:178, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:178, column:94,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:94,the value of plot_cost is         : 29.92262009978102 

 At row:178, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:178, column:95,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:95,the value of plot_cost is         : 30.105267724119518 

 At row:178, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:178, column:96,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:96,the value of plot_cost is         : 30.28872340886052 

 At row:178, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:178, column:97,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:97,the value of plot_cost is         : 30.472987154004045 

 At row:178, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:178, column:98,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:98,the value of plot_cost is         : 30.65805895955008 

 At row:178, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:178, column:99,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:99,the value of plot_cost is         : 30.84393882549863 

 At row:178, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:178, column:100,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:100,the value of plot_cost is         : 31.030626751849695 

 At row:178, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:178, column:101,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:101,the value of plot_cost is         : 31.21812273860327 

 At row:178, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:178, column:102,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:102,the value of plot_cost is         : 31.40642678575937 

 At row:178, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:178, column:103,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:103,the value of plot_cost is         : 31.595538893317983 

 At row:178, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:178, column:104,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:104,the value of plot_cost is         : 31.785459061279106 

 At row:178, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:178, column:105,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:105,the value of plot_cost is         : 31.976187289642745 

 At row:178, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:178, column:106,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:106,the value of plot_cost is         : 32.1677235784089 

 At row:178, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:178, column:107,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:107,the value of plot_cost is         : 32.36006792757758 

 At row:178, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:178, column:108,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:108,the value of plot_cost is         : 32.553220337148765 

 At row:178, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:178, column:109,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:109,the value of plot_cost is         : 32.74718080712247 

 At row:178, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:178, column:110,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:110,the value of plot_cost is         : 32.941949337498684 

 At row:178, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:178, column:111,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:111,the value of plot_cost is         : 33.13752592827741 

 At row:178, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:178, column:112,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:112,the value of plot_cost is         : 33.33391057945866 

 At row:178, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:178, column:113,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:113,the value of plot_cost is         : 33.53110329104243 

 At row:178, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:178, column:114,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:114,the value of plot_cost is         : 33.72910406302871 

 At row:178, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:178, column:115,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:115,the value of plot_cost is         : 33.9279128954175 

 At row:178, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:178, column:116,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:116,the value of plot_cost is         : 34.12752978820881 

 At row:178, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:178, column:117,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:117,the value of plot_cost is         : 34.32795474140263 

 At row:178, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:178, column:118,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:118,the value of plot_cost is         : 34.529187754998965 

 At row:178, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:178, column:119,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:119,the value of plot_cost is         : 34.73122882899782 

 At row:178, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:178, column:120,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:120,the value of plot_cost is         : 34.93407796339918 

 At row:178, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:178, column:121,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:121,the value of plot_cost is         : 35.137735158203064 

 At row:178, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:178, column:122,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:122,the value of plot_cost is         : 35.342200413409465 

 At row:178, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:178, column:123,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:123,the value of plot_cost is         : 35.54747372901838 

 At row:178, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:178, column:124,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:124,the value of plot_cost is         : 35.75355510502981 

 At row:178, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:178, column:125,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:125,the value of plot_cost is         : 35.960444541443756 

 At row:178, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:178, column:126,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:126,the value of plot_cost is         : 36.168142038260214 

 At row:178, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:178, column:127,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:127,the value of plot_cost is         : 36.37664759547918 

 At row:178, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:178, column:128,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:128,the value of plot_cost is         : 36.58596121310068 

 At row:178, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:178, column:129,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:129,the value of plot_cost is         : 36.796082891124684 

 At row:178, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:178, column:130,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:130,the value of plot_cost is         : 37.0070126295512 

 At row:178, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:178, column:131,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:131,the value of plot_cost is         : 37.21875042838022 

 At row:178, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:178, column:132,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:132,the value of plot_cost is         : 37.43129628761178 

 At row:178, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:178, column:133,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:133,the value of plot_cost is         : 37.64465020724584 

 At row:178, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:178, column:134,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:134,the value of plot_cost is         : 37.858812187282425 

 At row:178, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:178, column:135,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:135,the value of plot_cost is         : 38.073782227721516 

 At row:178, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:178, column:136,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:136,the value of plot_cost is         : 38.28956032856312 

 At row:178, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:178, column:137,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:137,the value of plot_cost is         : 38.50614648980725 

 At row:178, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:178, column:138,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:138,the value of plot_cost is         : 38.72354071145389 

 At row:178, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:178, column:139,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:139,the value of plot_cost is         : 38.94174299350305 

 At row:178, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:178, column:140,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:140,the value of plot_cost is         : 39.16075333595472 

 At row:178, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:178, column:141,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:141,the value of plot_cost is         : 39.380571738808904 

 At row:178, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:178, column:142,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:142,the value of plot_cost is         : 39.601198202065596 

 At row:178, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:178, column:143,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:143,the value of plot_cost is         : 39.822632725724816 

 At row:178, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:178, column:144,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:144,the value of plot_cost is         : 40.04487530978654 

 At row:178, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:178, column:145,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:145,the value of plot_cost is         : 40.26792595425079 

 At row:178, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:178, column:146,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:146,the value of plot_cost is         : 40.49178465911755 

 At row:178, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:178, column:147,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:147,the value of plot_cost is         : 40.716451424386825 

 At row:178, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:178, column:148,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:148,the value of plot_cost is         : 40.941926250058614 

 At row:178, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:178, column:149,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:149,the value of plot_cost is         : 41.16820913613293 

 At row:178, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:178, column:150,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:150,the value of plot_cost is         : 41.39530008260974 

 At row:178, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:178, column:151,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:151,the value of plot_cost is         : 41.62319908948908 

 At row:178, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:178, column:152,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:152,the value of plot_cost is         : 41.851906156770916 

 At row:178, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:178, column:153,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:153,the value of plot_cost is         : 42.081421284455296 

 At row:178, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:178, column:154,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:154,the value of plot_cost is         : 42.31174447254217 

 At row:178, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:178, column:155,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:155,the value of plot_cost is         : 42.54287572103158 

 At row:178, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:178, column:156,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:156,the value of plot_cost is         : 42.77481502992348 

 At row:178, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:178, column:157,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:157,the value of plot_cost is         : 43.0075623992179 

 At row:178, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:178, column:158,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:158,the value of plot_cost is         : 43.241117828914845 

 At row:178, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:178, column:159,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:159,the value of plot_cost is         : 43.47548131901431 

 At row:178, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:178, column:160,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:160,the value of plot_cost is         : 43.71065286951628 

 At row:178, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:178, column:161,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:161,the value of plot_cost is         : 43.94663248042077 

 At row:178, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:178, column:162,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:162,the value of plot_cost is         : 44.183420151727766 

 At row:178, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:178, column:163,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:163,the value of plot_cost is         : 44.421015883437285 

 At row:178, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:178, column:164,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:164,the value of plot_cost is         : 44.65941967554931 

 At row:178, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:178, column:165,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:165,the value of plot_cost is         : 44.89863152806386 

 At row:178, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:178, column:166,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:166,the value of plot_cost is         : 45.13865144098093 

 At row:178, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:178, column:167,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:167,the value of plot_cost is         : 45.3794794143005 

 At row:178, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:178, column:168,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:168,the value of plot_cost is         : 45.62111544802259 

 At row:178, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:178, column:169,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:169,the value of plot_cost is         : 45.8635595421472 

 At row:178, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:178, column:170,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:170,the value of plot_cost is         : 46.10681169667432 

 At row:178, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:178, column:171,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:171,the value of plot_cost is         : 46.35087191160396 

 At row:178, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:178, column:172,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:172,the value of plot_cost is         : 46.595740186936105 

 At row:178, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:178, column:173,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:173,the value of plot_cost is         : 46.84141652267077 

 At row:178, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:178, column:174,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:174,the value of plot_cost is         : 47.08790091880796 

 At row:178, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:178, column:175,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:175,the value of plot_cost is         : 47.33519337534766 

 At row:178, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:178, column:176,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:176,the value of plot_cost is         : 47.58329389228987 

 At row:178, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:178, column:177,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:177,the value of plot_cost is         : 47.832202469634595 

 At row:178, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:178, column:178,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:178,the value of plot_cost is         : 48.081919107381836 

 At row:178, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:178, column:179,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:179,the value of plot_cost is         : 48.3324438055316 

 At row:178, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:178, column:180,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:180,the value of plot_cost is         : 48.58377656408387 

 At row:178, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:178, column:181,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:181,the value of plot_cost is         : 48.835917383038655 

 At row:178, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:178, column:182,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:182,the value of plot_cost is         : 49.08886626239596 

 At row:178, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:178, column:183,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:183,the value of plot_cost is         : 49.34262320215578 

 At row:178, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:178, column:184,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:184,the value of plot_cost is         : 49.59718820231811 

 At row:178, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:178, column:185,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:185,the value of plot_cost is         : 49.852561262882965 

 At row:178, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:178, column:186,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:186,the value of plot_cost is         : 50.10874238385033 

 At row:178, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:178, column:187,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:187,the value of plot_cost is         : 50.36573156522021 

 At row:178, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:178, column:188,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:188,the value of plot_cost is         : 50.623528806992596 

 At row:178, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:178, column:189,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:189,the value of plot_cost is         : 50.882134109167524 

 At row:178, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:178, column:190,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:190,the value of plot_cost is         : 51.14154747174493 

 At row:178, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:178, column:191,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:191,the value of plot_cost is         : 51.401768894724874 

 At row:178, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:178, column:192,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:192,the value of plot_cost is         : 51.662798378107325 

 At row:178, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:178, column:193,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:193,the value of plot_cost is         : 51.924635921892296 

 At row:178, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:178, column:194,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:194,the value of plot_cost is         : 52.18728152607978 

 At row:178, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:178, column:195,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:195,the value of plot_cost is         : 52.45073519066978 

 At row:178, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:178, column:196,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:196,the value of plot_cost is         : 52.7149969156623 

 At row:178, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:178, column:197,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:197,the value of plot_cost is         : 52.98006670105733 

 At row:178, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:178, column:198,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:198,the value of plot_cost is         : 53.24594454685487 

 At row:178, column:199,the value of plot_t0 is           : 3.0
 At row:178, column:199,the value of plot_t1 is           : 2.577889447236181
 At row:178, column:199,the value of plot_cost is         : 53.512630453054925 

 At row:179, column:0,the value of plot_t0 is           : -1.0
 At row:179, column:0,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:0,the value of plot_cost is         : 16.970177773288558 

 At row:179, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:179, column:1,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:1,the value of plot_cost is         : 17.079545862838966 

 At row:179, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:179, column:2,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:2,the value of plot_cost is         : 17.189722012791886 

 At row:179, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:179, column:3,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:3,the value of plot_cost is         : 17.30070622314733 

 At row:179, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:179, column:4,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:4,the value of plot_cost is         : 17.412498493905282 

 At row:179, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:179, column:5,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:5,the value of plot_cost is         : 17.525098825065747 

 At row:179, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:179, column:6,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:6,the value of plot_cost is         : 17.638507216628735 

 At row:179, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:179, column:7,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:7,the value of plot_cost is         : 17.752723668594232 

 At row:179, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:179, column:8,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:8,the value of plot_cost is         : 17.86774818096225 

 At row:179, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:179, column:9,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:9,the value of plot_cost is         : 17.983580753732777 

 At row:179, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:179, column:10,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:10,the value of plot_cost is         : 18.10022138690582 

 At row:179, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:179, column:11,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:11,the value of plot_cost is         : 18.217670080481373 

 At row:179, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:179, column:12,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:12,the value of plot_cost is         : 18.335926834459446 

 At row:179, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:179, column:13,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:13,the value of plot_cost is         : 18.45499164884004 

 At row:179, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:179, column:14,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:14,the value of plot_cost is         : 18.574864523623145 

 At row:179, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:179, column:15,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:15,the value of plot_cost is         : 18.695545458808763 

 At row:179, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:179, column:16,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:16,the value of plot_cost is         : 18.8170344543969 

 At row:179, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:179, column:17,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:17,the value of plot_cost is         : 18.939331510387547 

 At row:179, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:179, column:18,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:18,the value of plot_cost is         : 19.062436626780716 

 At row:179, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:179, column:19,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:19,the value of plot_cost is         : 19.18634980357639 

 At row:179, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:179, column:20,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:20,the value of plot_cost is         : 19.31107104077459 

 At row:179, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:179, column:21,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:21,the value of plot_cost is         : 19.436600338375293 

 At row:179, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:179, column:22,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:22,the value of plot_cost is         : 19.562937696378516 

 At row:179, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:179, column:23,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:23,the value of plot_cost is         : 19.69008311478426 

 At row:179, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:179, column:24,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:24,the value of plot_cost is         : 19.818036593592513 

 At row:179, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:179, column:25,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:25,the value of plot_cost is         : 19.94679813280329 

 At row:179, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:179, column:26,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:26,the value of plot_cost is         : 20.076367732416575 

 At row:179, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:179, column:27,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:27,the value of plot_cost is         : 20.206745392432374 

 At row:179, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:179, column:28,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:28,the value of plot_cost is         : 20.337931112850693 

 At row:179, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:179, column:29,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:29,the value of plot_cost is         : 20.46992489367152 

 At row:179, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:179, column:30,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:30,the value of plot_cost is         : 20.602726734894862 

 At row:179, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:179, column:31,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:31,the value of plot_cost is         : 20.736336636520726 

 At row:179, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:179, column:32,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:32,the value of plot_cost is         : 20.8707545985491 

 At row:179, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:179, column:33,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:33,the value of plot_cost is         : 21.00598062097999 

 At row:179, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:179, column:34,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:34,the value of plot_cost is         : 21.142014703813402 

 At row:179, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:179, column:35,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:35,the value of plot_cost is         : 21.278856847049326 

 At row:179, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:179, column:36,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:36,the value of plot_cost is         : 21.41650705068776 

 At row:179, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:179, column:37,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:37,the value of plot_cost is         : 21.554965314728708 

 At row:179, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:179, column:38,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:38,the value of plot_cost is         : 21.694231639172177 

 At row:179, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:179, column:39,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:39,the value of plot_cost is         : 21.834306024018158 

 At row:179, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:179, column:40,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:40,the value of plot_cost is         : 21.97518846926665 

 At row:179, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:179, column:41,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:41,the value of plot_cost is         : 22.11687897491766 

 At row:179, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:179, column:42,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:42,the value of plot_cost is         : 22.259377540971187 

 At row:179, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:179, column:43,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:43,the value of plot_cost is         : 22.402684167427235 

 At row:179, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:179, column:44,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:44,the value of plot_cost is         : 22.54679885428579 

 At row:179, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:179, column:45,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:45,the value of plot_cost is         : 22.691721601546863 

 At row:179, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:179, column:46,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:46,the value of plot_cost is         : 22.837452409210453 

 At row:179, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:179, column:47,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:47,the value of plot_cost is         : 22.98399127727655 

 At row:179, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:179, column:48,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:48,the value of plot_cost is         : 23.13133820574517 

 At row:179, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:179, column:49,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:49,the value of plot_cost is         : 23.279493194616304 

 At row:179, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:179, column:50,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:50,the value of plot_cost is         : 23.42845624388995 

 At row:179, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:179, column:51,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:51,the value of plot_cost is         : 23.578227353566106 

 At row:179, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:179, column:52,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:52,the value of plot_cost is         : 23.728806523644792 

 At row:179, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:179, column:53,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:53,the value of plot_cost is         : 23.880193754125983 

 At row:179, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:179, column:54,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:54,the value of plot_cost is         : 24.032389045009687 

 At row:179, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:179, column:55,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:55,the value of plot_cost is         : 24.185392396295914 

 At row:179, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:179, column:56,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:56,the value of plot_cost is         : 24.339203807984653 

 At row:179, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:179, column:57,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:57,the value of plot_cost is         : 24.493823280075905 

 At row:179, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:179, column:58,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:58,the value of plot_cost is         : 24.64925081256968 

 At row:179, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:179, column:59,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:59,the value of plot_cost is         : 24.805486405465956 

 At row:179, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:179, column:60,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:60,the value of plot_cost is         : 24.962530058764752 

 At row:179, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:179, column:61,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:61,the value of plot_cost is         : 25.120381772466065 

 At row:179, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:179, column:62,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:62,the value of plot_cost is         : 25.2790415465699 

 At row:179, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:179, column:63,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:63,the value of plot_cost is         : 25.438509381076233 

 At row:179, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:179, column:64,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:64,the value of plot_cost is         : 25.598785275985097 

 At row:179, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:179, column:65,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:65,the value of plot_cost is         : 25.759869231296477 

 At row:179, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:179, column:66,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:66,the value of plot_cost is         : 25.921761247010366 

 At row:179, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:179, column:67,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:67,the value of plot_cost is         : 26.084461323126764 

 At row:179, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:179, column:68,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:68,the value of plot_cost is         : 26.247969459645688 

 At row:179, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:179, column:69,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:69,the value of plot_cost is         : 26.41228565656712 

 At row:179, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:179, column:70,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:70,the value of plot_cost is         : 26.577409913891064 

 At row:179, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:179, column:71,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:71,the value of plot_cost is         : 26.743342231617532 

 At row:179, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:179, column:72,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:72,the value of plot_cost is         : 26.910082609746514 

 At row:179, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:179, column:73,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:73,the value of plot_cost is         : 27.077631048278004 

 At row:179, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:179, column:74,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:74,the value of plot_cost is         : 27.24598754721201 

 At row:179, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:179, column:75,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:75,the value of plot_cost is         : 27.41515210654854 

 At row:179, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:179, column:76,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:76,the value of plot_cost is         : 27.58512472628758 

 At row:179, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:179, column:77,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:77,the value of plot_cost is         : 27.755905406429132 

 At row:179, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:179, column:78,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:78,the value of plot_cost is         : 27.927494146973206 

 At row:179, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:179, column:79,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:79,the value of plot_cost is         : 28.099890947919793 

 At row:179, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:179, column:80,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:80,the value of plot_cost is         : 28.273095809268888 

 At row:179, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:179, column:81,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:81,the value of plot_cost is         : 28.4471087310205 

 At row:179, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:179, column:82,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:82,the value of plot_cost is         : 28.621929713174637 

 At row:179, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:179, column:83,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:83,the value of plot_cost is         : 28.797558755731277 

 At row:179, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:179, column:84,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:84,the value of plot_cost is         : 28.973995858690436 

 At row:179, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:179, column:85,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:85,the value of plot_cost is         : 29.151241022052123 

 At row:179, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:179, column:86,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:86,the value of plot_cost is         : 29.329294245816307 

 At row:179, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:179, column:87,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:87,the value of plot_cost is         : 29.508155529983014 

 At row:179, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:179, column:88,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:88,the value of plot_cost is         : 29.687824874552238 

 At row:179, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:179, column:89,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:89,the value of plot_cost is         : 29.86830227952397 

 At row:179, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:179, column:90,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:90,the value of plot_cost is         : 30.049587744898222 

 At row:179, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:179, column:91,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:91,the value of plot_cost is         : 30.231681270674986 

 At row:179, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:179, column:92,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:92,the value of plot_cost is         : 30.41458285685427 

 At row:179, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:179, column:93,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:93,the value of plot_cost is         : 30.598292503436067 

 At row:179, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:179, column:94,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:94,the value of plot_cost is         : 30.782810210420372 

 At row:179, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:179, column:95,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:95,the value of plot_cost is         : 30.968135977807208 

 At row:179, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:179, column:96,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:96,the value of plot_cost is         : 31.15426980559654 

 At row:179, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:179, column:97,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:97,the value of plot_cost is         : 31.3412116937884 

 At row:179, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:179, column:98,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:98,the value of plot_cost is         : 31.52896164238278 

 At row:179, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:179, column:99,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:99,the value of plot_cost is         : 31.717519651379664 

 At row:179, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:179, column:100,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:100,the value of plot_cost is         : 31.906885720779062 

 At row:179, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:179, column:101,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:101,the value of plot_cost is         : 32.09705985058097 

 At row:179, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:179, column:102,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:102,the value of plot_cost is         : 32.288042040785406 

 At row:179, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:179, column:103,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:103,the value of plot_cost is         : 32.47983229139236 

 At row:179, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:179, column:104,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:104,the value of plot_cost is         : 32.672430602401825 

 At row:179, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:179, column:105,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:105,the value of plot_cost is         : 32.8658369738138 

 At row:179, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:179, column:106,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:106,the value of plot_cost is         : 33.060051405628286 

 At row:179, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:179, column:107,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:107,the value of plot_cost is         : 33.255073897845286 

 At row:179, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:179, column:108,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:108,the value of plot_cost is         : 33.450904450464826 

 At row:179, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:179, column:109,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:109,the value of plot_cost is         : 33.64754306348686 

 At row:179, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:179, column:110,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:110,the value of plot_cost is         : 33.84498973691141 

 At row:179, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:179, column:111,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:111,the value of plot_cost is         : 34.04324447073847 

 At row:179, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:179, column:112,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:112,the value of plot_cost is         : 34.24230726496806 

 At row:179, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:179, column:113,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:113,the value of plot_cost is         : 34.44217811960016 

 At row:179, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:179, column:114,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:114,the value of plot_cost is         : 34.64285703463477 

 At row:179, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:179, column:115,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:115,the value of plot_cost is         : 34.8443440100719 

 At row:179, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:179, column:116,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:116,the value of plot_cost is         : 35.04663904591155 

 At row:179, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:179, column:117,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:117,the value of plot_cost is         : 35.2497421421537 

 At row:179, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:179, column:118,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:118,the value of plot_cost is         : 35.45365329879838 

 At row:179, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:179, column:119,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:119,the value of plot_cost is         : 35.658372515845564 

 At row:179, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:179, column:120,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:120,the value of plot_cost is         : 35.863899793295275 

 At row:179, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:179, column:121,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:121,the value of plot_cost is         : 36.070235131147484 

 At row:179, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:179, column:122,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:122,the value of plot_cost is         : 36.27737852940222 

 At row:179, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:179, column:123,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:123,the value of plot_cost is         : 36.48532998805947 

 At row:179, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:179, column:124,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:124,the value of plot_cost is         : 36.69408950711924 

 At row:179, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:179, column:125,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:125,the value of plot_cost is         : 36.903657086581525 

 At row:179, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:179, column:126,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:126,the value of plot_cost is         : 37.114032726446304 

 At row:179, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:179, column:127,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:127,the value of plot_cost is         : 37.32521642671361 

 At row:179, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:179, column:128,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:128,the value of plot_cost is         : 37.53720818738344 

 At row:179, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:179, column:129,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:129,the value of plot_cost is         : 37.75000800845578 

 At row:179, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:179, column:130,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:130,the value of plot_cost is         : 37.96361588993064 

 At row:179, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:179, column:131,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:131,the value of plot_cost is         : 38.178031831808 

 At row:179, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:179, column:132,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:132,the value of plot_cost is         : 38.39325583408789 

 At row:179, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:179, column:133,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:133,the value of plot_cost is         : 38.60928789677029 

 At row:179, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:179, column:134,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:134,the value of plot_cost is         : 38.8261280198552 

 At row:179, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:179, column:135,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:135,the value of plot_cost is         : 39.043776203342645 

 At row:179, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:179, column:136,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:136,the value of plot_cost is         : 39.262232447232584 

 At row:179, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:179, column:137,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:137,the value of plot_cost is         : 39.481496751525036 

 At row:179, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:179, column:138,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:138,the value of plot_cost is         : 39.701569116220014 

 At row:179, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:179, column:139,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:139,the value of plot_cost is         : 39.9224495413175 

 At row:179, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:179, column:140,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:140,the value of plot_cost is         : 40.14413802681751 

 At row:179, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:179, column:141,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:141,the value of plot_cost is         : 40.366634572720024 

 At row:179, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:179, column:142,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:142,the value of plot_cost is         : 40.58993917902507 

 At row:179, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:179, column:143,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:143,the value of plot_cost is         : 40.814051845732614 

 At row:179, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:179, column:144,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:144,the value of plot_cost is         : 41.038972572842695 

 At row:179, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:179, column:145,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:145,the value of plot_cost is         : 41.26470136035527 

 At row:179, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:179, column:146,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:146,the value of plot_cost is         : 41.49123820827035 

 At row:179, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:179, column:147,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:147,the value of plot_cost is         : 41.71858311658796 

 At row:179, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:179, column:148,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:148,the value of plot_cost is         : 41.946736085308096 

 At row:179, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:179, column:149,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:149,the value of plot_cost is         : 42.17569711443074 

 At row:179, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:179, column:150,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:150,the value of plot_cost is         : 42.405466203955896 

 At row:179, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:179, column:151,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:151,the value of plot_cost is         : 42.63604335388357 

 At row:179, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:179, column:152,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:152,the value of plot_cost is         : 42.86742856421375 

 At row:179, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:179, column:153,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:153,the value of plot_cost is         : 43.09962183494645 

 At row:179, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:179, column:154,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:154,the value of plot_cost is         : 43.33262316608167 

 At row:179, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:179, column:155,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:155,the value of plot_cost is         : 43.56643255761941 

 At row:179, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:179, column:156,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:156,the value of plot_cost is         : 43.801050009559646 

 At row:179, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:179, column:157,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:157,the value of plot_cost is         : 44.0364755219024 

 At row:179, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:179, column:158,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:158,the value of plot_cost is         : 44.27270909464768 

 At row:179, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:179, column:159,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:159,the value of plot_cost is         : 44.50975072779548 

 At row:179, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:179, column:160,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:160,the value of plot_cost is         : 44.747600421345794 

 At row:179, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:179, column:161,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:161,the value of plot_cost is         : 44.986258175298616 

 At row:179, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:179, column:162,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:162,the value of plot_cost is         : 45.22572398965395 

 At row:179, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:179, column:163,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:163,the value of plot_cost is         : 45.4659978644118 

 At row:179, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:179, column:164,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:164,the value of plot_cost is         : 45.70707979957217 

 At row:179, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:179, column:165,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:165,the value of plot_cost is         : 45.94896979513505 

 At row:179, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:179, column:166,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:166,the value of plot_cost is         : 46.19166785110045 

 At row:179, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:179, column:167,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:167,the value of plot_cost is         : 46.43517396746836 

 At row:179, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:179, column:168,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:168,the value of plot_cost is         : 46.67948814423878 

 At row:179, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:179, column:169,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:169,the value of plot_cost is         : 46.92461038141173 

 At row:179, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:179, column:170,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:170,the value of plot_cost is         : 47.17054067898719 

 At row:179, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:179, column:171,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:171,the value of plot_cost is         : 47.41727903696517 

 At row:179, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:179, column:172,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:172,the value of plot_cost is         : 47.66482545534565 

 At row:179, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:179, column:173,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:173,the value of plot_cost is         : 47.91317993412865 

 At row:179, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:179, column:174,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:174,the value of plot_cost is         : 48.16234247331416 

 At row:179, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:179, column:175,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:175,the value of plot_cost is         : 48.41231307290221 

 At row:179, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:179, column:176,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:176,the value of plot_cost is         : 48.66309173289275 

 At row:179, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:179, column:177,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:177,the value of plot_cost is         : 48.91467845328581 

 At row:179, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:179, column:178,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:178,the value of plot_cost is         : 49.1670732340814 

 At row:179, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:179, column:179,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:179,the value of plot_cost is         : 49.42027607527948 

 At row:179, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:179, column:180,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:180,the value of plot_cost is         : 49.674286976880104 

 At row:179, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:179, column:181,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:181,the value of plot_cost is         : 49.929105938883225 

 At row:179, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:179, column:182,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:182,the value of plot_cost is         : 50.184732961288866 

 At row:179, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:179, column:183,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:183,the value of plot_cost is         : 50.441168044097004 

 At row:179, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:179, column:184,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:184,the value of plot_cost is         : 50.69841118730769 

 At row:179, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:179, column:185,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:185,the value of plot_cost is         : 50.95646239092086 

 At row:179, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:179, column:186,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:186,the value of plot_cost is         : 51.21532165493657 

 At row:179, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:179, column:187,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:187,the value of plot_cost is         : 51.47498897935478 

 At row:179, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:179, column:188,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:188,the value of plot_cost is         : 51.735464364175506 

 At row:179, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:179, column:189,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:189,the value of plot_cost is         : 51.99674780939876 

 At row:179, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:179, column:190,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:190,the value of plot_cost is         : 52.25883931502452 

 At row:179, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:179, column:191,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:191,the value of plot_cost is         : 52.5217388810528 

 At row:179, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:179, column:192,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:192,the value of plot_cost is         : 52.785446507483584 

 At row:179, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:179, column:193,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:193,the value of plot_cost is         : 53.04996219431689 

 At row:179, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:179, column:194,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:194,the value of plot_cost is         : 53.3152859415527 

 At row:179, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:179, column:195,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:195,the value of plot_cost is         : 53.58141774919105 

 At row:179, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:179, column:196,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:196,the value of plot_cost is         : 53.84835761723188 

 At row:179, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:179, column:197,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:197,the value of plot_cost is         : 54.11610554567526 

 At row:179, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:179, column:198,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:198,the value of plot_cost is         : 54.38466153452114 

 At row:179, column:199,the value of plot_t0 is           : 3.0
 At row:179, column:199,the value of plot_t1 is           : 2.5979899497487438
 At row:179, column:199,the value of plot_cost is         : 54.654025583769524 

 At row:180, column:0,the value of plot_t0 is           : -1.0
 At row:180, column:0,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:0,the value of plot_cost is         : 17.591205092223507 

 At row:180, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:180, column:1,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:1,the value of plot_cost is         : 17.703251324822247 

 At row:180, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:180, column:2,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:2,the value of plot_cost is         : 17.816105617823506 

 At row:180, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:180, column:3,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:3,the value of plot_cost is         : 17.92976797122728 

 At row:180, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:180, column:4,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:4,the value of plot_cost is         : 18.04423838503357 

 At row:180, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:180, column:5,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:5,the value of plot_cost is         : 18.159516859242373 

 At row:180, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:180, column:6,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:6,the value of plot_cost is         : 18.275603393853697 

 At row:180, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:180, column:7,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:7,the value of plot_cost is         : 18.39249798886753 

 At row:180, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:180, column:8,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:8,the value of plot_cost is         : 18.510200644283884 

 At row:180, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:180, column:9,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:9,the value of plot_cost is         : 18.628711360102745 

 At row:180, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:180, column:10,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:10,the value of plot_cost is         : 18.74803013632412 

 At row:180, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:180, column:11,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:11,the value of plot_cost is         : 18.868156972948018 

 At row:180, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:180, column:12,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:12,the value of plot_cost is         : 18.989091869974427 

 At row:180, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:180, column:13,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:13,the value of plot_cost is         : 19.110834827403355 

 At row:180, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:180, column:14,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:14,the value of plot_cost is         : 19.233385845234793 

 At row:180, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:180, column:15,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:15,the value of plot_cost is         : 19.356744923468753 

 At row:180, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:180, column:16,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:16,the value of plot_cost is         : 19.48091206210522 

 At row:180, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:180, column:17,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:17,the value of plot_cost is         : 19.605887261144208 

 At row:180, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:180, column:18,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:18,the value of plot_cost is         : 19.73167052058571 

 At row:180, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:180, column:19,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:19,the value of plot_cost is         : 19.858261840429723 

 At row:180, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:180, column:20,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:20,the value of plot_cost is         : 19.985661220676253 

 At row:180, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:180, column:21,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:21,the value of plot_cost is         : 20.113868661325295 

 At row:180, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:180, column:22,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:22,the value of plot_cost is         : 20.242884162376853 

 At row:180, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:180, column:23,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:23,the value of plot_cost is         : 20.37270772383093 

 At row:180, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:180, column:24,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:24,the value of plot_cost is         : 20.503339345687525 

 At row:180, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:180, column:25,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:25,the value of plot_cost is         : 20.634779027946625 

 At row:180, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:180, column:26,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:26,the value of plot_cost is         : 20.767026770608254 

 At row:180, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:180, column:27,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:27,the value of plot_cost is         : 20.90008257367239 

 At row:180, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:180, column:28,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:28,the value of plot_cost is         : 21.033946437139043 

 At row:180, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:180, column:29,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:29,the value of plot_cost is         : 21.16861836100821 

 At row:180, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:180, column:30,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:30,the value of plot_cost is         : 21.304098345279886 

 At row:180, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:180, column:31,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:31,the value of plot_cost is         : 21.440386389954085 

 At row:180, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:180, column:32,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:32,the value of plot_cost is         : 21.57748249503079 

 At row:180, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:180, column:33,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:33,the value of plot_cost is         : 21.71538666051002 

 At row:180, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:180, column:34,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:34,the value of plot_cost is         : 21.854098886391764 

 At row:180, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:180, column:35,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:35,the value of plot_cost is         : 21.99361917267602 

 At row:180, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:180, column:36,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:36,the value of plot_cost is         : 22.133947519362792 

 At row:180, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:180, column:37,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:37,the value of plot_cost is         : 22.27508392645208 

 At row:180, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:180, column:38,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:38,the value of plot_cost is         : 22.417028393943884 

 At row:180, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:180, column:39,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:39,the value of plot_cost is         : 22.559780921838197 

 At row:180, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:180, column:40,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:40,the value of plot_cost is         : 22.703341510135033 

 At row:180, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:180, column:41,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:41,the value of plot_cost is         : 22.84771015883437 

 At row:180, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:180, column:42,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:42,the value of plot_cost is         : 22.992886867936235 

 At row:180, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:180, column:43,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:43,the value of plot_cost is         : 23.13887163744062 

 At row:180, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:180, column:44,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:44,the value of plot_cost is         : 23.28566446734751 

 At row:180, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:180, column:45,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:45,the value of plot_cost is         : 23.43326535765692 

 At row:180, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:180, column:46,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:46,the value of plot_cost is         : 23.581674308368843 

 At row:180, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:180, column:47,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:47,the value of plot_cost is         : 23.73089131948328 

 At row:180, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:180, column:48,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:48,the value of plot_cost is         : 23.880916391000238 

 At row:180, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:180, column:49,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:49,the value of plot_cost is         : 24.0317495229197 

 At row:180, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:180, column:50,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:50,the value of plot_cost is         : 24.183390715241686 

 At row:180, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:180, column:51,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:51,the value of plot_cost is         : 24.33583996796618 

 At row:180, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:180, column:52,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:52,the value of plot_cost is         : 24.489097281093194 

 At row:180, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:180, column:53,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:53,the value of plot_cost is         : 24.64316265462272 

 At row:180, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:180, column:54,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:54,the value of plot_cost is         : 24.798036088554767 

 At row:180, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:180, column:55,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:55,the value of plot_cost is         : 24.95371758288933 

 At row:180, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:180, column:56,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:56,the value of plot_cost is         : 25.110207137626404 

 At row:180, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:180, column:57,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:57,the value of plot_cost is         : 25.26750475276599 

 At row:180, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:180, column:58,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:58,the value of plot_cost is         : 25.425610428308097 

 At row:180, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:180, column:59,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:59,the value of plot_cost is         : 25.584524164252716 

 At row:180, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:180, column:60,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:60,the value of plot_cost is         : 25.744245960599844 

 At row:180, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:180, column:61,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:61,the value of plot_cost is         : 25.904775817349492 

 At row:180, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:180, column:62,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:62,the value of plot_cost is         : 26.066113734501656 

 At row:180, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:180, column:63,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:63,the value of plot_cost is         : 26.228259712056342 

 At row:180, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:180, column:64,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:64,the value of plot_cost is         : 26.39121375001353 

 At row:180, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:180, column:65,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:65,the value of plot_cost is         : 26.554975848373246 

 At row:180, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:180, column:66,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:66,the value of plot_cost is         : 26.719546007135467 

 At row:180, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:180, column:67,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:67,the value of plot_cost is         : 26.884924226300214 

 At row:180, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:180, column:68,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:68,the value of plot_cost is         : 27.051110505867467 

 At row:180, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:180, column:69,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:69,the value of plot_cost is         : 27.21810484583723 

 At row:180, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:180, column:70,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:70,the value of plot_cost is         : 27.385907246209516 

 At row:180, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:180, column:71,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:71,the value of plot_cost is         : 27.554517706984313 

 At row:180, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:180, column:72,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:72,the value of plot_cost is         : 27.723936228161627 

 At row:180, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:180, column:73,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:73,the value of plot_cost is         : 27.894162809741463 

 At row:180, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:180, column:74,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:74,the value of plot_cost is         : 28.065197451723805 

 At row:180, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:180, column:75,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:75,the value of plot_cost is         : 28.237040154108673 

 At row:180, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:180, column:76,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:76,the value of plot_cost is         : 28.409690916896043 

 At row:180, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:180, column:77,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:77,the value of plot_cost is         : 28.58314974008594 

 At row:180, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:180, column:78,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:78,the value of plot_cost is         : 28.757416623678346 

 At row:180, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:180, column:79,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:79,the value of plot_cost is         : 28.93249156767326 

 At row:180, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:180, column:80,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:80,the value of plot_cost is         : 29.108374572070698 

 At row:180, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:180, column:81,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:81,the value of plot_cost is         : 29.28506563687064 

 At row:180, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:180, column:82,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:82,the value of plot_cost is         : 29.46256476207311 

 At row:180, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:180, column:83,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:83,the value of plot_cost is         : 29.640871947678093 

 At row:180, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:180, column:84,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:84,the value of plot_cost is         : 29.81998719368559 

 At row:180, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:180, column:85,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:85,the value of plot_cost is         : 29.99991050009561 

 At row:180, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:180, column:86,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:86,the value of plot_cost is         : 30.180641866908132 

 At row:180, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:180, column:87,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:87,the value of plot_cost is         : 30.362181294123175 

 At row:180, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:180, column:88,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:88,the value of plot_cost is         : 30.54452878174073 

 At row:180, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:180, column:89,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:89,the value of plot_cost is         : 30.727684329760798 

 At row:180, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:180, column:90,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:90,the value of plot_cost is         : 30.911647938183382 

 At row:180, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:180, column:91,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:91,the value of plot_cost is         : 31.09641960700848 

 At row:180, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:180, column:92,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:92,the value of plot_cost is         : 31.281999336236098 

 At row:180, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:180, column:93,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:93,the value of plot_cost is         : 31.468387125866236 

 At row:180, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:180, column:94,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:94,the value of plot_cost is         : 31.65558297589888 

 At row:180, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:180, column:95,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:95,the value of plot_cost is         : 31.843586886334048 

 At row:180, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:180, column:96,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:96,the value of plot_cost is         : 32.03239885717172 

 At row:180, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:180, column:97,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:97,the value of plot_cost is         : 32.222018888411924 

 At row:180, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:180, column:98,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:98,the value of plot_cost is         : 32.412446980054625 

 At row:180, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:180, column:99,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:99,the value of plot_cost is         : 32.603683132099846 

 At row:180, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:180, column:100,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:100,the value of plot_cost is         : 32.79572734454758 

 At row:180, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:180, column:101,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:101,the value of plot_cost is         : 32.988579617397825 

 At row:180, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:180, column:102,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:102,the value of plot_cost is         : 33.1822399506506 

 At row:180, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:180, column:103,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:103,the value of plot_cost is         : 33.37670834430589 

 At row:180, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:180, column:104,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:104,the value of plot_cost is         : 33.57198479836367 

 At row:180, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:180, column:105,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:105,the value of plot_cost is         : 33.76806931282399 

 At row:180, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:180, column:106,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:106,the value of plot_cost is         : 33.964961887686826 

 At row:180, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:180, column:107,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:107,the value of plot_cost is         : 34.162662522952175 

 At row:180, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:180, column:108,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:108,the value of plot_cost is         : 34.36117121862003 

 At row:180, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:180, column:109,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:109,the value of plot_cost is         : 34.5604879746904 

 At row:180, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:180, column:110,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:110,the value of plot_cost is         : 34.76061279116329 

 At row:180, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:180, column:111,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:111,the value of plot_cost is         : 34.96154566803869 

 At row:180, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:180, column:112,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:112,the value of plot_cost is         : 35.16328660531661 

 At row:180, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:180, column:113,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:113,the value of plot_cost is         : 35.365835602997045 

 At row:180, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:180, column:114,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:114,the value of plot_cost is         : 35.56919266108 

 At row:180, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:180, column:115,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:115,the value of plot_cost is         : 35.773357779565465 

 At row:180, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:180, column:116,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:116,the value of plot_cost is         : 35.978330958453434 

 At row:180, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:180, column:117,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:117,the value of plot_cost is         : 36.184112197743936 

 At row:180, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:180, column:118,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:118,the value of plot_cost is         : 36.39070149743694 

 At row:180, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:180, column:119,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:119,the value of plot_cost is         : 36.59809885753247 

 At row:180, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:180, column:120,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:120,the value of plot_cost is         : 36.8063042780305 

 At row:180, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:180, column:121,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:121,the value of plot_cost is         : 37.01531775893105 

 At row:180, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:180, column:122,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:122,the value of plot_cost is         : 37.22513930023412 

 At row:180, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:180, column:123,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:123,the value of plot_cost is         : 37.43576890193971 

 At row:180, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:180, column:124,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:124,the value of plot_cost is         : 37.647206564047806 

 At row:180, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:180, column:125,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:125,the value of plot_cost is         : 37.85945228655843 

 At row:180, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:180, column:126,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:126,the value of plot_cost is         : 38.072506069471565 

 At row:180, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:180, column:127,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:127,the value of plot_cost is         : 38.286367912787206 

 At row:180, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:180, column:128,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:128,the value of plot_cost is         : 38.50103781650537 

 At row:180, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:180, column:129,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:129,the value of plot_cost is         : 38.71651578062604 

 At row:180, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:180, column:130,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:130,the value of plot_cost is         : 38.932801805149225 

 At row:180, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:180, column:131,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:131,the value of plot_cost is         : 39.14989589007492 

 At row:180, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:180, column:132,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:132,the value of plot_cost is         : 39.367798035403155 

 At row:180, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:180, column:133,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:133,the value of plot_cost is         : 39.586508241133885 

 At row:180, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:180, column:134,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:134,the value of plot_cost is         : 39.80602650726715 

 At row:180, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:180, column:135,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:135,the value of plot_cost is         : 40.02635283380291 

 At row:180, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:180, column:136,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:136,the value of plot_cost is         : 40.247487220741185 

 At row:180, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:180, column:137,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:137,the value of plot_cost is         : 40.46942966808199 

 At row:180, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:180, column:138,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:138,the value of plot_cost is         : 40.69218017582529 

 At row:180, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:180, column:139,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:139,the value of plot_cost is         : 40.915738743971126 

 At row:180, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:180, column:140,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:140,the value of plot_cost is         : 41.14010537251946 

 At row:180, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:180, column:141,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:141,the value of plot_cost is         : 41.36528006147031 

 At row:180, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:180, column:142,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:142,the value of plot_cost is         : 41.59126281082368 

 At row:180, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:180, column:143,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:143,the value of plot_cost is         : 41.818053620579576 

 At row:180, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:180, column:144,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:144,the value of plot_cost is         : 42.04565249073797 

 At row:180, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:180, column:145,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:145,the value of plot_cost is         : 42.2740594212989 

 At row:180, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:180, column:146,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:146,the value of plot_cost is         : 42.50327441226233 

 At row:180, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:180, column:147,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:147,the value of plot_cost is         : 42.73329746362828 

 At row:180, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:180, column:148,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:148,the value of plot_cost is         : 42.964128575396735 

 At row:180, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:180, column:149,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:149,the value of plot_cost is         : 43.19576774756771 

 At row:180, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:180, column:150,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:150,the value of plot_cost is         : 43.428214980141206 

 At row:180, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:180, column:151,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:151,the value of plot_cost is         : 43.6614702731172 

 At row:180, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:180, column:152,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:152,the value of plot_cost is         : 43.89553362649573 

 At row:180, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:180, column:153,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:153,the value of plot_cost is         : 44.13040504027676 

 At row:180, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:180, column:154,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:154,the value of plot_cost is         : 44.36608451446033 

 At row:180, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:180, column:155,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:155,the value of plot_cost is         : 44.602572049046394 

 At row:180, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:180, column:156,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:156,the value of plot_cost is         : 44.83986764403499 

 At row:180, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:180, column:157,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:157,the value of plot_cost is         : 45.07797129942607 

 At row:180, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:180, column:158,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:158,the value of plot_cost is         : 45.31688301521969 

 At row:180, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:180, column:159,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:159,the value of plot_cost is         : 45.55660279141581 

 At row:180, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:180, column:160,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:160,the value of plot_cost is         : 45.79713062801444 

 At row:180, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:180, column:161,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:161,the value of plot_cost is         : 46.0384665250156 

 At row:180, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:180, column:162,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:162,the value of plot_cost is         : 46.28061048241928 

 At row:180, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:180, column:163,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:163,the value of plot_cost is         : 46.52356250022547 

 At row:180, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:180, column:164,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:164,the value of plot_cost is         : 46.76732257843416 

 At row:180, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:180, column:165,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:165,the value of plot_cost is         : 47.011890717045404 

 At row:180, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:180, column:166,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:166,the value of plot_cost is         : 47.25726691605913 

 At row:180, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:180, column:167,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:167,the value of plot_cost is         : 47.50345117547538 

 At row:180, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:180, column:168,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:168,the value of plot_cost is         : 47.75044349529414 

 At row:180, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:180, column:169,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:169,the value of plot_cost is         : 47.99824387551542 

 At row:180, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:180, column:170,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:170,the value of plot_cost is         : 48.24685231613921 

 At row:180, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:180, column:171,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:171,the value of plot_cost is         : 48.496268817165515 

 At row:180, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:180, column:172,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:172,the value of plot_cost is         : 48.74649337859434 

 At row:180, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:180, column:173,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:173,the value of plot_cost is         : 48.99752600042567 

 At row:180, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:180, column:174,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:174,the value of plot_cost is         : 49.24936668265955 

 At row:180, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:180, column:175,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:175,the value of plot_cost is         : 49.502015425295916 

 At row:180, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:180, column:176,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:176,the value of plot_cost is         : 49.755472228334796 

 At row:180, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:180, column:177,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:177,the value of plot_cost is         : 50.00973709177619 

 At row:180, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:180, column:178,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:178,the value of plot_cost is         : 50.26481001562011 

 At row:180, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:180, column:179,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:179,the value of plot_cost is         : 50.52069099986654 

 At row:180, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:180, column:180,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:180,the value of plot_cost is         : 50.77738004451547 

 At row:180, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:180, column:181,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:181,the value of plot_cost is         : 51.03487714956693 

 At row:180, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:180, column:182,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:182,the value of plot_cost is         : 51.2931823150209 

 At row:180, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:180, column:183,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:183,the value of plot_cost is         : 51.552295540877395 

 At row:180, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:180, column:184,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:184,the value of plot_cost is         : 51.812216827136396 

 At row:180, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:180, column:185,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:185,the value of plot_cost is         : 52.07294617379794 

 At row:180, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:180, column:186,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:186,the value of plot_cost is         : 52.33448358086197 

 At row:180, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:180, column:187,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:187,the value of plot_cost is         : 52.59682904832852 

 At row:180, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:180, column:188,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:188,the value of plot_cost is         : 52.85998257619759 

 At row:180, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:180, column:189,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:189,the value of plot_cost is         : 53.12394416446916 

 At row:180, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:180, column:190,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:190,the value of plot_cost is         : 53.38871381314325 

 At row:180, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:180, column:191,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:191,the value of plot_cost is         : 53.654291522219864 

 At row:180, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:180, column:192,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:192,the value of plot_cost is         : 53.92067729169898 

 At row:180, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:180, column:193,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:193,the value of plot_cost is         : 54.18787112158063 

 At row:180, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:180, column:194,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:194,the value of plot_cost is         : 54.45587301186479 

 At row:180, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:180, column:195,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:195,the value of plot_cost is         : 54.72468296255147 

 At row:180, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:180, column:196,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:196,the value of plot_cost is         : 54.99430097364065 

 At row:180, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:180, column:197,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:197,the value of plot_cost is         : 55.26472704513235 

 At row:180, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:180, column:198,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:198,the value of plot_cost is         : 55.53596117702657 

 At row:180, column:199,the value of plot_t0 is           : 3.0
 At row:180, column:199,the value of plot_t1 is           : 2.6180904522613067
 At row:180, column:199,the value of plot_cost is         : 55.80800336932329 

 At row:181, column:0,the value of plot_t0 is           : -1.0
 At row:181, column:0,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:0,the value of plot_cost is         : 18.22481506599762 

 At row:181, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:181, column:1,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:1,the value of plot_cost is         : 18.339539441644696 

 At row:181, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:181, column:2,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:2,the value of plot_cost is         : 18.45507187769429 

 At row:181, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:181, column:3,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:3,the value of plot_cost is         : 18.571412374146405 

 At row:181, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:181, column:4,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:4,the value of plot_cost is         : 18.68856093100103 

 At row:181, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:181, column:5,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:5,the value of plot_cost is         : 18.806517548258174 

 At row:181, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:181, column:6,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:6,the value of plot_cost is         : 18.925282225917826 

 At row:181, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:181, column:7,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:7,the value of plot_cost is         : 19.044854963979997 

 At row:181, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:181, column:8,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:8,the value of plot_cost is         : 19.165235762444684 

 At row:181, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:181, column:9,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:9,the value of plot_cost is         : 19.286424621311888 

 At row:181, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:181, column:10,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:10,the value of plot_cost is         : 19.408421540581596 

 At row:181, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:181, column:11,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:11,the value of plot_cost is         : 19.531226520253824 

 At row:181, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:181, column:12,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:12,the value of plot_cost is         : 19.65483956032857 

 At row:181, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:181, column:13,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:13,the value of plot_cost is         : 19.77926066080583 

 At row:181, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:181, column:14,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:14,the value of plot_cost is         : 19.904489821685605 

 At row:181, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:181, column:15,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:15,the value of plot_cost is         : 20.030527042967893 

 At row:181, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:181, column:16,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:16,the value of plot_cost is         : 20.15737232465271 

 At row:181, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:181, column:17,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:17,the value of plot_cost is         : 20.285025666740026 

 At row:181, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:181, column:18,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:18,the value of plot_cost is         : 20.413487069229866 

 At row:181, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:181, column:19,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:19,the value of plot_cost is         : 20.54275653212222 

 At row:181, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:181, column:20,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:20,the value of plot_cost is         : 20.67283405541708 

 At row:181, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:181, column:21,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:21,the value of plot_cost is         : 20.80371963911446 

 At row:181, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:181, column:22,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:22,the value of plot_cost is         : 20.93541328321436 

 At row:181, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:181, column:23,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:23,the value of plot_cost is         : 21.06791498771677 

 At row:181, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:181, column:24,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:24,the value of plot_cost is         : 21.201224752621695 

 At row:181, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:181, column:25,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:25,the value of plot_cost is         : 21.335342577929143 

 At row:181, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:181, column:26,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:26,the value of plot_cost is         : 21.470268463639098 

 At row:181, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:181, column:27,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:27,the value of plot_cost is         : 21.606002409751568 

 At row:181, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:181, column:28,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:28,the value of plot_cost is         : 21.742544416266558 

 At row:181, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:181, column:29,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:29,the value of plot_cost is         : 21.87989448318406 

 At row:181, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:181, column:30,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:30,the value of plot_cost is         : 22.01805261050407 

 At row:181, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:181, column:31,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:31,the value of plot_cost is         : 22.157018798226602 

 At row:181, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:181, column:32,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:32,the value of plot_cost is         : 22.296793046351645 

 At row:181, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:181, column:33,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:33,the value of plot_cost is         : 22.437375354879215 

 At row:181, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:181, column:34,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:34,the value of plot_cost is         : 22.57876572380929 

 At row:181, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:181, column:35,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:35,the value of plot_cost is         : 22.720964153141892 

 At row:181, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:181, column:36,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:36,the value of plot_cost is         : 22.863970642876996 

 At row:181, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:181, column:37,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:37,the value of plot_cost is         : 23.007785193014616 

 At row:181, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:181, column:38,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:38,the value of plot_cost is         : 23.15240780355476 

 At row:181, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:181, column:39,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:39,the value of plot_cost is         : 23.297838474497414 

 At row:181, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:181, column:40,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:40,the value of plot_cost is         : 23.444077205842575 

 At row:181, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:181, column:41,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:41,the value of plot_cost is         : 23.591123997590255 

 At row:181, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:181, column:42,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:42,the value of plot_cost is         : 23.73897884974045 

 At row:181, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:181, column:43,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:43,the value of plot_cost is         : 23.88764176229317 

 At row:181, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:181, column:44,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:44,the value of plot_cost is         : 24.0371127352484 

 At row:181, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:181, column:45,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:45,the value of plot_cost is         : 24.187391768606147 

 At row:181, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:181, column:46,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:46,the value of plot_cost is         : 24.338478862366404 

 At row:181, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:181, column:47,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:47,the value of plot_cost is         : 24.490374016529174 

 At row:181, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:181, column:48,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:48,the value of plot_cost is         : 24.643077231094466 

 At row:181, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:181, column:49,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:49,the value of plot_cost is         : 24.796588506062267 

 At row:181, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:181, column:50,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:50,the value of plot_cost is         : 24.95090784143259 

 At row:181, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:181, column:51,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:51,the value of plot_cost is         : 25.106035237205422 

 At row:181, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:181, column:52,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:52,the value of plot_cost is         : 25.261970693380768 

 At row:181, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:181, column:53,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:53,the value of plot_cost is         : 25.418714209958637 

 At row:181, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:181, column:54,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:54,the value of plot_cost is         : 25.57626578693901 

 At row:181, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:181, column:55,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:55,the value of plot_cost is         : 25.734625424321912 

 At row:181, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:181, column:56,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:56,the value of plot_cost is         : 25.89379312210732 

 At row:181, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:181, column:57,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:57,the value of plot_cost is         : 26.05376888029524 

 At row:181, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:181, column:58,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:58,the value of plot_cost is         : 26.214552698885687 

 At row:181, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:181, column:59,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:59,the value of plot_cost is         : 26.376144577878634 

 At row:181, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:181, column:60,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:60,the value of plot_cost is         : 26.538544517274104 

 At row:181, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:181, column:61,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:61,the value of plot_cost is         : 26.701752517072084 

 At row:181, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:181, column:62,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:62,the value of plot_cost is         : 26.865768577272593 

 At row:181, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:181, column:63,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:63,the value of plot_cost is         : 27.030592697875605 

 At row:181, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:181, column:64,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:64,the value of plot_cost is         : 27.196224878881132 

 At row:181, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:181, column:65,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:65,the value of plot_cost is         : 27.362665120289183 

 At row:181, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:181, column:66,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:66,the value of plot_cost is         : 27.529913422099742 

 At row:181, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:181, column:67,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:67,the value of plot_cost is         : 27.697969784312818 

 At row:181, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:181, column:68,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:68,the value of plot_cost is         : 27.86683420692841 

 At row:181, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:181, column:69,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:69,the value of plot_cost is         : 28.036506689946513 

 At row:181, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:181, column:70,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:70,the value of plot_cost is         : 28.206987233367133 

 At row:181, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:181, column:71,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:71,the value of plot_cost is         : 28.378275837190266 

 At row:181, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:181, column:72,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:72,the value of plot_cost is         : 28.55037250141592 

 At row:181, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:181, column:73,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:73,the value of plot_cost is         : 28.723277226044086 

 At row:181, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:181, column:74,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:74,the value of plot_cost is         : 28.89699001107477 

 At row:181, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:181, column:75,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:75,the value of plot_cost is         : 29.07151085650797 

 At row:181, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:181, column:76,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:76,the value of plot_cost is         : 29.246839762343676 

 At row:181, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:181, column:77,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:77,the value of plot_cost is         : 29.4229767285819 

 At row:181, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:181, column:78,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:78,the value of plot_cost is         : 29.599921755222645 

 At row:181, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:181, column:79,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:79,the value of plot_cost is         : 29.777674842265903 

 At row:181, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:181, column:80,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:80,the value of plot_cost is         : 29.956235989711672 

 At row:181, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:181, column:81,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:81,the value of plot_cost is         : 30.135605197559954 

 At row:181, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:181, column:82,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:82,the value of plot_cost is         : 30.315782465810756 

 At row:181, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:181, column:83,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:83,the value of plot_cost is         : 30.496767794464077 

 At row:181, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:181, column:84,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:84,the value of plot_cost is         : 30.678561183519907 

 At row:181, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:181, column:85,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:85,the value of plot_cost is         : 30.86116263297826 

 At row:181, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:181, column:86,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:86,the value of plot_cost is         : 31.04457214283912 

 At row:181, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:181, column:87,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:87,the value of plot_cost is         : 31.228789713102497 

 At row:181, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:181, column:88,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:88,the value of plot_cost is         : 31.413815343768395 

 At row:181, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:181, column:89,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:89,the value of plot_cost is         : 31.599649034836794 

 At row:181, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:181, column:90,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:90,the value of plot_cost is         : 31.786290786307717 

 At row:181, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:181, column:91,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:91,the value of plot_cost is         : 31.97374059818115 

 At row:181, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:181, column:92,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:92,the value of plot_cost is         : 32.16199847045711 

 At row:181, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:181, column:93,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:93,the value of plot_cost is         : 32.351064403135574 

 At row:181, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:181, column:94,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:94,the value of plot_cost is         : 32.540938396216546 

 At row:181, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:181, column:95,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:95,the value of plot_cost is         : 32.73162044970006 

 At row:181, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:181, column:96,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:96,the value of plot_cost is         : 32.92311056358607 

 At row:181, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:181, column:97,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:97,the value of plot_cost is         : 33.115408737874596 

 At row:181, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:181, column:98,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:98,the value of plot_cost is         : 33.30851497256564 

 At row:181, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:181, column:99,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:99,the value of plot_cost is         : 33.502429267659195 

 At row:181, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:181, column:100,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:100,the value of plot_cost is         : 33.69715162315527 

 At row:181, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:181, column:101,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:101,the value of plot_cost is         : 33.89268203905386 

 At row:181, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:181, column:102,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:102,the value of plot_cost is         : 34.08902051535496 

 At row:181, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:181, column:103,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:103,the value of plot_cost is         : 34.28616705205857 

 At row:181, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:181, column:104,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:104,the value of plot_cost is         : 34.48412164916472 

 At row:181, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:181, column:105,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:105,the value of plot_cost is         : 34.682884306673365 

 At row:181, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:181, column:106,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:106,the value of plot_cost is         : 34.88245502458454 

 At row:181, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:181, column:107,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:107,the value of plot_cost is         : 35.082833802898215 

 At row:181, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:181, column:108,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:108,the value of plot_cost is         : 35.284020641614404 

 At row:181, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:181, column:109,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:109,the value of plot_cost is         : 35.48601554073311 

 At row:181, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:181, column:110,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:110,the value of plot_cost is         : 35.688818500254335 

 At row:181, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:181, column:111,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:111,the value of plot_cost is         : 35.89242952017807 

 At row:181, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:181, column:112,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:112,the value of plot_cost is         : 36.09684860050432 

 At row:181, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:181, column:113,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:113,the value of plot_cost is         : 36.3020757412331 

 At row:181, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:181, column:114,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:114,the value of plot_cost is         : 36.50811094236438 

 At row:181, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:181, column:115,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:115,the value of plot_cost is         : 36.71495420389819 

 At row:181, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:181, column:116,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:116,the value of plot_cost is         : 36.922605525834506 

 At row:181, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:181, column:117,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:117,the value of plot_cost is         : 37.13106490817332 

 At row:181, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:181, column:118,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:118,the value of plot_cost is         : 37.34033235091468 

 At row:181, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:181, column:119,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:119,the value of plot_cost is         : 37.550407854058534 

 At row:181, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:181, column:120,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:120,the value of plot_cost is         : 37.7612914176049 

 At row:181, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:181, column:121,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:121,the value of plot_cost is         : 37.972983041553796 

 At row:181, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:181, column:122,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:122,the value of plot_cost is         : 38.185482725905196 

 At row:181, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:181, column:123,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:123,the value of plot_cost is         : 38.398790470659115 

 At row:181, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:181, column:124,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:124,the value of plot_cost is         : 38.61290627581556 

 At row:181, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:181, column:125,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:125,the value of plot_cost is         : 38.82783014137451 

 At row:181, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:181, column:126,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:126,the value of plot_cost is         : 39.043562067335984 

 At row:181, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:181, column:127,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:127,the value of plot_cost is         : 39.26010205369995 

 At row:181, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:181, column:128,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:128,the value of plot_cost is         : 39.477450100466456 

 At row:181, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:181, column:129,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:129,the value of plot_cost is         : 39.69560620763546 

 At row:181, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:181, column:130,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:130,the value of plot_cost is         : 39.914570375206985 

 At row:181, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:181, column:131,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:131,the value of plot_cost is         : 40.13434260318102 

 At row:181, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:181, column:132,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:132,the value of plot_cost is         : 40.354922891557585 

 At row:181, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:181, column:133,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:133,the value of plot_cost is         : 40.57631124033665 

 At row:181, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:181, column:134,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:134,the value of plot_cost is         : 40.79850764951824 

 At row:181, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:181, column:135,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:135,the value of plot_cost is         : 41.021512119102354 

 At row:181, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:181, column:136,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:136,the value of plot_cost is         : 41.245324649088964 

 At row:181, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:181, column:137,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:137,the value of plot_cost is         : 41.46994523947809 

 At row:181, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:181, column:138,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:138,the value of plot_cost is         : 41.69537389026974 

 At row:181, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:181, column:139,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:139,the value of plot_cost is         : 41.92161060146391 

 At row:181, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:181, column:140,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:140,the value of plot_cost is         : 42.14865537306057 

 At row:181, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:181, column:141,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:141,the value of plot_cost is         : 42.376508205059764 

 At row:181, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:181, column:142,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:142,the value of plot_cost is         : 42.60516909746147 

 At row:181, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:181, column:143,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:143,the value of plot_cost is         : 42.83463805026569 

 At row:181, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:181, column:144,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:144,the value of plot_cost is         : 43.06491506347244 

 At row:181, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:181, column:145,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:145,the value of plot_cost is         : 43.2960001370817 

 At row:181, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:181, column:146,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:146,the value of plot_cost is         : 43.52789327109346 

 At row:181, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:181, column:147,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:147,the value of plot_cost is         : 43.760594465507744 

 At row:181, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:181, column:148,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:148,the value of plot_cost is         : 43.99410372032454 

 At row:181, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:181, column:149,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:149,the value of plot_cost is         : 44.228421035543846 

 At row:181, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:181, column:150,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:150,the value of plot_cost is         : 44.46354641116568 

 At row:181, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:181, column:151,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:151,the value of plot_cost is         : 44.69947984719002 

 At row:181, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:181, column:152,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:152,the value of plot_cost is         : 44.93622134361687 

 At row:181, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:181, column:153,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:153,the value of plot_cost is         : 45.17377090044624 

 At row:181, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:181, column:154,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:154,the value of plot_cost is         : 45.412128517678134 

 At row:181, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:181, column:155,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:155,the value of plot_cost is         : 45.651294195312545 

 At row:181, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:181, column:156,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:156,the value of plot_cost is         : 45.89126793334947 

 At row:181, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:181, column:157,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:157,the value of plot_cost is         : 46.13204973178889 

 At row:181, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:181, column:158,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:158,the value of plot_cost is         : 46.373639590630845 

 At row:181, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:181, column:159,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:159,the value of plot_cost is         : 46.61603750987531 

 At row:181, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:181, column:160,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:160,the value of plot_cost is         : 46.85924348952228 

 At row:181, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:181, column:161,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:161,the value of plot_cost is         : 47.10325752957178 

 At row:181, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:181, column:162,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:162,the value of plot_cost is         : 47.348079630023776 

 At row:181, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:181, column:163,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:163,the value of plot_cost is         : 47.5937097908783 

 At row:181, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:181, column:164,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:164,the value of plot_cost is         : 47.84014801213535 

 At row:181, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:181, column:165,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:165,the value of plot_cost is         : 48.087394293794915 

 At row:181, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:181, column:166,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:166,the value of plot_cost is         : 48.33544863585697 

 At row:181, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:181, column:167,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:167,the value of plot_cost is         : 48.58431103832155 

 At row:181, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:181, column:168,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:168,the value of plot_cost is         : 48.83398150118866 

 At row:181, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:181, column:169,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:169,the value of plot_cost is         : 49.08446002445827 

 At row:181, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:181, column:170,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:170,the value of plot_cost is         : 49.3357466081304 

 At row:181, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:181, column:171,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:171,the value of plot_cost is         : 49.587841252205045 

 At row:181, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:181, column:172,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:172,the value of plot_cost is         : 49.840743956682196 

 At row:181, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:181, column:173,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:173,the value of plot_cost is         : 50.094454721561874 

 At row:181, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:181, column:174,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:174,the value of plot_cost is         : 50.348973546844064 

 At row:181, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:181, column:175,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:175,the value of plot_cost is         : 50.60430043252878 

 At row:181, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:181, column:176,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:176,the value of plot_cost is         : 50.860435378616 

 At row:181, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:181, column:177,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:177,the value of plot_cost is         : 51.11737838510573 

 At row:181, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:181, column:178,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:178,the value of plot_cost is         : 51.37512945199798 

 At row:181, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:181, column:179,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:179,the value of plot_cost is         : 51.633688579292745 

 At row:181, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:181, column:180,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:180,the value of plot_cost is         : 51.893055766990024 

 At row:181, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:181, column:181,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:181,the value of plot_cost is         : 52.153231015089816 

 At row:181, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:181, column:182,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:182,the value of plot_cost is         : 52.41421432359213 

 At row:181, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:181, column:183,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:183,the value of plot_cost is         : 52.67600569249694 

 At row:181, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:181, column:184,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:184,the value of plot_cost is         : 52.93860512180429 

 At row:181, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:181, column:185,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:185,the value of plot_cost is         : 53.20201261151416 

 At row:181, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:181, column:186,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:186,the value of plot_cost is         : 53.46622816162653 

 At row:181, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:181, column:187,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:187,the value of plot_cost is         : 53.731251772141405 

 At row:181, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:181, column:188,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:188,the value of plot_cost is         : 53.99708344305881 

 At row:181, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:181, column:189,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:189,the value of plot_cost is         : 54.263723174378725 

 At row:181, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:181, column:190,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:190,the value of plot_cost is         : 54.53117096610115 

 At row:181, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:181, column:191,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:191,the value of plot_cost is         : 54.7994268182261 

 At row:181, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:181, column:192,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:192,the value of plot_cost is         : 55.06849073075356 

 At row:181, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:181, column:193,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:193,the value of plot_cost is         : 55.338362703683536 

 At row:181, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:181, column:194,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:194,the value of plot_cost is         : 55.60904273701604 

 At row:181, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:181, column:195,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:195,the value of plot_cost is         : 55.88053083075104 

 At row:181, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:181, column:196,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:196,the value of plot_cost is         : 56.15282698488856 

 At row:181, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:181, column:197,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:197,the value of plot_cost is         : 56.425931199428604 

 At row:181, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:181, column:198,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:198,the value of plot_cost is         : 56.69984347437115 

 At row:181, column:199,the value of plot_t0 is           : 3.0
 At row:181, column:199,the value of plot_t1 is           : 2.6381909547738696
 At row:181, column:199,the value of plot_cost is         : 56.974563809716216 

 At row:182, column:0,the value of plot_t0 is           : -1.0
 At row:182, column:0,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:0,the value of plot_cost is         : 18.871007694610885 

 At row:182, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:182, column:1,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:1,the value of plot_cost is         : 18.988410213306295 

 At row:182, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:182, column:2,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:2,the value of plot_cost is         : 19.10662079240423 

 At row:182, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:182, column:3,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:3,the value of plot_cost is         : 19.22563943190467 

 At row:182, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:182, column:4,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:4,the value of plot_cost is         : 19.345466131807637 

 At row:182, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:182, column:5,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:5,the value of plot_cost is         : 19.46610089211312 

 At row:182, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:182, column:6,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:6,the value of plot_cost is         : 19.587543712821105 

 At row:182, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:182, column:7,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:7,the value of plot_cost is         : 19.70979459393161 

 At row:182, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:182, column:8,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:8,the value of plot_cost is         : 19.832853535444634 

 At row:182, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:182, column:9,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:9,the value of plot_cost is         : 19.956720537360166 

 At row:182, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:182, column:10,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:10,the value of plot_cost is         : 20.081395599678217 

 At row:182, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:182, column:11,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:11,the value of plot_cost is         : 20.20687872239878 

 At row:182, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:182, column:12,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:12,the value of plot_cost is         : 20.333169905521864 

 At row:182, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:182, column:13,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:13,the value of plot_cost is         : 20.460269149047463 

 At row:182, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:182, column:14,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:14,the value of plot_cost is         : 20.588176452975574 

 At row:182, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:182, column:15,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:15,the value of plot_cost is         : 20.716891817306195 

 At row:182, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:182, column:16,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:16,the value of plot_cost is         : 20.846415242039345 

 At row:182, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:182, column:17,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:17,the value of plot_cost is         : 20.976746727174998 

 At row:182, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:182, column:18,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:18,the value of plot_cost is         : 21.10788627271317 

 At row:182, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:182, column:19,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:19,the value of plot_cost is         : 21.239833878653858 

 At row:182, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:182, column:20,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:20,the value of plot_cost is         : 21.37258954499706 

 At row:182, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:182, column:21,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:21,the value of plot_cost is         : 21.50615327174277 

 At row:182, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:182, column:22,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:22,the value of plot_cost is         : 21.640525058891004 

 At row:182, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:182, column:23,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:23,the value of plot_cost is         : 21.775704906441753 

 At row:182, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:182, column:24,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:24,the value of plot_cost is         : 21.911692814395014 

 At row:182, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:182, column:25,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:25,the value of plot_cost is         : 22.048488782750795 

 At row:182, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:182, column:26,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:26,the value of plot_cost is         : 22.186092811509084 

 At row:182, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:182, column:27,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:27,the value of plot_cost is         : 22.324504900669893 

 At row:182, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:182, column:28,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:28,the value of plot_cost is         : 22.463725050233222 

 At row:182, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:182, column:29,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:29,the value of plot_cost is         : 22.60375326019906 

 At row:182, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:182, column:30,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:30,the value of plot_cost is         : 22.744589530567406 

 At row:182, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:182, column:31,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:31,the value of plot_cost is         : 22.886233861338276 

 At row:182, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:182, column:32,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:32,the value of plot_cost is         : 23.028686252511655 

 At row:182, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:182, column:33,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:33,the value of plot_cost is         : 23.171946704087553 

 At row:182, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:182, column:34,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:34,the value of plot_cost is         : 23.316015216065967 

 At row:182, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:182, column:35,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:35,the value of plot_cost is         : 23.460891788446904 

 At row:182, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:182, column:36,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:36,the value of plot_cost is         : 23.606576421230343 

 At row:182, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:182, column:37,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:37,the value of plot_cost is         : 23.7530691144163 

 At row:182, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:182, column:38,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:38,the value of plot_cost is         : 23.900369868004777 

 At row:182, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:182, column:39,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:39,the value of plot_cost is         : 24.048478681995764 

 At row:182, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:182, column:40,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:40,the value of plot_cost is         : 24.197395556389267 

 At row:182, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:182, column:41,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:41,the value of plot_cost is         : 24.347120491185283 

 At row:182, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:182, column:42,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:42,the value of plot_cost is         : 24.49765348638381 

 At row:182, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:182, column:43,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:43,the value of plot_cost is         : 24.648994541984866 

 At row:182, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:182, column:44,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:44,the value of plot_cost is         : 24.801143657988426 

 At row:182, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:182, column:45,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:45,the value of plot_cost is         : 24.954100834394513 

 At row:182, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:182, column:46,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:46,the value of plot_cost is         : 25.107866071203105 

 At row:182, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:182, column:47,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:47,the value of plot_cost is         : 25.262439368414213 

 At row:182, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:182, column:48,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:48,the value of plot_cost is         : 25.417820726027845 

 At row:182, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:182, column:49,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:49,the value of plot_cost is         : 25.57401014404398 

 At row:182, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:182, column:50,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:50,the value of plot_cost is         : 25.73100762246263 

 At row:182, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:182, column:51,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:51,the value of plot_cost is         : 25.8888131612838 

 At row:182, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:182, column:52,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:52,the value of plot_cost is         : 26.047426760507488 

 At row:182, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:182, column:53,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:53,the value of plot_cost is         : 26.20684842013369 

 At row:182, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:182, column:54,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:54,the value of plot_cost is         : 26.3670781401624 

 At row:182, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:182, column:55,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:55,the value of plot_cost is         : 26.528115920593635 

 At row:182, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:182, column:56,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:56,the value of plot_cost is         : 26.689961761427377 

 At row:182, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:182, column:57,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:57,the value of plot_cost is         : 26.85261566266364 

 At row:182, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:182, column:58,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:58,the value of plot_cost is         : 27.01607762430242 

 At row:182, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:182, column:59,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:59,the value of plot_cost is         : 27.180347646343705 

 At row:182, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:182, column:60,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:60,the value of plot_cost is         : 27.345425728787507 

 At row:182, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:182, column:61,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:61,the value of plot_cost is         : 27.511311871633826 

 At row:182, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:182, column:62,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:62,the value of plot_cost is         : 27.678006074882667 

 At row:182, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:182, column:63,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:63,the value of plot_cost is         : 27.84550833853402 

 At row:182, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:182, column:64,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:64,the value of plot_cost is         : 28.01381866258788 

 At row:182, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:182, column:65,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:65,the value of plot_cost is         : 28.182937047044266 

 At row:182, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:182, column:66,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:66,the value of plot_cost is         : 28.35286349190316 

 At row:182, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:182, column:67,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:67,the value of plot_cost is         : 28.523597997164575 

 At row:182, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:182, column:68,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:68,the value of plot_cost is         : 28.695140562828506 

 At row:182, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:182, column:69,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:69,the value of plot_cost is         : 28.867491188894938 

 At row:182, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:182, column:70,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:70,the value of plot_cost is         : 29.040649875363897 

 At row:182, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:182, column:71,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:71,the value of plot_cost is         : 29.214616622235365 

 At row:182, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:182, column:72,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:72,the value of plot_cost is         : 29.389391429509356 

 At row:182, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:182, column:73,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:73,the value of plot_cost is         : 29.564974297185852 

 At row:182, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:182, column:74,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:74,the value of plot_cost is         : 29.74136522526487 

 At row:182, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:182, column:75,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:75,the value of plot_cost is         : 29.91856421374641 

 At row:182, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:182, column:76,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:76,the value of plot_cost is         : 30.09657126263045 

 At row:182, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:182, column:77,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:77,the value of plot_cost is         : 30.275386371917012 

 At row:182, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:182, column:78,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:78,the value of plot_cost is         : 30.455009541606092 

 At row:182, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:182, column:79,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:79,the value of plot_cost is         : 30.63544077169768 

 At row:182, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:182, column:80,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:80,the value of plot_cost is         : 30.816680062191786 

 At row:182, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:182, column:81,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:81,the value of plot_cost is         : 30.998727413088407 

 At row:182, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:182, column:82,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:82,the value of plot_cost is         : 31.181582824387547 

 At row:182, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:182, column:83,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:83,the value of plot_cost is         : 31.365246296089204 

 At row:182, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:182, column:84,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:84,the value of plot_cost is         : 31.549717828193366 

 At row:182, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:182, column:85,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:85,the value of plot_cost is         : 31.734997420700054 

 At row:182, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:182, column:86,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:86,the value of plot_cost is         : 31.92108507360925 

 At row:182, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:182, column:87,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:87,the value of plot_cost is         : 32.10798078692096 

 At row:182, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:182, column:88,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:88,the value of plot_cost is         : 32.295684560635195 

 At row:182, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:182, column:89,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:89,the value of plot_cost is         : 32.48419639475193 

 At row:182, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:182, column:90,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:90,the value of plot_cost is         : 32.67351628927119 

 At row:182, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:182, column:91,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:91,the value of plot_cost is         : 32.863644244192955 

 At row:182, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:182, column:92,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:92,the value of plot_cost is         : 33.05458025951725 

 At row:182, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:182, column:93,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:93,the value of plot_cost is         : 33.246324335244054 

 At row:182, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:182, column:94,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:94,the value of plot_cost is         : 33.43887647137337 

 At row:182, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:182, column:95,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:95,the value of plot_cost is         : 33.63223666790521 

 At row:182, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:182, column:96,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:96,the value of plot_cost is         : 33.82640492483956 

 At row:182, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:182, column:97,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:97,the value of plot_cost is         : 34.02138124217642 

 At row:182, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:182, column:98,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:98,the value of plot_cost is         : 34.2171656199158 

 At row:182, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:182, column:99,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:99,the value of plot_cost is         : 34.413758058057695 

 At row:182, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:182, column:100,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:100,the value of plot_cost is         : 34.611158556602106 

 At row:182, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:182, column:101,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:101,the value of plot_cost is         : 34.80936711554903 

 At row:182, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:182, column:102,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:102,the value of plot_cost is         : 35.008383734898466 

 At row:182, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:182, column:103,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:103,the value of plot_cost is         : 35.208208414650414 

 At row:182, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:182, column:104,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:104,the value of plot_cost is         : 35.4088411548049 

 At row:182, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:182, column:105,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:105,the value of plot_cost is         : 35.61028195536188 

 At row:182, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:182, column:106,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:106,the value of plot_cost is         : 35.81253081632138 

 At row:182, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:182, column:107,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:107,the value of plot_cost is         : 36.01558773768338 

 At row:182, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:182, column:108,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:108,the value of plot_cost is         : 36.21945271944792 

 At row:182, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:182, column:109,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:109,the value of plot_cost is         : 36.42412576161496 

 At row:182, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:182, column:110,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:110,the value of plot_cost is         : 36.629606864184524 

 At row:182, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:182, column:111,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:111,the value of plot_cost is         : 36.8358960271566 

 At row:182, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:182, column:112,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:112,the value of plot_cost is         : 37.04299325053119 

 At row:182, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:182, column:113,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:113,the value of plot_cost is         : 37.2508985343083 

 At row:182, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:182, column:114,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:114,the value of plot_cost is         : 37.45961187848791 

 At row:182, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:182, column:115,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:115,the value of plot_cost is         : 37.66913328307005 

 At row:182, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:182, column:116,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:116,the value of plot_cost is         : 37.8794627480547 

 At row:182, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:182, column:117,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:117,the value of plot_cost is         : 38.090600273441865 

 At row:182, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:182, column:118,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:118,the value of plot_cost is         : 38.30254585923155 

 At row:182, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:182, column:119,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:119,the value of plot_cost is         : 38.51529950542375 

 At row:182, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:182, column:120,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:120,the value of plot_cost is         : 38.72886121201845 

 At row:182, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:182, column:121,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:121,the value of plot_cost is         : 38.94323097901567 

 At row:182, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:182, column:122,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:122,the value of plot_cost is         : 39.15840880641542 

 At row:182, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:182, column:123,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:123,the value of plot_cost is         : 39.37439469421767 

 At row:182, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:182, column:124,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:124,the value of plot_cost is         : 39.591188642422445 

 At row:182, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:182, column:125,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:125,the value of plot_cost is         : 39.80879065102973 

 At row:182, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:182, column:126,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:126,the value of plot_cost is         : 40.02720072003953 

 At row:182, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:182, column:127,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:127,the value of plot_cost is         : 40.24641884945185 

 At row:182, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:182, column:128,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:128,the value of plot_cost is         : 40.466445039266674 

 At row:182, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:182, column:129,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:129,the value of plot_cost is         : 40.68727928948403 

 At row:182, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:182, column:130,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:130,the value of plot_cost is         : 40.908921600103895 

 At row:182, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:182, column:131,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:131,the value of plot_cost is         : 41.13137197112626 

 At row:182, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:182, column:132,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:132,the value of plot_cost is         : 41.35463040255116 

 At row:182, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:182, column:133,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:133,the value of plot_cost is         : 41.57869689437856 

 At row:182, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:182, column:134,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:134,the value of plot_cost is         : 41.80357144660849 

 At row:182, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:182, column:135,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:135,the value of plot_cost is         : 42.029254059240934 

 At row:182, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:182, column:136,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:136,the value of plot_cost is         : 42.25574473227587 

 At row:182, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:182, column:137,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:137,the value of plot_cost is         : 42.48304346571334 

 At row:182, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:182, column:138,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:138,the value of plot_cost is         : 42.71115025955333 

 At row:182, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:182, column:139,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:139,the value of plot_cost is         : 42.94006511379583 

 At row:182, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:182, column:140,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:140,the value of plot_cost is         : 43.16978802844084 

 At row:182, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:182, column:141,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:141,the value of plot_cost is         : 43.40031900348836 

 At row:182, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:182, column:142,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:142,the value of plot_cost is         : 43.631658038938404 

 At row:182, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:182, column:143,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:143,the value of plot_cost is         : 43.86380513479096 

 At row:182, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:182, column:144,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:144,the value of plot_cost is         : 44.096760291046046 

 At row:182, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:182, column:145,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:145,the value of plot_cost is         : 44.330523507703624 

 At row:182, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:182, column:146,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:146,the value of plot_cost is         : 44.56509478476374 

 At row:182, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:182, column:147,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:147,the value of plot_cost is         : 44.80047412222635 

 At row:182, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:182, column:148,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:148,the value of plot_cost is         : 45.03666152009148 

 At row:182, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:182, column:149,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:149,the value of plot_cost is         : 45.27365697835912 

 At row:182, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:182, column:150,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:150,the value of plot_cost is         : 45.5114604970293 

 At row:182, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:182, column:151,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:151,the value of plot_cost is         : 45.75007207610197 

 At row:182, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:182, column:152,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:152,the value of plot_cost is         : 45.98949171557716 

 At row:182, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:182, column:153,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:153,the value of plot_cost is         : 46.229719415454866 

 At row:182, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:182, column:154,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:154,the value of plot_cost is         : 46.470755175735086 

 At row:182, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:182, column:155,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:155,the value of plot_cost is         : 46.71259899641784 

 At row:182, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:182, column:156,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:156,the value of plot_cost is         : 46.95525087750309 

 At row:182, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:182, column:157,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:157,the value of plot_cost is         : 47.198710818990854 

 At row:182, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:182, column:158,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:158,the value of plot_cost is         : 47.44297882088114 

 At row:182, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:182, column:159,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:159,the value of plot_cost is         : 47.68805488317395 

 At row:182, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:182, column:160,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:160,the value of plot_cost is         : 47.93393900586925 

 At row:182, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:182, column:161,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:161,the value of plot_cost is         : 48.18063118896709 

 At row:182, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:182, column:162,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:162,the value of plot_cost is         : 48.42813143246743 

 At row:182, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:182, column:163,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:163,the value of plot_cost is         : 48.676439736370284 

 At row:182, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:182, column:164,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:164,the value of plot_cost is         : 48.925556100675664 

 At row:182, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:182, column:165,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:165,the value of plot_cost is         : 49.175480525383556 

 At row:182, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:182, column:166,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:166,the value of plot_cost is         : 49.42621301049397 

 At row:182, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:182, column:167,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:167,the value of plot_cost is         : 49.67775355600688 

 At row:182, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:182, column:168,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:168,the value of plot_cost is         : 49.930102161922306 

 At row:182, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:182, column:169,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:169,the value of plot_cost is         : 50.183258828240255 

 At row:182, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:182, column:170,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:170,the value of plot_cost is         : 50.437223554960724 

 At row:182, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:182, column:171,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:171,the value of plot_cost is         : 50.69199634208371 

 At row:182, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:182, column:172,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:172,the value of plot_cost is         : 50.947577189609206 

 At row:182, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:182, column:173,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:173,the value of plot_cost is         : 51.20396609753721 

 At row:182, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:182, column:174,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:174,the value of plot_cost is         : 51.46116306586774 

 At row:182, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:182, column:175,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:175,the value of plot_cost is         : 51.71916809460078 

 At row:182, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:182, column:176,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:176,the value of plot_cost is         : 51.97798118373635 

 At row:182, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:182, column:177,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:177,the value of plot_cost is         : 52.2376023332744 

 At row:182, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:182, column:178,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:178,the value of plot_cost is         : 52.498031543214985 

 At row:182, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:182, column:179,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:179,the value of plot_cost is         : 52.7592688135581 

 At row:182, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:182, column:180,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:180,the value of plot_cost is         : 53.02131414430371 

 At row:182, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:182, column:181,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:181,the value of plot_cost is         : 53.28416753545184 

 At row:182, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:182, column:182,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:182,the value of plot_cost is         : 53.54782898700248 

 At row:182, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:182, column:183,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:183,the value of plot_cost is         : 53.81229849895565 

 At row:182, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:182, column:184,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:184,the value of plot_cost is         : 54.07757607131133 

 At row:182, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:182, column:185,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:185,the value of plot_cost is         : 54.34366170406952 

 At row:182, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:182, column:186,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:186,the value of plot_cost is         : 54.61055539723023 

 At row:182, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:182, column:187,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:187,the value of plot_cost is         : 54.878257150793445 

 At row:182, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:182, column:188,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:188,the value of plot_cost is         : 55.14676696475917 

 At row:182, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:182, column:189,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:189,the value of plot_cost is         : 55.41608483912743 

 At row:182, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:182, column:190,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:190,the value of plot_cost is         : 55.686210773898196 

 At row:182, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:182, column:191,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:191,the value of plot_cost is         : 55.95714476907148 

 At row:182, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:182, column:192,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:192,the value of plot_cost is         : 56.228886824647276 

 At row:182, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:182, column:193,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:193,the value of plot_cost is         : 56.50143694062559 

 At row:182, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:182, column:194,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:194,the value of plot_cost is         : 56.774795117006406 

 At row:182, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:182, column:195,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:195,the value of plot_cost is         : 57.048961353789764 

 At row:182, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:182, column:196,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:196,the value of plot_cost is         : 57.32393565097563 

 At row:182, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:182, column:197,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:197,the value of plot_cost is         : 57.599718008564 

 At row:182, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:182, column:198,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:198,the value of plot_cost is         : 57.87630842655487 

 At row:182, column:199,the value of plot_t0 is           : 3.0
 At row:182, column:199,the value of plot_t1 is           : 2.658291457286432
 At row:182, column:199,the value of plot_cost is         : 58.15370690494829 

 At row:183, column:0,the value of plot_t0 is           : -1.0
 At row:183, column:0,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:0,the value of plot_cost is         : 19.52978297806332 

 At row:183, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:183, column:1,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:1,the value of plot_cost is         : 19.64986363980707 

 At row:183, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:183, column:2,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:2,the value of plot_cost is         : 19.770752361953335 

 At row:183, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:183, column:3,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:3,the value of plot_cost is         : 19.892449144502116 

 At row:183, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:183, column:4,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:4,the value of plot_cost is         : 20.014953987453413 

 At row:183, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:183, column:5,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:5,the value of plot_cost is         : 20.138266890807234 

 At row:183, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:183, column:6,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:6,the value of plot_cost is         : 20.262387854563556 

 At row:183, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:183, column:7,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:7,the value of plot_cost is         : 20.387316878722398 

 At row:183, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:183, column:8,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:8,the value of plot_cost is         : 20.513053963283756 

 At row:183, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:183, column:9,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:9,the value of plot_cost is         : 20.639599108247626 

 At row:183, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:183, column:10,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:10,the value of plot_cost is         : 20.766952313614013 

 At row:183, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:183, column:11,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:11,the value of plot_cost is         : 20.895113579382908 

 At row:183, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:183, column:12,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:12,the value of plot_cost is         : 21.024082905554327 

 At row:183, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:183, column:13,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:13,the value of plot_cost is         : 21.15386029212826 

 At row:183, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:183, column:14,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:14,the value of plot_cost is         : 21.284445739104708 

 At row:183, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:183, column:15,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:15,the value of plot_cost is         : 21.415839246483667 

 At row:183, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:183, column:16,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:16,the value of plot_cost is         : 21.54804081426515 

 At row:183, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:183, column:17,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:17,the value of plot_cost is         : 21.68105044244914 

 At row:183, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:183, column:18,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:18,the value of plot_cost is         : 21.814868131035652 

 At row:183, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:183, column:19,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:19,the value of plot_cost is         : 21.949493880024676 

 At row:183, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:183, column:20,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:20,the value of plot_cost is         : 22.084927689416208 

 At row:183, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:183, column:21,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:21,the value of plot_cost is         : 22.221169559210264 

 At row:183, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:183, column:22,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:22,the value of plot_cost is         : 22.358219489406824 

 At row:183, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:183, column:23,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:23,the value of plot_cost is         : 22.496077480005916 

 At row:183, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:183, column:24,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:24,the value of plot_cost is         : 22.63474353100751 

 At row:183, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:183, column:25,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:25,the value of plot_cost is         : 22.77421764241163 

 At row:183, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:183, column:26,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:26,the value of plot_cost is         : 22.914499814218253 

 At row:183, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:183, column:27,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:27,the value of plot_cost is         : 23.055590046427398 

 At row:183, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:183, column:28,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:28,the value of plot_cost is         : 23.197488339039058 

 At row:183, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:183, column:29,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:29,the value of plot_cost is         : 23.34019469205323 

 At row:183, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:183, column:30,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:30,the value of plot_cost is         : 23.483709105469917 

 At row:183, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:183, column:31,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:31,the value of plot_cost is         : 23.628031579289118 

 At row:183, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:183, column:32,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:32,the value of plot_cost is         : 23.77316211351083 

 At row:183, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:183, column:33,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:33,the value of plot_cost is         : 23.919100708135073 

 At row:183, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:183, column:34,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:34,the value of plot_cost is         : 24.065847363161822 

 At row:183, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:183, column:35,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:35,the value of plot_cost is         : 24.21340207859109 

 At row:183, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:183, column:36,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:36,the value of plot_cost is         : 24.361764854422866 

 At row:183, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:183, column:37,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:37,the value of plot_cost is         : 24.510935690657156 

 At row:183, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:183, column:38,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:38,the value of plot_cost is         : 24.660914587293973 

 At row:183, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:183, column:39,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:39,the value of plot_cost is         : 24.811701544333296 

 At row:183, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:183, column:40,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:40,the value of plot_cost is         : 24.96329656177513 

 At row:183, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:183, column:41,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:41,the value of plot_cost is         : 25.115699639619482 

 At row:183, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:183, column:42,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:42,the value of plot_cost is         : 25.268910777866353 

 At row:183, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:183, column:43,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:43,the value of plot_cost is         : 25.42292997651574 

 At row:183, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:183, column:44,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:44,the value of plot_cost is         : 25.57775723556764 

 At row:183, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:183, column:45,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:45,the value of plot_cost is         : 25.73339255502206 

 At row:183, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:183, column:46,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:46,the value of plot_cost is         : 25.88983593487899 

 At row:183, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:183, column:47,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:47,the value of plot_cost is         : 26.04708737513843 

 At row:183, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:183, column:48,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:48,the value of plot_cost is         : 26.205146875800395 

 At row:183, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:183, column:49,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:49,the value of plot_cost is         : 26.36401443686487 

 At row:183, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:183, column:50,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:50,the value of plot_cost is         : 26.52369005833186 

 At row:183, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:183, column:51,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:51,the value of plot_cost is         : 26.68417374020136 

 At row:183, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:183, column:52,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:52,the value of plot_cost is         : 26.845465482473383 

 At row:183, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:183, column:53,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:53,the value of plot_cost is         : 27.00756528514792 

 At row:183, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:183, column:54,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:54,the value of plot_cost is         : 27.170473148224964 

 At row:183, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:183, column:55,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:55,the value of plot_cost is         : 27.334189071704543 

 At row:183, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:183, column:56,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:56,the value of plot_cost is         : 27.49871305558662 

 At row:183, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:183, column:57,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:57,the value of plot_cost is         : 27.66404509987121 

 At row:183, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:183, column:58,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:58,the value of plot_cost is         : 27.83018520455833 

 At row:183, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:183, column:59,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:59,the value of plot_cost is         : 27.997133369647948 

 At row:183, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:183, column:60,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:60,the value of plot_cost is         : 28.16488959514009 

 At row:183, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:183, column:61,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:61,the value of plot_cost is         : 28.333453881034742 

 At row:183, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:183, column:62,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:62,the value of plot_cost is         : 28.502826227331923 

 At row:183, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:183, column:63,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:63,the value of plot_cost is         : 28.673006634031605 

 At row:183, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:183, column:64,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:64,the value of plot_cost is         : 28.843995101133803 

 At row:183, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:183, column:65,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:65,the value of plot_cost is         : 29.015791628638524 

 At row:183, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:183, column:66,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:66,the value of plot_cost is         : 29.188396216545755 

 At row:183, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:183, column:67,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:67,the value of plot_cost is         : 29.361808864855504 

 At row:183, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:183, column:68,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:68,the value of plot_cost is         : 29.536029573567767 

 At row:183, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:183, column:69,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:69,the value of plot_cost is         : 29.71105834268254 

 At row:183, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:183, column:70,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:70,the value of plot_cost is         : 29.886895172199832 

 At row:183, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:183, column:71,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:71,the value of plot_cost is         : 30.063540062119635 

 At row:183, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:183, column:72,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:72,the value of plot_cost is         : 30.240993012441965 

 At row:183, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:183, column:73,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:73,the value of plot_cost is         : 30.419254023166797 

 At row:183, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:183, column:74,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:74,the value of plot_cost is         : 30.598323094294148 

 At row:183, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:183, column:75,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:75,the value of plot_cost is         : 30.778200225824026 

 At row:183, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:183, column:76,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:76,the value of plot_cost is         : 30.958885417756402 

 At row:183, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:183, column:77,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:77,the value of plot_cost is         : 31.140378670091298 

 At row:183, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:183, column:78,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:78,the value of plot_cost is         : 31.322679982828717 

 At row:183, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:183, column:79,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:79,the value of plot_cost is         : 31.50578935596864 

 At row:183, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:183, column:80,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:80,the value of plot_cost is         : 31.68970678951108 

 At row:183, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:183, column:81,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:81,the value of plot_cost is         : 31.874432283456038 

 At row:183, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:183, column:82,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:82,the value of plot_cost is         : 32.05996583780352 

 At row:183, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:183, column:83,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:83,the value of plot_cost is         : 32.2463074525535 

 At row:183, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:183, column:84,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:84,the value of plot_cost is         : 32.433457127706 

 At row:183, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:183, column:85,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:85,the value of plot_cost is         : 32.62141486326102 

 At row:183, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:183, column:86,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:86,the value of plot_cost is         : 32.81018065921856 

 At row:183, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:183, column:87,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:87,the value of plot_cost is         : 32.99975451557861 

 At row:183, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:183, column:88,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:88,the value of plot_cost is         : 33.19013643234117 

 At row:183, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:183, column:89,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:89,the value of plot_cost is         : 33.38132640950625 

 At row:183, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:183, column:90,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:90,the value of plot_cost is         : 33.573324447073844 

 At row:183, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:183, column:91,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:91,the value of plot_cost is         : 33.76613054504395 

 At row:183, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:183, column:92,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:92,the value of plot_cost is         : 33.959744703416575 

 At row:183, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:183, column:93,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:93,the value of plot_cost is         : 34.15416692219171 

 At row:183, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:183, column:94,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:94,the value of plot_cost is         : 34.34939720136937 

 At row:183, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:183, column:95,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:95,the value of plot_cost is         : 34.54543554094955 

 At row:183, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:183, column:96,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:96,the value of plot_cost is         : 34.74228194093222 

 At row:183, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:183, column:97,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:97,the value of plot_cost is         : 34.939936401317425 

 At row:183, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:183, column:98,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:98,the value of plot_cost is         : 35.13839892210514 

 At row:183, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:183, column:99,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:99,the value of plot_cost is         : 35.337669503295366 

 At row:183, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:183, column:100,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:100,the value of plot_cost is         : 35.53774814488811 

 At row:183, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:183, column:101,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:101,the value of plot_cost is         : 35.73863484688337 

 At row:183, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:183, column:102,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:102,the value of plot_cost is         : 35.94032960928115 

 At row:183, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:183, column:103,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:103,the value of plot_cost is         : 36.142832432081434 

 At row:183, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:183, column:104,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:104,the value of plot_cost is         : 36.34614331528425 

 At row:183, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:183, column:105,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:105,the value of plot_cost is         : 36.55026225888957 

 At row:183, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:183, column:106,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:106,the value of plot_cost is         : 36.755189262897396 

 At row:183, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:183, column:107,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:107,the value of plot_cost is         : 36.960924327307744 

 At row:183, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:183, column:108,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:108,the value of plot_cost is         : 37.16746745212062 

 At row:183, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:183, column:109,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:109,the value of plot_cost is         : 37.37481863733599 

 At row:183, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:183, column:110,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:110,the value of plot_cost is         : 37.58297788295389 

 At row:183, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:183, column:111,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:111,the value of plot_cost is         : 37.791945188974296 

 At row:183, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:183, column:112,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:112,the value of plot_cost is         : 38.001720555397235 

 At row:183, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:183, column:113,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:113,the value of plot_cost is         : 38.212303982222664 

 At row:183, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:183, column:114,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:114,the value of plot_cost is         : 38.42369546945062 

 At row:183, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:183, column:115,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:115,the value of plot_cost is         : 38.635895017081104 

 At row:183, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:183, column:116,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:116,the value of plot_cost is         : 38.84890262511408 

 At row:183, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:183, column:117,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:117,the value of plot_cost is         : 39.06271829354958 

 At row:183, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:183, column:118,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:118,the value of plot_cost is         : 39.2773420223876 

 At row:183, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:183, column:119,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:119,the value of plot_cost is         : 39.49277381162814 

 At row:183, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:183, column:120,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:120,the value of plot_cost is         : 39.70901366127118 

 At row:183, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:183, column:121,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:121,the value of plot_cost is         : 39.92606157131674 

 At row:183, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:183, column:122,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:122,the value of plot_cost is         : 40.143917541764814 

 At row:183, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:183, column:123,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:123,the value of plot_cost is         : 40.362581572615404 

 At row:183, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:183, column:124,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:124,the value of plot_cost is         : 40.58205366386853 

 At row:183, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:183, column:125,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:125,the value of plot_cost is         : 40.80233381552414 

 At row:183, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:183, column:126,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:126,the value of plot_cost is         : 41.02342202758228 

 At row:183, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:183, column:127,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:127,the value of plot_cost is         : 41.24531830004292 

 At row:183, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:183, column:128,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:128,the value of plot_cost is         : 41.46802263290609 

 At row:183, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:183, column:129,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:129,the value of plot_cost is         : 41.69153502617178 

 At row:183, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:183, column:130,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:130,the value of plot_cost is         : 41.91585547983997 

 At row:183, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:183, column:131,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:131,the value of plot_cost is         : 42.14098399391068 

 At row:183, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:183, column:132,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:132,the value of plot_cost is         : 42.36692056838391 

 At row:183, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:183, column:133,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:133,the value of plot_cost is         : 42.593665203259654 

 At row:183, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:183, column:134,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:134,the value of plot_cost is         : 42.82121789853791 

 At row:183, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:183, column:135,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:135,the value of plot_cost is         : 43.04957865421869 

 At row:183, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:183, column:136,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:136,the value of plot_cost is         : 43.27874747030197 

 At row:183, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:183, column:137,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:137,the value of plot_cost is         : 43.50872434678777 

 At row:183, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:183, column:138,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:138,the value of plot_cost is         : 43.73950928367609 

 At row:183, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:183, column:139,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:139,the value of plot_cost is         : 43.97110228096694 

 At row:183, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:183, column:140,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:140,the value of plot_cost is         : 44.203503338660276 

 At row:183, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:183, column:141,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:141,the value of plot_cost is         : 44.43671245675614 

 At row:183, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:183, column:142,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:142,the value of plot_cost is         : 44.670729635254524 

 At row:183, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:183, column:143,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:143,the value of plot_cost is         : 44.905554874155406 

 At row:183, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:183, column:144,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:144,the value of plot_cost is         : 45.14118817345883 

 At row:183, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:183, column:145,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:145,the value of plot_cost is         : 45.37762953316475 

 At row:183, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:183, column:146,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:146,the value of plot_cost is         : 45.614878953273184 

 At row:183, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:183, column:147,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:147,the value of plot_cost is         : 45.85293643378413 

 At row:183, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:183, column:148,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:148,the value of plot_cost is         : 46.09180197469761 

 At row:183, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:183, column:149,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:149,the value of plot_cost is         : 46.33147557601359 

 At row:183, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:183, column:150,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:150,the value of plot_cost is         : 46.571957237732086 

 At row:183, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:183, column:151,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:151,the value of plot_cost is         : 46.8132469598531 

 At row:183, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:183, column:152,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:152,the value of plot_cost is         : 47.05534474237664 

 At row:183, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:183, column:153,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:153,the value of plot_cost is         : 47.29825058530267 

 At row:183, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:183, column:154,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:154,the value of plot_cost is         : 47.54196448863123 

 At row:183, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:183, column:155,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:155,the value of plot_cost is         : 47.78648645236231 

 At row:183, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:183, column:156,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:156,the value of plot_cost is         : 48.0318164764959 

 At row:183, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:183, column:157,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:157,the value of plot_cost is         : 48.277954561032004 

 At row:183, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:183, column:158,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:158,the value of plot_cost is         : 48.52490070597062 

 At row:183, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:183, column:159,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:159,the value of plot_cost is         : 48.77265491131176 

 At row:183, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:183, column:160,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:160,the value of plot_cost is         : 49.02121717705541 

 At row:183, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:183, column:161,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:161,the value of plot_cost is         : 49.27058750320158 

 At row:183, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:183, column:162,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:162,the value of plot_cost is         : 49.52076588975026 

 At row:183, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:183, column:163,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:163,the value of plot_cost is         : 49.77175233670145 

 At row:183, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:183, column:164,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:164,the value of plot_cost is         : 50.02354684405517 

 At row:183, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:183, column:165,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:165,the value of plot_cost is         : 50.27614941181139 

 At row:183, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:183, column:166,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:166,the value of plot_cost is         : 50.52956003997012 

 At row:183, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:183, column:167,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:167,the value of plot_cost is         : 50.783778728531374 

 At row:183, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:183, column:168,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:168,the value of plot_cost is         : 51.03880547749515 

 At row:183, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:183, column:169,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:169,the value of plot_cost is         : 51.29464028686144 

 At row:183, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:183, column:170,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:170,the value of plot_cost is         : 51.55128315663024 

 At row:183, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:183, column:171,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:171,the value of plot_cost is         : 51.808734086801564 

 At row:183, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:183, column:172,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:172,the value of plot_cost is         : 52.06699307737538 

 At row:183, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:183, column:173,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:173,the value of plot_cost is         : 52.32606012835173 

 At row:183, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:183, column:174,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:174,the value of plot_cost is         : 52.58593523973059 

 At row:183, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:183, column:175,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:175,the value of plot_cost is         : 52.846618411511976 

 At row:183, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:183, column:176,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:176,the value of plot_cost is         : 53.10810964369586 

 At row:183, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:183, column:177,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:177,the value of plot_cost is         : 53.37040893628226 

 At row:183, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:183, column:178,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:178,the value of plot_cost is         : 53.633516289271185 

 At row:183, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:183, column:179,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:179,the value of plot_cost is         : 53.89743170266263 

 At row:183, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:183, column:180,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:180,the value of plot_cost is         : 54.16215517645658 

 At row:183, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:183, column:181,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:181,the value of plot_cost is         : 54.42768671065305 

 At row:183, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:183, column:182,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:182,the value of plot_cost is         : 54.694026305252024 

 At row:183, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:183, column:183,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:183,the value of plot_cost is         : 54.96117396025352 

 At row:183, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:183, column:184,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:184,the value of plot_cost is         : 55.229129675657546 

 At row:183, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:183, column:185,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:185,the value of plot_cost is         : 55.497893451464066 

 At row:183, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:183, column:186,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:186,the value of plot_cost is         : 55.767465287673105 

 At row:183, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:183, column:187,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:187,the value of plot_cost is         : 56.03784518428466 

 At row:183, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:183, column:188,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:188,the value of plot_cost is         : 56.309033141298734 

 At row:183, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:183, column:189,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:189,the value of plot_cost is         : 56.581029158715324 

 At row:183, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:183, column:190,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:190,the value of plot_cost is         : 56.85383323653443 

 At row:183, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:183, column:191,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:191,the value of plot_cost is         : 57.12744537475604 

 At row:183, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:183, column:192,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:192,the value of plot_cost is         : 57.40186557338018 

 At row:183, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:183, column:193,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:193,the value of plot_cost is         : 57.67709383240682 

 At row:183, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:183, column:194,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:194,the value of plot_cost is         : 57.953130151835985 

 At row:183, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:183, column:195,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:195,the value of plot_cost is         : 58.22997453166767 

 At row:183, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:183, column:196,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:196,the value of plot_cost is         : 58.507626971901864 

 At row:183, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:183, column:197,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:197,the value of plot_cost is         : 58.786087472538576 

 At row:183, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:183, column:198,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:198,the value of plot_cost is         : 59.065356033577785 

 At row:183, column:199,the value of plot_t0 is           : 3.0
 At row:183, column:199,the value of plot_t1 is           : 2.678391959798995
 At row:183, column:199,the value of plot_cost is         : 59.345432655019536 

 At row:184, column:0,the value of plot_t0 is           : -1.0
 At row:184, column:0,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:0,the value of plot_cost is         : 20.201140916354923 

 At row:184, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:184, column:1,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:1,the value of plot_cost is         : 20.32389972114701 

 At row:184, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:184, column:2,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:2,the value of plot_cost is         : 20.447466586341616 

 At row:184, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:184, column:3,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:3,the value of plot_cost is         : 20.57184151193873 

 At row:184, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:184, column:4,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:4,the value of plot_cost is         : 20.697024497938358 

 At row:184, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:184, column:5,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:5,the value of plot_cost is         : 20.823015544340507 

 At row:184, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:184, column:6,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:6,the value of plot_cost is         : 20.949814651145175 

 At row:184, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:184, column:7,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:7,the value of plot_cost is         : 21.077421818352352 

 At row:184, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:184, column:8,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:8,the value of plot_cost is         : 21.205837045962042 

 At row:184, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:184, column:9,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:9,the value of plot_cost is         : 21.33506033397425 

 At row:184, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:184, column:10,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:10,the value of plot_cost is         : 21.465091682388973 

 At row:184, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:184, column:11,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:11,the value of plot_cost is         : 21.595931091206207 

 At row:184, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:184, column:12,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:12,the value of plot_cost is         : 21.727578560425957 

 At row:184, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:184, column:13,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:13,the value of plot_cost is         : 21.86003409004823 

 At row:184, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:184, column:14,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:14,the value of plot_cost is         : 21.993297680073013 

 At row:184, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:184, column:15,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:15,the value of plot_cost is         : 22.127369330500315 

 At row:184, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:184, column:16,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:16,the value of plot_cost is         : 22.262249041330122 

 At row:184, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:184, column:17,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:17,the value of plot_cost is         : 22.397936812562453 

 At row:184, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:184, column:18,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:18,the value of plot_cost is         : 22.5344326441973 

 At row:184, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:184, column:19,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:19,the value of plot_cost is         : 22.671736536234658 

 At row:184, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:184, column:20,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:20,the value of plot_cost is         : 22.80984848867453 

 At row:184, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:184, column:21,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:21,the value of plot_cost is         : 22.94876850151691 

 At row:184, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:184, column:22,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:22,the value of plot_cost is         : 23.088496574761812 

 At row:184, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:184, column:23,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:23,the value of plot_cost is         : 23.22903270840924 

 At row:184, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:184, column:24,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:24,the value of plot_cost is         : 23.37037690245917 

 At row:184, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:184, column:25,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:25,the value of plot_cost is         : 23.512529156911615 

 At row:184, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:184, column:26,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:26,the value of plot_cost is         : 23.655489471766586 

 At row:184, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:184, column:27,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:27,the value of plot_cost is         : 23.799257847024062 

 At row:184, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:184, column:28,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:28,the value of plot_cost is         : 23.943834282684065 

 At row:184, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:184, column:29,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:29,the value of plot_cost is         : 24.08921877874657 

 At row:184, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:184, column:30,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:30,the value of plot_cost is         : 24.23541133521159 

 At row:184, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:184, column:31,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:31,the value of plot_cost is         : 24.382411952079128 

 At row:184, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:184, column:32,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:32,the value of plot_cost is         : 24.53022062934918 

 At row:184, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:184, column:33,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:33,the value of plot_cost is         : 24.678837367021753 

 At row:184, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:184, column:34,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:34,the value of plot_cost is         : 24.828262165096834 

 At row:184, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:184, column:35,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:35,the value of plot_cost is         : 24.978495023574443 

 At row:184, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:184, column:36,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:36,the value of plot_cost is         : 25.129535942454556 

 At row:184, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:184, column:37,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:37,the value of plot_cost is         : 25.281384921737185 

 At row:184, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:184, column:38,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:38,the value of plot_cost is         : 25.434041961422338 

 At row:184, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:184, column:39,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:39,the value of plot_cost is         : 25.587507061509996 

 At row:184, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:184, column:40,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:40,the value of plot_cost is         : 25.741780222000166 

 At row:184, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:184, column:41,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:41,the value of plot_cost is         : 25.89686144289285 

 At row:184, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:184, column:42,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:42,the value of plot_cost is         : 26.05275072418806 

 At row:184, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:184, column:43,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:43,the value of plot_cost is         : 26.20944806588578 

 At row:184, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:184, column:44,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:44,the value of plot_cost is         : 26.36695346798602 

 At row:184, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:184, column:45,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:45,the value of plot_cost is         : 26.525266930488772 

 At row:184, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:184, column:46,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:46,the value of plot_cost is         : 26.684388453394035 

 At row:184, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:184, column:47,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:47,the value of plot_cost is         : 26.84431803670181 

 At row:184, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:184, column:48,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:48,the value of plot_cost is         : 27.005055680412116 

 At row:184, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:184, column:49,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:49,the value of plot_cost is         : 27.16660138452492 

 At row:184, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:184, column:50,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:50,the value of plot_cost is         : 27.328955149040244 

 At row:184, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:184, column:51,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:51,the value of plot_cost is         : 27.492116973958087 

 At row:184, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:184, column:52,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:52,the value of plot_cost is         : 27.65608685927844 

 At row:184, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:184, column:53,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:53,the value of plot_cost is         : 27.820864805001314 

 At row:184, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:184, column:54,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:54,the value of plot_cost is         : 27.9864508111267 

 At row:184, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:184, column:55,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:55,the value of plot_cost is         : 28.152844877654605 

 At row:184, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:184, column:56,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:56,the value of plot_cost is         : 28.320047004585017 

 At row:184, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:184, column:57,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:57,the value of plot_cost is         : 28.48805719191796 

 At row:184, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:184, column:58,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:58,the value of plot_cost is         : 28.656875439653405 

 At row:184, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:184, column:59,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:59,the value of plot_cost is         : 28.826501747791365 

 At row:184, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:184, column:60,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:60,the value of plot_cost is         : 28.996936116331838 

 At row:184, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:184, column:61,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:61,the value of plot_cost is         : 29.168178545274827 

 At row:184, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:184, column:62,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:62,the value of plot_cost is         : 29.340229034620336 

 At row:184, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:184, column:63,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:63,the value of plot_cost is         : 29.513087584368357 

 At row:184, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:184, column:64,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:64,the value of plot_cost is         : 29.68675419451889 

 At row:184, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:184, column:65,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:65,the value of plot_cost is         : 29.86122886507195 

 At row:184, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:184, column:66,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:66,the value of plot_cost is         : 30.03651159602752 

 At row:184, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:184, column:67,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:67,the value of plot_cost is         : 30.212602387385605 

 At row:184, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:184, column:68,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:68,the value of plot_cost is         : 30.389501239146202 

 At row:184, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:184, column:69,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:69,the value of plot_cost is         : 30.567208151309313 

 At row:184, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:184, column:70,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:70,the value of plot_cost is         : 30.74572312387494 

 At row:184, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:184, column:71,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:71,the value of plot_cost is         : 30.925046156843074 

 At row:184, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:184, column:72,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:72,the value of plot_cost is         : 31.105177250213735 

 At row:184, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:184, column:73,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:73,the value of plot_cost is         : 31.286116403986913 

 At row:184, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:184, column:74,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:74,the value of plot_cost is         : 31.4678636181626 

 At row:184, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:184, column:75,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:75,the value of plot_cost is         : 31.650418892740806 

 At row:184, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:184, column:76,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:76,the value of plot_cost is         : 31.833782227721525 

 At row:184, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:184, column:77,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:77,the value of plot_cost is         : 32.01795362310476 

 At row:184, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:184, column:78,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:78,the value of plot_cost is         : 32.20293307889051 

 At row:184, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:184, column:79,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:79,the value of plot_cost is         : 32.388720595078766 

 At row:184, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:184, column:80,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:80,the value of plot_cost is         : 32.57531617166955 

 At row:184, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:184, column:81,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:81,the value of plot_cost is         : 32.76271980866284 

 At row:184, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:184, column:82,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:82,the value of plot_cost is         : 32.950931506058645 

 At row:184, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:184, column:83,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:83,the value of plot_cost is         : 33.13995126385697 

 At row:184, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:184, column:84,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:84,the value of plot_cost is         : 33.329779082057804 

 At row:184, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:184, column:85,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:85,the value of plot_cost is         : 33.52041496066117 

 At row:184, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:184, column:86,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:86,the value of plot_cost is         : 33.71185889966704 

 At row:184, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:184, column:87,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:87,the value of plot_cost is         : 33.90411089907543 

 At row:184, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:184, column:88,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:88,the value of plot_cost is         : 34.09717095888632 

 At row:184, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:184, column:89,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:89,the value of plot_cost is         : 34.29103907909973 

 At row:184, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:184, column:90,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:90,the value of plot_cost is         : 34.48571525971566 

 At row:184, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:184, column:91,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:91,the value of plot_cost is         : 34.6811995007341 

 At row:184, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:184, column:92,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:92,the value of plot_cost is         : 34.877491802155056 

 At row:184, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:184, column:93,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:93,the value of plot_cost is         : 35.07459216397854 

 At row:184, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:184, column:94,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:94,the value of plot_cost is         : 35.27250058620452 

 At row:184, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:184, column:95,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:95,the value of plot_cost is         : 35.47121706883304 

 At row:184, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:184, column:96,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:96,the value of plot_cost is         : 35.67074161186406 

 At row:184, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:184, column:97,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:97,the value of plot_cost is         : 35.8710742152976 

 At row:184, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:184, column:98,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:98,the value of plot_cost is         : 36.07221487913365 

 At row:184, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:184, column:99,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:99,the value of plot_cost is         : 36.27416360337221 

 At row:184, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:184, column:100,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:100,the value of plot_cost is         : 36.47692038801328 

 At row:184, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:184, column:101,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:101,the value of plot_cost is         : 36.680485233056885 

 At row:184, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:184, column:102,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:102,the value of plot_cost is         : 36.88485813850299 

 At row:184, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:184, column:103,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:103,the value of plot_cost is         : 37.09003910435162 

 At row:184, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:184, column:104,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:104,the value of plot_cost is         : 37.29602813060276 

 At row:184, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:184, column:105,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:105,the value of plot_cost is         : 37.50282521725641 

 At row:184, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:184, column:106,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:106,the value of plot_cost is         : 37.71043036431259 

 At row:184, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:184, column:107,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:107,the value of plot_cost is         : 37.918843571771276 

 At row:184, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:184, column:108,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:108,the value of plot_cost is         : 38.12806483963248 

 At row:184, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:184, column:109,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:109,the value of plot_cost is         : 38.338094167896195 

 At row:184, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:184, column:110,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:110,the value of plot_cost is         : 38.54893155656242 

 At row:184, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:184, column:111,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:111,the value of plot_cost is         : 38.76057700563116 

 At row:184, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:184, column:112,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:112,the value of plot_cost is         : 38.97303051510243 

 At row:184, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:184, column:113,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:113,the value of plot_cost is         : 39.1862920849762 

 At row:184, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:184, column:114,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:114,the value of plot_cost is         : 39.4003617152525 

 At row:184, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:184, column:115,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:115,the value of plot_cost is         : 39.61523940593131 

 At row:184, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:184, column:116,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:116,the value of plot_cost is         : 39.83092515701262 

 At row:184, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:184, column:117,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:117,the value of plot_cost is         : 40.04741896849647 

 At row:184, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:184, column:118,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:118,the value of plot_cost is         : 40.26472084038283 

 At row:184, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:184, column:119,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:119,the value of plot_cost is         : 40.48283077267168 

 At row:184, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:184, column:120,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:120,the value of plot_cost is         : 40.701748765363064 

 At row:184, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:184, column:121,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:121,the value of plot_cost is         : 40.92147481845696 

 At row:184, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:184, column:122,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:122,the value of plot_cost is         : 41.14200893195337 

 At row:184, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:184, column:123,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:123,the value of plot_cost is         : 41.3633511058523 

 At row:184, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:184, column:124,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:124,the value of plot_cost is         : 41.58550134015375 

 At row:184, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:184, column:125,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:125,the value of plot_cost is         : 41.808459634857705 

 At row:184, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:184, column:126,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:126,the value of plot_cost is         : 42.03222598996418 

 At row:184, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:184, column:127,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:127,the value of plot_cost is         : 42.256800405473165 

 At row:184, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:184, column:128,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:128,the value of plot_cost is         : 42.48218288138467 

 At row:184, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:184, column:129,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:129,the value of plot_cost is         : 42.70837341769869 

 At row:184, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:184, column:130,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:130,the value of plot_cost is         : 42.935372014415215 

 At row:184, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:184, column:131,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:131,the value of plot_cost is         : 43.16317867153426 

 At row:184, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:184, column:132,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:132,the value of plot_cost is         : 43.39179338905583 

 At row:184, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:184, column:133,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:133,the value of plot_cost is         : 43.621216166979906 

 At row:184, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:184, column:134,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:134,the value of plot_cost is         : 43.851447005306504 

 At row:184, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:184, column:135,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:135,the value of plot_cost is         : 44.082485904035615 

 At row:184, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:184, column:136,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:136,the value of plot_cost is         : 44.31433286316724 

 At row:184, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:184, column:137,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:137,the value of plot_cost is         : 44.54698788270138 

 At row:184, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:184, column:138,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:138,the value of plot_cost is         : 44.780450962638035 

 At row:184, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:184, column:139,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:139,the value of plot_cost is         : 45.0147221029772 

 At row:184, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:184, column:140,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:140,the value of plot_cost is         : 45.249801303718876 

 At row:184, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:184, column:141,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:141,the value of plot_cost is         : 45.48568856486307 

 At row:184, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:184, column:142,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:142,the value of plot_cost is         : 45.72238388640979 

 At row:184, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:184, column:143,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:143,the value of plot_cost is         : 45.95988726835902 

 At row:184, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:184, column:144,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:144,the value of plot_cost is         : 46.19819871071076 

 At row:184, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:184, column:145,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:145,the value of plot_cost is         : 46.43731821346503 

 At row:184, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:184, column:146,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:146,the value of plot_cost is         : 46.6772457766218 

 At row:184, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:184, column:147,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:147,the value of plot_cost is         : 46.9179814001811 

 At row:184, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:184, column:148,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:148,the value of plot_cost is         : 47.1595250841429 

 At row:184, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:184, column:149,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:149,the value of plot_cost is         : 47.40187682850721 

 At row:184, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:184, column:150,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:150,the value of plot_cost is         : 47.645036633274046 

 At row:184, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:184, column:151,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:151,the value of plot_cost is         : 47.8890044984434 

 At row:184, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:184, column:152,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:152,the value of plot_cost is         : 48.13378042401526 

 At row:184, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:184, column:153,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:153,the value of plot_cost is         : 48.37936440998965 

 At row:184, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:184, column:154,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:154,the value of plot_cost is         : 48.625756456366545 

 At row:184, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:184, column:155,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:155,the value of plot_cost is         : 48.872956563145955 

 At row:184, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:184, column:156,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:156,the value of plot_cost is         : 49.12096473032788 

 At row:184, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:184, column:157,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:157,the value of plot_cost is         : 49.369780957912326 

 At row:184, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:184, column:158,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:158,the value of plot_cost is         : 49.61940524589928 

 At row:184, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:184, column:159,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:159,the value of plot_cost is         : 49.86983759428874 

 At row:184, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:184, column:160,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:160,the value of plot_cost is         : 50.121078003080726 

 At row:184, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:184, column:161,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:161,the value of plot_cost is         : 50.373126472275224 

 At row:184, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:184, column:162,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:162,the value of plot_cost is         : 50.62598300187224 

 At row:184, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:184, column:163,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:163,the value of plot_cost is         : 50.879647591871766 

 At row:184, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:184, column:164,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:164,the value of plot_cost is         : 51.134120242273816 

 At row:184, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:184, column:165,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:165,the value of plot_cost is         : 51.38940095307839 

 At row:184, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:184, column:166,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:166,the value of plot_cost is         : 51.64548972428547 

 At row:184, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:184, column:167,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:167,the value of plot_cost is         : 51.90238655589505 

 At row:184, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:184, column:168,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:168,the value of plot_cost is         : 52.160091447907156 

 At row:184, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:184, column:169,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:169,the value of plot_cost is         : 52.41860440032178 

 At row:184, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:184, column:170,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:170,the value of plot_cost is         : 52.677925413138915 

 At row:184, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:184, column:171,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:171,the value of plot_cost is         : 52.93805448635857 

 At row:184, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:184, column:172,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:172,the value of plot_cost is         : 53.198991619980724 

 At row:184, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:184, column:173,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:173,the value of plot_cost is         : 53.46073681400541 

 At row:184, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:184, column:174,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:174,the value of plot_cost is         : 53.72329006843262 

 At row:184, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:184, column:175,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:175,the value of plot_cost is         : 53.986651383262334 

 At row:184, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:184, column:176,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:176,the value of plot_cost is         : 54.250820758494555 

 At row:184, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:184, column:177,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:177,the value of plot_cost is         : 54.515798194129296 

 At row:184, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:184, column:178,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:178,the value of plot_cost is         : 54.781583690166556 

 At row:184, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:184, column:179,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:179,the value of plot_cost is         : 55.04817724660633 

 At row:184, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:184, column:180,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:180,the value of plot_cost is         : 55.315578863448614 

 At row:184, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:184, column:181,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:181,the value of plot_cost is         : 55.583788540693405 

 At row:184, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:184, column:182,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:182,the value of plot_cost is         : 55.85280627834072 

 At row:184, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:184, column:183,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:183,the value of plot_cost is         : 56.12263207639056 

 At row:184, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:184, column:184,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:184,the value of plot_cost is         : 56.39326593484291 

 At row:184, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:184, column:185,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:185,the value of plot_cost is         : 56.66470785369779 

 At row:184, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:184, column:186,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:186,the value of plot_cost is         : 56.93695783295516 

 At row:184, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:184, column:187,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:187,the value of plot_cost is         : 57.210015872615045 

 At row:184, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:184, column:188,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:188,the value of plot_cost is         : 57.48388197267745 

 At row:184, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:184, column:189,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:189,the value of plot_cost is         : 57.75855613314238 

 At row:184, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:184, column:190,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:190,the value of plot_cost is         : 58.034038354009816 

 At row:184, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:184, column:191,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:191,the value of plot_cost is         : 58.31032863527977 

 At row:184, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:184, column:192,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:192,the value of plot_cost is         : 58.58742697695223 

 At row:184, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:184, column:193,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:193,the value of plot_cost is         : 58.86533337902722 

 At row:184, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:184, column:194,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:194,the value of plot_cost is         : 59.14404784150472 

 At row:184, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:184, column:195,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:195,the value of plot_cost is         : 59.42357036438474 

 At row:184, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:184, column:196,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:196,the value of plot_cost is         : 59.70390094766727 

 At row:184, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:184, column:197,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:197,the value of plot_cost is         : 59.98503959135232 

 At row:184, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:184, column:198,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:198,the value of plot_cost is         : 60.26698629543987 

 At row:184, column:199,the value of plot_t0 is           : 3.0
 At row:184, column:199,the value of plot_t1 is           : 2.698492462311558
 At row:184, column:199,the value of plot_cost is         : 60.54974105992994 

 At row:185, column:0,the value of plot_t0 is           : -1.0
 At row:185, column:0,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:0,the value of plot_cost is         : 20.885081509485698 

 At row:185, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:185, column:1,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:1,the value of plot_cost is         : 21.010518457326114 

 At row:185, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:185, column:2,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:2,the value of plot_cost is         : 21.13676346556905 

 At row:185, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:185, column:3,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:3,the value of plot_cost is         : 21.263816534214506 

 At row:185, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:185, column:4,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:4,the value of plot_cost is         : 21.391677663262474 

 At row:185, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:185, column:5,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:5,the value of plot_cost is         : 21.520346852712958 

 At row:185, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:185, column:6,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:6,the value of plot_cost is         : 21.649824102565958 

 At row:185, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:185, column:7,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:7,the value of plot_cost is         : 21.78010941282147 

 At row:185, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:185, column:8,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:8,the value of plot_cost is         : 21.9112027834795 

 At row:185, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:185, column:9,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:9,the value of plot_cost is         : 22.04310421454004 

 At row:185, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:185, column:10,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:10,the value of plot_cost is         : 22.175813706003098 

 At row:185, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:185, column:11,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:11,the value of plot_cost is         : 22.309331257868667 

 At row:185, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:185, column:12,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:12,the value of plot_cost is         : 22.443656870136756 

 At row:185, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:185, column:13,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:13,the value of plot_cost is         : 22.57879054280736 

 At row:185, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:185, column:14,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:14,the value of plot_cost is         : 22.71473227588048 

 At row:185, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:185, column:15,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:15,the value of plot_cost is         : 22.851482069356113 

 At row:185, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:185, column:16,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:16,the value of plot_cost is         : 22.989039923234266 

 At row:185, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:185, column:17,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:17,the value of plot_cost is         : 23.127405837514928 

 At row:185, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:185, column:18,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:18,the value of plot_cost is         : 23.266579812198113 

 At row:185, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:185, column:19,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:19,the value of plot_cost is         : 23.406561847283804 

 At row:185, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:185, column:20,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:20,the value of plot_cost is         : 23.54735194277201 

 At row:185, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:185, column:21,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:21,the value of plot_cost is         : 23.688950098662733 

 At row:185, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:185, column:22,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:22,the value of plot_cost is         : 23.831356314955972 

 At row:185, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:185, column:23,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:23,the value of plot_cost is         : 23.97457059165173 

 At row:185, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:185, column:24,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:24,the value of plot_cost is         : 24.118592928749997 

 At row:185, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:185, column:25,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:25,the value of plot_cost is         : 24.263423326250788 

 At row:185, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:185, column:26,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:26,the value of plot_cost is         : 24.409061784154083 

 At row:185, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:185, column:27,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:27,the value of plot_cost is         : 24.5555083024599 

 At row:185, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:185, column:28,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:28,the value of plot_cost is         : 24.702762881168233 

 At row:185, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:185, column:29,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:29,the value of plot_cost is         : 24.850825520279077 

 At row:185, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:185, column:30,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:30,the value of plot_cost is         : 24.999696219792433 

 At row:185, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:185, column:31,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:31,the value of plot_cost is         : 25.149374979708305 

 At row:185, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:185, column:32,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:32,the value of plot_cost is         : 25.299861800026694 

 At row:185, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:185, column:33,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:33,the value of plot_cost is         : 25.451156680747605 

 At row:185, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:185, column:34,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:34,the value of plot_cost is         : 25.603259621871025 

 At row:185, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:185, column:35,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:35,the value of plot_cost is         : 25.75617062339696 

 At row:185, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:185, column:36,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:36,the value of plot_cost is         : 25.909889685325414 

 At row:185, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:185, column:37,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:37,the value of plot_cost is         : 26.06441680765637 

 At row:185, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:185, column:38,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:38,the value of plot_cost is         : 26.21975199038986 

 At row:185, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:185, column:39,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:39,the value of plot_cost is         : 26.375895233525853 

 At row:185, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:185, column:40,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:40,the value of plot_cost is         : 26.532846537064366 

 At row:185, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:185, column:41,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:41,the value of plot_cost is         : 26.690605901005384 

 At row:185, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:185, column:42,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:42,the value of plot_cost is         : 26.849173325348925 

 At row:185, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:185, column:43,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:43,the value of plot_cost is         : 27.008548810094986 

 At row:185, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:185, column:44,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:44,the value of plot_cost is         : 27.168732355243556 

 At row:185, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:185, column:45,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:45,the value of plot_cost is         : 27.32972396079465 

 At row:185, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:185, column:46,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:46,the value of plot_cost is         : 27.491523626748247 

 At row:185, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:185, column:47,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:47,the value of plot_cost is         : 27.654131353104365 

 At row:185, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:185, column:48,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:48,the value of plot_cost is         : 27.817547139863002 

 At row:185, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:185, column:49,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:49,the value of plot_cost is         : 27.981770987024145 

 At row:185, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:185, column:50,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:50,the value of plot_cost is         : 28.1468028945878 

 At row:185, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:185, column:51,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:51,the value of plot_cost is         : 28.312642862553975 

 At row:185, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:185, column:52,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:52,the value of plot_cost is         : 28.479290890922673 

 At row:185, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:185, column:53,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:53,the value of plot_cost is         : 28.646746979693877 

 At row:185, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:185, column:54,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:54,the value of plot_cost is         : 28.815011128867596 

 At row:185, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:185, column:55,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:55,the value of plot_cost is         : 28.984083338443842 

 At row:185, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:185, column:56,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:56,the value of plot_cost is         : 29.15396360842259 

 At row:185, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:185, column:57,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:57,the value of plot_cost is         : 29.324651938803857 

 At row:185, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:185, column:58,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:58,the value of plot_cost is         : 29.496148329587648 

 At row:185, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:185, column:59,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:59,the value of plot_cost is         : 29.66845278077394 

 At row:185, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:185, column:60,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:60,the value of plot_cost is         : 29.84156529236275 

 At row:185, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:185, column:61,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:61,the value of plot_cost is         : 30.015485864354076 

 At row:185, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:185, column:62,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:62,the value of plot_cost is         : 30.19021449674792 

 At row:185, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:185, column:63,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:63,the value of plot_cost is         : 30.365751189544277 

 At row:185, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:185, column:64,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:64,the value of plot_cost is         : 30.54209594274315 

 At row:185, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:185, column:65,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:65,the value of plot_cost is         : 30.719248756344548 

 At row:185, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:185, column:66,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:66,the value of plot_cost is         : 30.897209630348446 

 At row:185, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:185, column:67,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:67,the value of plot_cost is         : 31.075978564754863 

 At row:185, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:185, column:68,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:68,the value of plot_cost is         : 31.255555559563803 

 At row:185, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:185, column:69,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:69,the value of plot_cost is         : 31.435940614775248 

 At row:185, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:185, column:70,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:70,the value of plot_cost is         : 31.617133730389206 

 At row:185, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:185, column:71,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:71,the value of plot_cost is         : 31.799134906405683 

 At row:185, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:185, column:72,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:72,the value of plot_cost is         : 31.98194414282468 

 At row:185, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:185, column:73,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:73,the value of plot_cost is         : 32.16556143964619 

 At row:185, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:185, column:74,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:74,the value of plot_cost is         : 32.34998679687021 

 At row:185, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:185, column:75,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:75,the value of plot_cost is         : 32.53522021449676 

 At row:185, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:185, column:76,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:76,the value of plot_cost is         : 32.721261692525815 

 At row:185, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:185, column:77,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:77,the value of plot_cost is         : 32.90811123095738 

 At row:185, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:185, column:78,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:78,the value of plot_cost is         : 33.09576882979146 

 At row:185, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:185, column:79,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:79,the value of plot_cost is         : 33.28423448902806 

 At row:185, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:185, column:80,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:80,the value of plot_cost is         : 33.47350820866717 

 At row:185, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:185, column:81,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:81,the value of plot_cost is         : 33.6635899887088 

 At row:185, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:185, column:82,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:82,the value of plot_cost is         : 33.85447982915294 

 At row:185, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:185, column:83,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:83,the value of plot_cost is         : 34.046177729999606 

 At row:185, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:185, column:84,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:84,the value of plot_cost is         : 34.238683691248774 

 At row:185, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:185, column:85,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:85,the value of plot_cost is         : 34.431997712900476 

 At row:185, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:185, column:86,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:86,the value of plot_cost is         : 34.62611979495468 

 At row:185, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:185, column:87,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:87,the value of plot_cost is         : 34.821049937411395 

 At row:185, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:185, column:88,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:88,the value of plot_cost is         : 35.016788140270634 

 At row:185, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:185, column:89,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:89,the value of plot_cost is         : 35.213334403532386 

 At row:185, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:185, column:90,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:90,the value of plot_cost is         : 35.41068872719665 

 At row:185, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:185, column:91,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:91,the value of plot_cost is         : 35.60885111126343 

 At row:185, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:185, column:92,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:92,the value of plot_cost is         : 35.80782155573272 

 At row:185, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:185, column:93,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:93,the value of plot_cost is         : 36.007600060604524 

 At row:185, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:185, column:94,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:94,the value of plot_cost is         : 36.20818662587885 

 At row:185, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:185, column:95,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:95,the value of plot_cost is         : 36.4095812515557 

 At row:185, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:185, column:96,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:96,the value of plot_cost is         : 36.61178393763506 

 At row:185, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:185, column:97,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:97,the value of plot_cost is         : 36.81479468411693 

 At row:185, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:185, column:98,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:98,the value of plot_cost is         : 37.01861349100132 

 At row:185, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:185, column:99,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:99,the value of plot_cost is         : 37.223240358288216 

 At row:185, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:185, column:100,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:100,the value of plot_cost is         : 37.428675285977626 

 At row:185, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:185, column:101,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:101,the value of plot_cost is         : 37.634918274069555 

 At row:185, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:185, column:102,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:102,the value of plot_cost is         : 37.84196932256401 

 At row:185, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:185, column:103,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:103,the value of plot_cost is         : 38.04982843146096 

 At row:185, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:185, column:104,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:104,the value of plot_cost is         : 38.25849560076046 

 At row:185, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:185, column:105,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:105,the value of plot_cost is         : 38.46797083046245 

 At row:185, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:185, column:106,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:106,the value of plot_cost is         : 38.67825412056695 

 At row:185, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:185, column:107,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:107,the value of plot_cost is         : 38.889345471073966 

 At row:185, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:185, column:108,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:108,the value of plot_cost is         : 39.10124488198351 

 At row:185, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:185, column:109,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:109,the value of plot_cost is         : 39.313952353295555 

 At row:185, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:185, column:110,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:110,the value of plot_cost is         : 39.52746788501012 

 At row:185, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:185, column:111,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:111,the value of plot_cost is         : 39.74179147712721 

 At row:185, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:185, column:112,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:112,the value of plot_cost is         : 39.956923129646796 

 At row:185, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:185, column:113,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:113,the value of plot_cost is         : 40.17286284256891 

 At row:185, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:185, column:114,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:114,the value of plot_cost is         : 40.38961061589353 

 At row:185, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:185, column:115,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:115,the value of plot_cost is         : 40.6071664496207 

 At row:185, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:185, column:116,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:116,the value of plot_cost is         : 40.82553034375035 

 At row:185, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:185, column:117,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:117,the value of plot_cost is         : 41.044702298282516 

 At row:185, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:185, column:118,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:118,the value of plot_cost is         : 41.2646823132172 

 At row:185, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:185, column:119,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:119,the value of plot_cost is         : 41.485470388554404 

 At row:185, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:185, column:120,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:120,the value of plot_cost is         : 41.70706652429413 

 At row:185, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:185, column:121,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:121,the value of plot_cost is         : 41.92947072043635 

 At row:185, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:185, column:122,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:122,the value of plot_cost is         : 42.152682976981104 

 At row:185, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:185, column:123,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:123,the value of plot_cost is         : 42.376703293928365 

 At row:185, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:185, column:124,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:124,the value of plot_cost is         : 42.60153167127816 

 At row:185, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:185, column:125,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:125,the value of plot_cost is         : 42.827168109030445 

 At row:185, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:185, column:126,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:126,the value of plot_cost is         : 43.05361260718525 

 At row:185, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:185, column:127,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:127,the value of plot_cost is         : 43.280865165742576 

 At row:185, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:185, column:128,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:128,the value of plot_cost is         : 43.50892578470241 

 At row:185, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:185, column:129,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:129,the value of plot_cost is         : 43.73779446406476 

 At row:185, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:185, column:130,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:130,the value of plot_cost is         : 43.96747120382963 

 At row:185, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:185, column:131,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:131,the value of plot_cost is         : 44.19795600399701 

 At row:185, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:185, column:132,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:132,the value of plot_cost is         : 44.42924886456691 

 At row:185, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:185, column:133,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:133,the value of plot_cost is         : 44.66134978553933 

 At row:185, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:185, column:134,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:134,the value of plot_cost is         : 44.89425876691425 

 At row:185, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:185, column:135,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:135,the value of plot_cost is         : 45.127975808691716 

 At row:185, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:185, column:136,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:136,the value of plot_cost is         : 45.36250091087167 

 At row:185, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:185, column:137,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:137,the value of plot_cost is         : 45.59783407345414 

 At row:185, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:185, column:138,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:138,the value of plot_cost is         : 45.833975296439135 

 At row:185, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:185, column:139,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:139,the value of plot_cost is         : 46.07092457982664 

 At row:185, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:185, column:140,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:140,the value of plot_cost is         : 46.30868192361665 

 At row:185, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:185, column:141,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:141,the value of plot_cost is         : 46.547247327809174 

 At row:185, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:185, column:142,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:142,the value of plot_cost is         : 46.786620792404236 

 At row:185, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:185, column:143,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:143,the value of plot_cost is         : 47.02680231740179 

 At row:185, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:185, column:144,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:144,the value of plot_cost is         : 47.267791902801896 

 At row:185, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:185, column:145,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:145,the value of plot_cost is         : 47.50958954860449 

 At row:185, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:185, column:146,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:146,the value of plot_cost is         : 47.752195254809585 

 At row:185, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:185, column:147,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:147,the value of plot_cost is         : 47.99560902141721 

 At row:185, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:185, column:148,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:148,the value of plot_cost is         : 48.23983084842736 

 At row:185, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:185, column:149,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:149,the value of plot_cost is         : 48.48486073584 

 At row:185, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:185, column:150,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:150,the value of plot_cost is         : 48.73069868365517 

 At row:185, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:185, column:151,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:151,the value of plot_cost is         : 48.97734469187287 

 At row:185, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:185, column:152,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:152,the value of plot_cost is         : 49.224798760493066 

 At row:185, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:185, column:153,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:153,the value of plot_cost is         : 49.47306088951578 

 At row:185, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:185, column:154,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:154,the value of plot_cost is         : 49.72213107894101 

 At row:185, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:185, column:155,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:155,the value of plot_cost is         : 49.97200932876876 

 At row:185, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:185, column:156,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:156,the value of plot_cost is         : 50.22269563899903 

 At row:185, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:185, column:157,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:157,the value of plot_cost is         : 50.4741900096318 

 At row:185, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:185, column:158,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:158,the value of plot_cost is         : 50.726492440667094 

 At row:185, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:185, column:159,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:159,the value of plot_cost is         : 50.97960293210489 

 At row:185, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:185, column:160,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:160,the value of plot_cost is         : 51.23352148394521 

 At row:185, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:185, column:161,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:161,the value of plot_cost is         : 51.48824809618806 

 At row:185, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:185, column:162,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:162,the value of plot_cost is         : 51.743782768833405 

 At row:185, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:185, column:163,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:163,the value of plot_cost is         : 52.00012550188127 

 At row:185, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:185, column:164,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:164,the value of plot_cost is         : 52.257276295331664 

 At row:185, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:185, column:165,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:165,the value of plot_cost is         : 52.515235149184555 

 At row:185, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:185, column:166,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:166,the value of plot_cost is         : 52.77400206343996 

 At row:185, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:185, column:167,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:167,the value of plot_cost is         : 53.03357703809789 

 At row:185, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:185, column:168,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:168,the value of plot_cost is         : 53.29396007315834 

 At row:185, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:185, column:169,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:169,the value of plot_cost is         : 53.555151168621286 

 At row:185, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:185, column:170,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:170,the value of plot_cost is         : 53.81715032448676 

 At row:185, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:185, column:171,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:171,the value of plot_cost is         : 54.07995754075474 

 At row:185, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:185, column:172,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:172,the value of plot_cost is         : 54.34357281742525 

 At row:185, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:185, column:173,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:173,the value of plot_cost is         : 54.60799615449825 

 At row:185, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:185, column:174,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:174,the value of plot_cost is         : 54.8732275519738 

 At row:185, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:185, column:175,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:175,the value of plot_cost is         : 55.13926700985186 

 At row:185, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:185, column:176,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:176,the value of plot_cost is         : 55.40611452813241 

 At row:185, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:185, column:177,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:177,the value of plot_cost is         : 55.673770106815496 

 At row:185, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:185, column:178,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:178,the value of plot_cost is         : 55.94223374590108 

 At row:185, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:185, column:179,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:179,the value of plot_cost is         : 56.211505445389186 

 At row:185, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:185, column:180,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:180,the value of plot_cost is         : 56.481585205279806 

 At row:185, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:185, column:181,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:181,the value of plot_cost is         : 56.75247302557296 

 At row:185, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:185, column:182,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:182,the value of plot_cost is         : 57.024168906268606 

 At row:185, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:185, column:183,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:183,the value of plot_cost is         : 57.296672847366764 

 At row:185, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:185, column:184,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:184,the value of plot_cost is         : 57.56998484886746 

 At row:185, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:185, column:185,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:185,the value of plot_cost is         : 57.84410491077067 

 At row:185, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:185, column:186,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:186,the value of plot_cost is         : 58.11903303307637 

 At row:185, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:185, column:187,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:187,the value of plot_cost is         : 58.39476921578459 

 At row:185, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:185, column:188,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:188,the value of plot_cost is         : 58.67131345889535 

 At row:185, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:185, column:189,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:189,the value of plot_cost is         : 58.94866576240859 

 At row:185, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:185, column:190,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:190,the value of plot_cost is         : 59.226826126324376 

 At row:185, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:185, column:191,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:191,the value of plot_cost is         : 59.50579455064266 

 At row:185, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:185, column:192,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:192,the value of plot_cost is         : 59.78557103536346 

 At row:185, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:185, column:193,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:193,the value of plot_cost is         : 60.06615558048677 

 At row:185, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:185, column:194,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:194,the value of plot_cost is         : 60.34754818601262 

 At row:185, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:185, column:195,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:195,the value of plot_cost is         : 60.62974885194099 

 At row:185, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:185, column:196,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:196,the value of plot_cost is         : 60.91275757827184 

 At row:185, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:185, column:197,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:197,the value of plot_cost is         : 61.19657436500522 

 At row:185, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:185, column:198,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:198,the value of plot_cost is         : 61.48119921214111 

 At row:185, column:199,the value of plot_t0 is           : 3.0
 At row:185, column:199,the value of plot_t1 is           : 2.7185929648241207
 At row:185, column:199,the value of plot_cost is         : 61.76663211967952 

 At row:186, column:0,the value of plot_t0 is           : -1.0
 At row:186, column:0,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:0,the value of plot_cost is         : 21.581604757455626 

 At row:186, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:186, column:1,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:1,the value of plot_cost is         : 21.709719848344385 

 At row:186, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:186, column:2,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:2,the value of plot_cost is         : 21.838642999635656 

 At row:186, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:186, column:3,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:3,the value of plot_cost is         : 21.968374211329447 

 At row:186, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:186, column:4,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:4,the value of plot_cost is         : 22.098913483425747 

 At row:186, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:186, column:5,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:5,the value of plot_cost is         : 22.230260815924566 

 At row:186, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:186, column:6,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:6,the value of plot_cost is         : 22.362416208825906 

 At row:186, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:186, column:7,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:7,the value of plot_cost is         : 22.495379662129753 

 At row:186, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:186, column:8,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:8,the value of plot_cost is         : 22.62915117583612 

 At row:186, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:186, column:9,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:9,the value of plot_cost is         : 22.763730749944994 

 At row:186, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:186, column:10,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:10,the value of plot_cost is         : 22.89911838445639 

 At row:186, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:186, column:11,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:11,the value of plot_cost is         : 23.035314079370295 

 At row:186, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:186, column:12,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:12,the value of plot_cost is         : 23.17231783468672 

 At row:186, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:186, column:13,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:13,the value of plot_cost is         : 23.310129650405663 

 At row:186, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:186, column:14,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:14,the value of plot_cost is         : 23.448749526527113 

 At row:186, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:186, column:15,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:15,the value of plot_cost is         : 23.58817746305109 

 At row:186, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:186, column:16,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:16,the value of plot_cost is         : 23.728413459977574 

 At row:186, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:186, column:17,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:17,the value of plot_cost is         : 23.869457517306568 

 At row:186, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:186, column:18,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:18,the value of plot_cost is         : 24.011309635038092 

 At row:186, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:186, column:19,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:19,the value of plot_cost is         : 24.153969813172115 

 At row:186, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:186, column:20,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:20,the value of plot_cost is         : 24.29743805170866 

 At row:186, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:186, column:21,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:21,the value of plot_cost is         : 24.441714350647715 

 At row:186, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:186, column:22,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:22,the value of plot_cost is         : 24.586798709989285 

 At row:186, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:186, column:23,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:23,the value of plot_cost is         : 24.732691129733386 

 At row:186, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:186, column:24,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:24,the value of plot_cost is         : 24.87939160987999 

 At row:186, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:186, column:25,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:25,the value of plot_cost is         : 25.026900150429103 

 At row:186, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:186, column:26,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:26,the value of plot_cost is         : 25.175216751380745 

 At row:186, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:186, column:27,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:27,the value of plot_cost is         : 25.324341412734896 

 At row:186, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:186, column:28,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:28,the value of plot_cost is         : 25.474274134491566 

 At row:186, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:186, column:29,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:29,the value of plot_cost is         : 25.62501491665075 

 At row:186, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:186, column:30,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:30,the value of plot_cost is         : 25.776563759212436 

 At row:186, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:186, column:31,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:31,the value of plot_cost is         : 25.928920662176647 

 At row:186, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:186, column:32,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:32,the value of plot_cost is         : 26.08208562554337 

 At row:186, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:186, column:33,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:33,the value of plot_cost is         : 26.236058649312614 

 At row:186, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:186, column:34,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:34,the value of plot_cost is         : 26.39083973348437 

 At row:186, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:186, column:35,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:35,the value of plot_cost is         : 26.54642887805865 

 At row:186, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:186, column:36,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:36,the value of plot_cost is         : 26.702826083035433 

 At row:186, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:186, column:37,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:37,the value of plot_cost is         : 26.860031348414726 

 At row:186, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:186, column:38,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:38,the value of plot_cost is         : 27.018044674196553 

 At row:186, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:186, column:39,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:39,the value of plot_cost is         : 27.17686606038088 

 At row:186, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:186, column:40,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:40,the value of plot_cost is         : 27.336495506967722 

 At row:186, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:186, column:41,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:41,the value of plot_cost is         : 27.496933013957083 

 At row:186, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:186, column:42,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:42,the value of plot_cost is         : 27.65817858134896 

 At row:186, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:186, column:43,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:43,the value of plot_cost is         : 27.820232209143356 

 At row:186, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:186, column:44,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:44,the value of plot_cost is         : 27.983093897340257 

 At row:186, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:186, column:45,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:45,the value of plot_cost is         : 28.14676364593969 

 At row:186, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:186, column:46,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:46,the value of plot_cost is         : 28.311241454941623 

 At row:186, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:186, column:47,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:47,the value of plot_cost is         : 28.476527324346073 

 At row:186, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:186, column:48,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:48,the value of plot_cost is         : 28.64262125415305 

 At row:186, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:186, column:49,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:49,the value of plot_cost is         : 28.809523244362527 

 At row:186, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:186, column:50,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:50,the value of plot_cost is         : 28.977233294974518 

 At row:186, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:186, column:51,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:51,the value of plot_cost is         : 29.14575140598903 

 At row:186, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:186, column:52,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:52,the value of plot_cost is         : 29.315077577406058 

 At row:186, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:186, column:53,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:53,the value of plot_cost is         : 29.485211809225607 

 At row:186, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:186, column:54,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:54,the value of plot_cost is         : 29.656154101447658 

 At row:186, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:186, column:55,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:55,the value of plot_cost is         : 29.827904454072243 

 At row:186, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:186, column:56,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:56,the value of plot_cost is         : 30.000462867099323 

 At row:186, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:186, column:57,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:57,the value of plot_cost is         : 30.173829340528933 

 At row:186, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:186, column:58,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:58,the value of plot_cost is         : 30.348003874361048 

 At row:186, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:186, column:59,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:59,the value of plot_cost is         : 30.522986468595683 

 At row:186, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:186, column:60,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:60,the value of plot_cost is         : 30.698777123232826 

 At row:186, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:186, column:61,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:61,the value of plot_cost is         : 30.875375838272486 

 At row:186, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:186, column:62,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:62,the value of plot_cost is         : 31.05278261371467 

 At row:186, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:186, column:63,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:63,the value of plot_cost is         : 31.230997449559368 

 At row:186, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:186, column:64,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:64,the value of plot_cost is         : 31.410020345806572 

 At row:186, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:186, column:65,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:65,the value of plot_cost is         : 31.5898513024563 

 At row:186, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:186, column:66,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:66,the value of plot_cost is         : 31.770490319508536 

 At row:186, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:186, column:67,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:67,the value of plot_cost is         : 31.951937396963295 

 At row:186, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:186, column:68,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:68,the value of plot_cost is         : 32.13419253482056 

 At row:186, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:186, column:69,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:69,the value of plot_cost is         : 32.317255733080344 

 At row:186, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:186, column:70,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:70,the value of plot_cost is         : 32.50112699174264 

 At row:186, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:186, column:71,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:71,the value of plot_cost is         : 32.68580631080745 

 At row:186, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:186, column:72,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:72,the value of plot_cost is         : 32.87129369027478 

 At row:186, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:186, column:73,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:73,the value of plot_cost is         : 33.05758913014463 

 At row:186, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:186, column:74,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:74,the value of plot_cost is         : 33.244692630416985 

 At row:186, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:186, column:75,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:75,the value of plot_cost is         : 33.432604191091876 

 At row:186, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:186, column:76,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:76,the value of plot_cost is         : 33.62132381216926 

 At row:186, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:186, column:77,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:77,the value of plot_cost is         : 33.81085149364916 

 At row:186, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:186, column:78,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:78,the value of plot_cost is         : 34.00118723553158 

 At row:186, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:186, column:79,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:79,the value of plot_cost is         : 34.19233103781652 

 At row:186, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:186, column:80,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:80,the value of plot_cost is         : 34.38428290050396 

 At row:186, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:186, column:81,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:81,the value of plot_cost is         : 34.57704282359392 

 At row:186, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:186, column:82,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:82,the value of plot_cost is         : 34.770610807086406 

 At row:186, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:186, column:83,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:83,the value of plot_cost is         : 34.964986850981404 

 At row:186, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:186, column:84,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:84,the value of plot_cost is         : 35.16017095527891 

 At row:186, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:186, column:85,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:85,the value of plot_cost is         : 35.35616311997895 

 At row:186, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:186, column:86,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:86,the value of plot_cost is         : 35.55296334508149 

 At row:186, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:186, column:87,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:87,the value of plot_cost is         : 35.75057163058654 

 At row:186, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:186, column:88,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:88,the value of plot_cost is         : 35.94898797649412 

 At row:186, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:186, column:89,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:89,the value of plot_cost is         : 36.148212382804196 

 At row:186, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:186, column:90,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:90,the value of plot_cost is         : 36.348244849516796 

 At row:186, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:186, column:91,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:91,the value of plot_cost is         : 36.54908537663191 

 At row:186, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:186, column:92,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:92,the value of plot_cost is         : 36.75073396414954 

 At row:186, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:186, column:93,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:93,the value of plot_cost is         : 36.95319061206968 

 At row:186, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:186, column:94,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:94,the value of plot_cost is         : 37.15645532039235 

 At row:186, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:186, column:95,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:95,the value of plot_cost is         : 37.36052808911753 

 At row:186, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:186, column:96,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:96,the value of plot_cost is         : 37.565408918245225 

 At row:186, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:186, column:97,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:97,the value of plot_cost is         : 37.77109780777544 

 At row:186, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:186, column:98,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:98,the value of plot_cost is         : 37.977594757708154 

 At row:186, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:186, column:99,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:99,the value of plot_cost is         : 38.18489976804339 

 At row:186, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:186, column:100,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:100,the value of plot_cost is         : 38.39301283878114 

 At row:186, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:186, column:101,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:101,the value of plot_cost is         : 38.6019339699214 

 At row:186, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:186, column:102,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:102,the value of plot_cost is         : 38.81166316146419 

 At row:186, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:186, column:103,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:103,the value of plot_cost is         : 39.02220041340948 

 At row:186, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:186, column:104,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:104,the value of plot_cost is         : 39.233545725757295 

 At row:186, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:186, column:105,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:105,the value of plot_cost is         : 39.44569909850762 

 At row:186, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:186, column:106,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:106,the value of plot_cost is         : 39.65866053166047 

 At row:186, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:186, column:107,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:107,the value of plot_cost is         : 39.87243002521583 

 At row:186, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:186, column:108,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:108,the value of plot_cost is         : 40.0870075791737 

 At row:186, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:186, column:109,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:109,the value of plot_cost is         : 40.30239319353408 

 At row:186, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:186, column:110,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:110,the value of plot_cost is         : 40.518586868296985 

 At row:186, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:186, column:111,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:111,the value of plot_cost is         : 40.735588603462396 

 At row:186, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:186, column:112,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:112,the value of plot_cost is         : 40.953398399030334 

 At row:186, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:186, column:113,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:113,the value of plot_cost is         : 41.17201625500078 

 At row:186, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:186, column:114,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:114,the value of plot_cost is         : 41.391442171373754 

 At row:186, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:186, column:115,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:115,the value of plot_cost is         : 41.611676148149236 

 At row:186, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:186, column:116,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:116,the value of plot_cost is         : 41.832718185327224 

 At row:186, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:186, column:117,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:117,the value of plot_cost is         : 42.05456828290773 

 At row:186, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:186, column:118,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:118,the value of plot_cost is         : 42.27722644089076 

 At row:186, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:186, column:119,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:119,the value of plot_cost is         : 42.5006926592763 

 At row:186, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:186, column:120,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:120,the value of plot_cost is         : 42.72496693806434 

 At row:186, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:186, column:121,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:121,the value of plot_cost is         : 42.950049277254905 

 At row:186, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:186, column:122,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:122,the value of plot_cost is         : 43.17593967684799 

 At row:186, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:186, column:123,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:123,the value of plot_cost is         : 43.40263813684359 

 At row:186, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:186, column:124,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:124,the value of plot_cost is         : 43.630144657241715 

 At row:186, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:186, column:125,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:125,the value of plot_cost is         : 43.85845923804234 

 At row:186, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:186, column:126,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:126,the value of plot_cost is         : 44.08758187924549 

 At row:186, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:186, column:127,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:127,the value of plot_cost is         : 44.31751258085115 

 At row:186, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:186, column:128,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:128,the value of plot_cost is         : 44.548251342859324 

 At row:186, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:186, column:129,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:129,the value of plot_cost is         : 44.77979816527001 

 At row:186, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:186, column:130,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:130,the value of plot_cost is         : 45.012153048083206 

 At row:186, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:186, column:131,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:131,the value of plot_cost is         : 45.245315991298924 

 At row:186, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:186, column:132,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:132,the value of plot_cost is         : 45.47928699491715 

 At row:186, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:186, column:133,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:133,the value of plot_cost is         : 45.71406605893791 

 At row:186, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:186, column:134,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:134,the value of plot_cost is         : 45.94965318336119 

 At row:186, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:186, column:135,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:135,the value of plot_cost is         : 46.186048368186974 

 At row:186, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:186, column:136,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:136,the value of plot_cost is         : 46.42325161341525 

 At row:186, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:186, column:137,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:137,the value of plot_cost is         : 46.661262919046074 

 At row:186, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:186, column:138,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:138,the value of plot_cost is         : 46.90008228507939 

 At row:186, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:186, column:139,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:139,the value of plot_cost is         : 47.13970971151523 

 At row:186, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:186, column:140,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:140,the value of plot_cost is         : 47.38014519835358 

 At row:186, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:186, column:141,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:141,the value of plot_cost is         : 47.62138874559446 

 At row:186, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:186, column:142,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:142,the value of plot_cost is         : 47.86344035323784 

 At row:186, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:186, column:143,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:143,the value of plot_cost is         : 48.106300021283744 

 At row:186, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:186, column:144,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:144,the value of plot_cost is         : 48.34996774973215 

 At row:186, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:186, column:145,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:145,the value of plot_cost is         : 48.59444353858309 

 At row:186, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:186, column:146,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:146,the value of plot_cost is         : 48.83972738783655 

 At row:186, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:186, column:147,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:147,the value of plot_cost is         : 49.085819297492506 

 At row:186, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:186, column:148,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:148,the value of plot_cost is         : 49.332719267550985 

 At row:186, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:186, column:149,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:149,the value of plot_cost is         : 49.58042729801197 

 At row:186, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:186, column:150,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:150,the value of plot_cost is         : 49.82894338887547 

 At row:186, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:186, column:151,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:151,the value of plot_cost is         : 50.078267540141496 

 At row:186, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:186, column:152,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:152,the value of plot_cost is         : 50.328399751810025 

 At row:186, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:186, column:153,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:153,the value of plot_cost is         : 50.57934002388107 

 At row:186, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:186, column:154,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:154,the value of plot_cost is         : 50.83108835635466 

 At row:186, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:186, column:155,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:155,the value of plot_cost is         : 51.083644749230736 

 At row:186, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:186, column:156,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:156,the value of plot_cost is         : 51.337009202509336 

 At row:186, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:186, column:157,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:157,the value of plot_cost is         : 51.59118171619044 

 At row:186, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:186, column:158,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:158,the value of plot_cost is         : 51.846162290274066 

 At row:186, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:186, column:159,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:159,the value of plot_cost is         : 52.10195092476022 

 At row:186, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:186, column:160,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:160,the value of plot_cost is         : 52.35854761964886 

 At row:186, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:186, column:161,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:161,the value of plot_cost is         : 52.615952374940036 

 At row:186, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:186, column:162,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:162,the value of plot_cost is         : 52.87416519063372 

 At row:186, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:186, column:163,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:163,the value of plot_cost is         : 53.13318606672992 

 At row:186, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:186, column:164,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:164,the value of plot_cost is         : 53.39301500322865 

 At row:186, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:186, column:165,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:165,the value of plot_cost is         : 53.65365200012988 

 At row:186, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:186, column:166,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:166,the value of plot_cost is         : 53.91509705743364 

 At row:186, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:186, column:167,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:167,the value of plot_cost is         : 54.17735017513989 

 At row:186, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:186, column:168,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:168,the value of plot_cost is         : 54.44041135324867 

 At row:186, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:186, column:169,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:169,the value of plot_cost is         : 54.704280591759954 

 At row:186, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:186, column:170,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:170,the value of plot_cost is         : 54.968957890673764 

 At row:186, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:186, column:171,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:171,the value of plot_cost is         : 55.234443249990086 

 At row:186, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:186, column:172,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:172,the value of plot_cost is         : 55.500736669708914 

 At row:186, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:186, column:173,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:173,the value of plot_cost is         : 55.76783814983028 

 At row:186, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:186, column:174,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:174,the value of plot_cost is         : 56.03574769035416 

 At row:186, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:186, column:175,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:175,the value of plot_cost is         : 56.304465291280536 

 At row:186, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:186, column:176,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:176,the value of plot_cost is         : 56.573990952609435 

 At row:186, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:186, column:177,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:177,the value of plot_cost is         : 56.84432467434085 

 At row:186, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:186, column:178,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:178,the value of plot_cost is         : 57.11546645647478 

 At row:186, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:186, column:179,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:179,the value of plot_cost is         : 57.38741629901122 

 At row:186, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:186, column:180,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:180,the value of plot_cost is         : 57.66017420195018 

 At row:186, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:186, column:181,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:181,the value of plot_cost is         : 57.93374016529165 

 At row:186, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:186, column:182,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:182,the value of plot_cost is         : 58.20811418903563 

 At row:186, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:186, column:183,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:183,the value of plot_cost is         : 58.48329627318214 

 At row:186, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:186, column:184,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:184,the value of plot_cost is         : 58.75928641773116 

 At row:186, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:186, column:185,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:185,the value of plot_cost is         : 59.0360846226827 

 At row:186, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:186, column:186,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:186,the value of plot_cost is         : 59.31369088803676 

 At row:186, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:186, column:187,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:187,the value of plot_cost is         : 59.59210521379332 

 At row:186, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:186, column:188,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:188,the value of plot_cost is         : 59.8713275999524 

 At row:186, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:186, column:189,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:189,the value of plot_cost is         : 60.151358046513984 

 At row:186, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:186, column:190,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:190,the value of plot_cost is         : 60.43219655347809 

 At row:186, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:186, column:191,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:191,the value of plot_cost is         : 60.713843120844714 

 At row:186, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:186, column:192,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:192,the value of plot_cost is         : 60.996297748613856 

 At row:186, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:186, column:193,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:193,the value of plot_cost is         : 61.2795604367855 

 At row:186, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:186, column:194,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:194,the value of plot_cost is         : 61.56363118535969 

 At row:186, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:186, column:195,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:195,the value of plot_cost is         : 61.84850999433638 

 At row:186, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:186, column:196,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:196,the value of plot_cost is         : 62.13419686371558 

 At row:186, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:186, column:197,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:197,the value of plot_cost is         : 62.4206917934973 

 At row:186, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:186, column:198,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:198,the value of plot_cost is         : 62.70799478368152 

 At row:186, column:199,the value of plot_t0 is           : 3.0
 At row:186, column:199,the value of plot_t1 is           : 2.7386934673366836
 At row:186, column:199,the value of plot_cost is         : 62.996105834268256 

 At row:187, column:0,the value of plot_t0 is           : -1.0
 At row:187, column:0,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:0,the value of plot_cost is         : 22.290710660264704 

 At row:187, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:187, column:1,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:1,the value of plot_cost is         : 22.421503894201795 

 At row:187, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:187, column:2,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:2,the value of plot_cost is         : 22.553105188541405 

 At row:187, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:187, column:3,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:3,the value of plot_cost is         : 22.68551454328353 

 At row:187, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:187, column:4,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:4,the value of plot_cost is         : 22.81873195842817 

 At row:187, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:187, column:5,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:5,the value of plot_cost is         : 22.95275743397532 

 At row:187, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:187, column:6,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:6,the value of plot_cost is         : 23.087590969924996 

 At row:187, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:187, column:7,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:7,the value of plot_cost is         : 23.223232566277183 

 At row:187, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:187, column:8,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:8,the value of plot_cost is         : 23.359682223031882 

 At row:187, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:187, column:9,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:9,the value of plot_cost is         : 23.496939940189097 

 At row:187, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:187, column:10,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:10,the value of plot_cost is         : 23.635005717748825 

 At row:187, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:187, column:11,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:11,the value of plot_cost is         : 23.77387955571107 

 At row:187, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:187, column:12,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:12,the value of plot_cost is         : 23.913561454075825 

 At row:187, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:187, column:13,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:13,the value of plot_cost is         : 24.0540514128431 

 At row:187, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:187, column:14,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:14,the value of plot_cost is         : 24.19534943201289 

 At row:187, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:187, column:15,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:15,the value of plot_cost is         : 24.33745551158521 

 At row:187, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:187, column:16,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:16,the value of plot_cost is         : 24.48036965156002 

 At row:187, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:187, column:17,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:17,the value of plot_cost is         : 24.624091851937358 

 At row:187, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:187, column:18,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:18,the value of plot_cost is         : 24.76862211271721 

 At row:187, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:187, column:19,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:19,the value of plot_cost is         : 24.913960433899575 

 At row:187, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:187, column:20,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:20,the value of plot_cost is         : 25.06010681548445 

 At row:187, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:187, column:21,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:21,the value of plot_cost is         : 25.207061257471842 

 At row:187, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:187, column:22,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:22,the value of plot_cost is         : 25.354823759861752 

 At row:187, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:187, column:23,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:23,the value of plot_cost is         : 25.50339432265418 

 At row:187, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:187, column:24,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:24,the value of plot_cost is         : 25.652772945849122 

 At row:187, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:187, column:25,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:25,the value of plot_cost is         : 25.802959629446576 

 At row:187, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:187, column:26,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:26,the value of plot_cost is         : 25.953954373446557 

 At row:187, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:187, column:27,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:27,the value of plot_cost is         : 26.10575717784904 

 At row:187, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:187, column:28,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:28,the value of plot_cost is         : 26.258368042654045 

 At row:187, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:187, column:29,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:29,the value of plot_cost is         : 26.411786967861563 

 At row:187, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:187, column:30,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:30,the value of plot_cost is         : 26.566013953471586 

 At row:187, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:187, column:31,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:31,the value of plot_cost is         : 26.72104899948413 

 At row:187, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:187, column:32,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:32,the value of plot_cost is         : 26.876892105899188 

 At row:187, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:187, column:33,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:33,the value of plot_cost is         : 27.033543272716773 

 At row:187, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:187, column:34,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:34,the value of plot_cost is         : 27.19100249993686 

 At row:187, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:187, column:35,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:35,the value of plot_cost is         : 27.34926978755948 

 At row:187, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:187, column:36,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:36,the value of plot_cost is         : 27.508345135584598 

 At row:187, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:187, column:37,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:37,the value of plot_cost is         : 27.668228544012226 

 At row:187, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:187, column:38,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:38,the value of plot_cost is         : 27.82892001284239 

 At row:187, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:187, column:39,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:39,the value of plot_cost is         : 27.990419542075053 

 At row:187, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:187, column:40,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:40,the value of plot_cost is         : 28.15272713171023 

 At row:187, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:187, column:41,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:41,the value of plot_cost is         : 28.315842781747925 

 At row:187, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:187, column:42,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:42,the value of plot_cost is         : 28.479766492188137 

 At row:187, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:187, column:43,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:43,the value of plot_cost is         : 28.64449826303087 

 At row:187, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:187, column:44,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:44,the value of plot_cost is         : 28.81003809427611 

 At row:187, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:187, column:45,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:45,the value of plot_cost is         : 28.976385985923873 

 At row:187, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:187, column:46,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:46,the value of plot_cost is         : 29.143541937974142 

 At row:187, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:187, column:47,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:47,the value of plot_cost is         : 29.311505950426927 

 At row:187, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:187, column:48,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:48,the value of plot_cost is         : 29.480278023282242 

 At row:187, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:187, column:49,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:49,the value of plot_cost is         : 29.649858156540052 

 At row:187, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:187, column:50,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:50,the value of plot_cost is         : 29.82024635020038 

 At row:187, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:187, column:51,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:51,the value of plot_cost is         : 29.99144260426323 

 At row:187, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:187, column:52,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:52,the value of plot_cost is         : 30.163446918728596 

 At row:187, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:187, column:53,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:53,the value of plot_cost is         : 30.336259293596477 

 At row:187, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:187, column:54,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:54,the value of plot_cost is         : 30.509879728866864 

 At row:187, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:187, column:55,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:55,the value of plot_cost is         : 30.68430822453978 

 At row:187, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:187, column:56,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:56,the value of plot_cost is         : 30.859544780615202 

 At row:187, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:187, column:57,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:57,the value of plot_cost is         : 31.035589397093148 

 At row:187, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:187, column:58,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:58,the value of plot_cost is         : 31.212442073973598 

 At row:187, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:187, column:59,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:59,the value of plot_cost is         : 31.390102811256565 

 At row:187, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:187, column:60,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:60,the value of plot_cost is         : 31.568571608942044 

 At row:187, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:187, column:61,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:61,the value of plot_cost is         : 31.747848467030042 

 At row:187, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:187, column:62,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:62,the value of plot_cost is         : 31.92793338552056 

 At row:187, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:187, column:63,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:63,the value of plot_cost is         : 32.10882636441359 

 At row:187, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:187, column:64,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:64,the value of plot_cost is         : 32.29052740370913 

 At row:187, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:187, column:65,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:65,the value of plot_cost is         : 32.4730365034072 

 At row:187, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:187, column:66,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:66,the value of plot_cost is         : 32.65635366350777 

 At row:187, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:187, column:67,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:67,the value of plot_cost is         : 32.840478884010864 

 At row:187, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:187, column:68,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:68,the value of plot_cost is         : 33.02541216491647 

 At row:187, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:187, column:69,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:69,the value of plot_cost is         : 33.21115350622458 

 At row:187, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:187, column:70,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:70,the value of plot_cost is         : 33.39770290793521 

 At row:187, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:187, column:71,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:71,the value of plot_cost is         : 33.58506037004836 

 At row:187, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:187, column:72,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:72,the value of plot_cost is         : 33.77322589256403 

 At row:187, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:187, column:73,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:73,the value of plot_cost is         : 33.96219947548221 

 At row:187, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:187, column:74,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:74,the value of plot_cost is         : 34.1519811188029 

 At row:187, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:187, column:75,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:75,the value of plot_cost is         : 34.34257082252613 

 At row:187, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:187, column:76,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:76,the value of plot_cost is         : 34.533968586651845 

 At row:187, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:187, column:77,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:77,the value of plot_cost is         : 34.72617441118009 

 At row:187, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:187, column:78,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:78,the value of plot_cost is         : 34.91918829611084 

 At row:187, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:187, column:79,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:79,the value of plot_cost is         : 35.113010241444115 

 At row:187, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:187, column:80,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:80,the value of plot_cost is         : 35.3076402471799 

 At row:187, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:187, column:81,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:81,the value of plot_cost is         : 35.50307831331819 

 At row:187, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:187, column:82,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:82,the value of plot_cost is         : 35.69932443985901 

 At row:187, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:187, column:83,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:83,the value of plot_cost is         : 35.89637862680234 

 At row:187, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:187, column:84,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:84,the value of plot_cost is         : 36.094240874148184 

 At row:187, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:187, column:85,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:85,the value of plot_cost is         : 36.292911181896564 

 At row:187, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:187, column:86,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:86,the value of plot_cost is         : 36.49238955004743 

 At row:187, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:187, column:87,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:87,the value of plot_cost is         : 36.692675978600825 

 At row:187, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:187, column:88,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:88,the value of plot_cost is         : 36.89377046755673 

 At row:187, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:187, column:89,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:89,the value of plot_cost is         : 37.09567301691516 

 At row:187, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:187, column:90,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:90,the value of plot_cost is         : 37.298383626676085 

 At row:187, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:187, column:91,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:91,the value of plot_cost is         : 37.50190229683954 

 At row:187, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:187, column:92,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:92,the value of plot_cost is         : 37.7062290274055 

 At row:187, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:187, column:93,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:93,the value of plot_cost is         : 37.911363818373985 

 At row:187, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:187, column:94,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:94,the value of plot_cost is         : 38.11730666974498 

 At row:187, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:187, column:95,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:95,the value of plot_cost is         : 38.32405758151851 

 At row:187, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:187, column:96,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:96,the value of plot_cost is         : 38.531616553694526 

 At row:187, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:187, column:97,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:97,the value of plot_cost is         : 38.73998358627307 

 At row:187, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:187, column:98,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:98,the value of plot_cost is         : 38.94915867925413 

 At row:187, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:187, column:99,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:99,the value of plot_cost is         : 39.159141832637694 

 At row:187, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:187, column:100,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:100,the value of plot_cost is         : 39.36993304642379 

 At row:187, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:187, column:101,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:101,the value of plot_cost is         : 39.58153232061238 

 At row:187, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:187, column:102,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:102,the value of plot_cost is         : 39.793939655203495 

 At row:187, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:187, column:103,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:103,the value of plot_cost is         : 40.007155050197134 

 At row:187, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:187, column:104,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:104,the value of plot_cost is         : 40.22117850559328 

 At row:187, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:187, column:105,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:105,the value of plot_cost is         : 40.436010021391944 

 At row:187, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:187, column:106,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:106,the value of plot_cost is         : 40.65164959759313 

 At row:187, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:187, column:107,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:107,the value of plot_cost is         : 40.868097234196824 

 At row:187, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:187, column:108,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:108,the value of plot_cost is         : 41.08535293120303 

 At row:187, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:187, column:109,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:109,the value of plot_cost is         : 41.303416688611755 

 At row:187, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:187, column:110,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:110,the value of plot_cost is         : 41.52228850642299 

 At row:187, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:187, column:111,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:111,the value of plot_cost is         : 41.741968384636735 

 At row:187, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:187, column:112,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:112,the value of plot_cost is         : 41.962456323253 

 At row:187, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:187, column:113,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:113,the value of plot_cost is         : 42.18375232227179 

 At row:187, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:187, column:114,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:114,the value of plot_cost is         : 42.4058563816931 

 At row:187, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:187, column:115,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:115,the value of plot_cost is         : 42.628768501516916 

 At row:187, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:187, column:116,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:116,the value of plot_cost is         : 42.852488681743246 

 At row:187, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:187, column:117,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:117,the value of plot_cost is         : 43.07701692237209 

 At row:187, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:187, column:118,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:118,the value of plot_cost is         : 43.30235322340344 

 At row:187, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:187, column:119,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:119,the value of plot_cost is         : 43.52849758483731 

 At row:187, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:187, column:120,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:120,the value of plot_cost is         : 43.755450006673705 

 At row:187, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:187, column:121,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:121,the value of plot_cost is         : 43.9832104889126 

 At row:187, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:187, column:122,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:122,the value of plot_cost is         : 44.21177903155402 

 At row:187, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:187, column:123,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:123,the value of plot_cost is         : 44.441155634597955 

 At row:187, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:187, column:124,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:124,the value of plot_cost is         : 44.671340298044406 

 At row:187, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:187, column:125,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:125,the value of plot_cost is         : 44.902333021893384 

 At row:187, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:187, column:126,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:126,the value of plot_cost is         : 45.13413380614486 

 At row:187, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:187, column:127,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:127,the value of plot_cost is         : 45.36674265079886 

 At row:187, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:187, column:128,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:128,the value of plot_cost is         : 45.60015955585536 

 At row:187, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:187, column:129,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:129,the value of plot_cost is         : 45.834384521314384 

 At row:187, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:187, column:130,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:130,the value of plot_cost is         : 46.06941754717593 

 At row:187, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:187, column:131,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:131,the value of plot_cost is         : 46.305258633439976 

 At row:187, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:187, column:132,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:132,the value of plot_cost is         : 46.54190778010654 

 At row:187, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:187, column:133,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:133,the value of plot_cost is         : 46.77936498717563 

 At row:187, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:187, column:134,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:134,the value of plot_cost is         : 47.017630254647244 

 At row:187, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:187, column:135,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:135,the value of plot_cost is         : 47.25670358252137 

 At row:187, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:187, column:136,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:136,the value of plot_cost is         : 47.49658497079799 

 At row:187, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:187, column:137,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:137,the value of plot_cost is         : 47.73727441947713 

 At row:187, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:187, column:138,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:138,the value of plot_cost is         : 47.9787719285588 

 At row:187, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:187, column:139,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:139,the value of plot_cost is         : 48.22107749804297 

 At row:187, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:187, column:140,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:140,the value of plot_cost is         : 48.464191127929666 

 At row:187, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:187, column:141,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:141,the value of plot_cost is         : 48.708112818218865 

 At row:187, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:187, column:142,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:142,the value of plot_cost is         : 48.95284256891058 

 At row:187, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:187, column:143,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:143,the value of plot_cost is         : 49.19838038000482 

 At row:187, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:187, column:144,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:144,the value of plot_cost is         : 49.444726251501564 

 At row:187, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:187, column:145,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:145,the value of plot_cost is         : 49.691880183400855 

 At row:187, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:187, column:146,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:146,the value of plot_cost is         : 49.93984217570263 

 At row:187, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:187, column:147,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:147,the value of plot_cost is         : 50.188612228406924 

 At row:187, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:187, column:148,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:148,the value of plot_cost is         : 50.438190341513746 

 At row:187, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:187, column:149,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:149,the value of plot_cost is         : 50.68857651502306 

 At row:187, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:187, column:150,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:150,the value of plot_cost is         : 50.939770748934905 

 At row:187, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:187, column:151,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:151,the value of plot_cost is         : 51.191773043249256 

 At row:187, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:187, column:152,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:152,the value of plot_cost is         : 51.44458339796612 

 At row:187, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:187, column:153,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:153,the value of plot_cost is         : 51.698201813085504 

 At row:187, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:187, column:154,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:154,the value of plot_cost is         : 51.952628288607436 

 At row:187, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:187, column:155,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:155,the value of plot_cost is         : 52.207862824531844 

 At row:187, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:187, column:156,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:156,the value of plot_cost is         : 52.46390542085878 

 At row:187, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:187, column:157,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:157,the value of plot_cost is         : 52.72075607758822 

 At row:187, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:187, column:158,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:158,the value of plot_cost is         : 52.97841479472018 

 At row:187, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:187, column:159,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:159,the value of plot_cost is         : 53.23688157225465 

 At row:187, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:187, column:160,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:160,the value of plot_cost is         : 53.49615641019165 

 At row:187, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:187, column:161,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:161,the value of plot_cost is         : 53.75623930853116 

 At row:187, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:187, column:162,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:162,the value of plot_cost is         : 54.017130267273174 

 At row:187, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:187, column:163,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:163,the value of plot_cost is         : 54.27882928641772 

 At row:187, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:187, column:164,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:164,the value of plot_cost is         : 54.54133636596477 

 At row:187, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:187, column:165,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:165,the value of plot_cost is         : 54.80465150591435 

 At row:187, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:187, column:166,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:166,the value of plot_cost is         : 55.06877470626643 

 At row:187, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:187, column:167,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:167,the value of plot_cost is         : 55.333705967021025 

 At row:187, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:187, column:168,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:168,the value of plot_cost is         : 55.599445288178146 

 At row:187, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:187, column:169,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:169,the value of plot_cost is         : 55.865992669737764 

 At row:187, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:187, column:170,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:170,the value of plot_cost is         : 56.1333481116999 

 At row:187, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:187, column:171,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:171,the value of plot_cost is         : 56.40151161406457 

 At row:187, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:187, column:172,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:172,the value of plot_cost is         : 56.67048317683174 

 At row:187, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:187, column:173,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:173,the value of plot_cost is         : 56.94026280000142 

 At row:187, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:187, column:174,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:174,the value of plot_cost is         : 57.21085048357365 

 At row:187, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:187, column:175,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:175,the value of plot_cost is         : 57.48224622754836 

 At row:187, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:187, column:176,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:176,the value of plot_cost is         : 57.7544500319256 

 At row:187, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:187, column:177,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:177,the value of plot_cost is         : 58.02746189670535 

 At row:187, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:187, column:178,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:178,the value of plot_cost is         : 58.301281821887606 

 At row:187, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:187, column:179,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:179,the value of plot_cost is         : 58.575909807472385 

 At row:187, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:187, column:180,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:180,the value of plot_cost is         : 58.85134585345968 

 At row:187, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:187, column:181,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:181,the value of plot_cost is         : 59.12758995984948 

 At row:187, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:187, column:182,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:182,the value of plot_cost is         : 59.404642126641804 

 At row:187, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:187, column:183,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:183,the value of plot_cost is         : 59.682502353836654 

 At row:187, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:187, column:184,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:184,the value of plot_cost is         : 59.961170641433995 

 At row:187, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:187, column:185,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:185,the value of plot_cost is         : 60.240646989433884 

 At row:187, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:187, column:186,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:186,the value of plot_cost is         : 60.52093139783627 

 At row:187, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:187, column:187,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:187,the value of plot_cost is         : 60.80202386664117 

 At row:187, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:187, column:188,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:188,the value of plot_cost is         : 61.08392439584858 

 At row:187, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:187, column:189,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:189,the value of plot_cost is         : 61.36663298545851 

 At row:187, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:187, column:190,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:190,the value of plot_cost is         : 61.65014963547095 

 At row:187, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:187, column:191,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:191,the value of plot_cost is         : 61.93447434588592 

 At row:187, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:187, column:192,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:192,the value of plot_cost is         : 62.21960711670338 

 At row:187, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:187, column:193,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:193,the value of plot_cost is         : 62.505547947923375 

 At row:187, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:187, column:194,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:194,the value of plot_cost is         : 62.7922968395459 

 At row:187, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:187, column:195,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:195,the value of plot_cost is         : 63.07985379157092 

 At row:187, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:187, column:196,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:196,the value of plot_cost is         : 63.36821880399845 

 At row:187, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:187, column:197,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:197,the value of plot_cost is         : 63.6573918768285 

 At row:187, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:187, column:198,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:198,the value of plot_cost is         : 63.947373010061064 

 At row:187, column:199,the value of plot_t0 is           : 3.0
 At row:187, column:199,the value of plot_t1 is           : 2.758793969849246
 At row:187, column:199,the value of plot_cost is         : 64.23816220369615 

 At row:188, column:0,the value of plot_t0 is           : -1.0
 At row:188, column:0,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:0,the value of plot_cost is         : 23.012399217912968 

 At row:188, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:188, column:1,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:1,the value of plot_cost is         : 23.145870594898398 

 At row:188, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:188, column:2,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:2,the value of plot_cost is         : 23.280150032286336 

 At row:188, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:188, column:3,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:3,the value of plot_cost is         : 23.4152375300768 

 At row:188, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:188, column:4,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:4,the value of plot_cost is         : 23.551133088269772 

 At row:188, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:188, column:5,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:5,the value of plot_cost is         : 23.68783670686527 

 At row:188, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:188, column:6,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:6,the value of plot_cost is         : 23.825348385863276 

 At row:188, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:188, column:7,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:7,the value of plot_cost is         : 23.963668125263794 

 At row:188, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:188, column:8,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:8,the value of plot_cost is         : 24.102795925066832 

 At row:188, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:188, column:9,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:9,the value of plot_cost is         : 24.242731785272383 

 At row:188, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:188, column:10,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:10,the value of plot_cost is         : 24.383475705880446 

 At row:188, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:188, column:11,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:11,the value of plot_cost is         : 24.525027686891022 

 At row:188, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:188, column:12,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:12,the value of plot_cost is         : 24.667387728304114 

 At row:188, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:188, column:13,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:13,the value of plot_cost is         : 24.810555830119732 

 At row:188, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:188, column:14,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:14,the value of plot_cost is         : 24.954531992337856 

 At row:188, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:188, column:15,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:15,the value of plot_cost is         : 25.099316214958492 

 At row:188, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:188, column:16,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:16,the value of plot_cost is         : 25.24490849798165 

 At row:188, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:188, column:17,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:17,the value of plot_cost is         : 25.391308841407326 

 At row:188, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:188, column:18,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:18,the value of plot_cost is         : 25.538517245235514 

 At row:188, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:188, column:19,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:19,the value of plot_cost is         : 25.686533709466215 

 At row:188, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:188, column:20,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:20,the value of plot_cost is         : 25.83535823409943 

 At row:188, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:188, column:21,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:21,the value of plot_cost is         : 25.984990819135156 

 At row:188, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:188, column:22,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:22,the value of plot_cost is         : 26.1354314645734 

 At row:188, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:188, column:23,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:23,the value of plot_cost is         : 26.286680170414165 

 At row:188, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:188, column:24,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:24,the value of plot_cost is         : 26.438736936657442 

 At row:188, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:188, column:25,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:25,the value of plot_cost is         : 26.59160176330324 

 At row:188, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:188, column:26,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:26,the value of plot_cost is         : 26.745274650351547 

 At row:188, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:188, column:27,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:27,the value of plot_cost is         : 26.89975559780237 

 At row:188, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:188, column:28,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:28,the value of plot_cost is         : 27.055044605655706 

 At row:188, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:188, column:29,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:29,the value of plot_cost is         : 27.21114167391156 

 At row:188, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:188, column:30,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:30,the value of plot_cost is         : 27.368046802569925 

 At row:188, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:188, column:31,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:31,the value of plot_cost is         : 27.525759991630803 

 At row:188, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:188, column:32,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:32,the value of plot_cost is         : 27.684281241094197 

 At row:188, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:188, column:33,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:33,the value of plot_cost is         : 27.843610550960115 

 At row:188, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:188, column:34,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:34,the value of plot_cost is         : 28.003747921228538 

 At row:188, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:188, column:35,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:35,the value of plot_cost is         : 28.164693351899487 

 At row:188, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:188, column:36,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:36,the value of plot_cost is         : 28.326446842972942 

 At row:188, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:188, column:37,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:37,the value of plot_cost is         : 28.48900839444891 

 At row:188, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:188, column:38,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:38,the value of plot_cost is         : 28.65237800632741 

 At row:188, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:188, column:39,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:39,the value of plot_cost is         : 28.81655567860841 

 At row:188, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:188, column:40,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:40,the value of plot_cost is         : 28.98154141129192 

 At row:188, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:188, column:41,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:41,the value of plot_cost is         : 29.147335204377953 

 At row:188, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:188, column:42,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:42,the value of plot_cost is         : 29.3139370578665 

 At row:188, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:188, column:43,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:43,the value of plot_cost is         : 29.481346971757567 

 At row:188, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:188, column:44,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:44,the value of plot_cost is         : 29.649564946051147 

 At row:188, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:188, column:45,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:45,the value of plot_cost is         : 29.81859098074724 

 At row:188, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:188, column:46,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:46,the value of plot_cost is         : 29.988425075845846 

 At row:188, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:188, column:47,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:47,the value of plot_cost is         : 30.159067231346974 

 At row:188, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:188, column:48,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:48,the value of plot_cost is         : 30.330517447250614 

 At row:188, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:188, column:49,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:49,the value of plot_cost is         : 30.50277572355677 

 At row:188, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:188, column:50,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:50,the value of plot_cost is         : 30.67584206026543 

 At row:188, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:188, column:51,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:51,the value of plot_cost is         : 30.849716457376616 

 At row:188, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:188, column:52,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:52,the value of plot_cost is         : 31.024398914890313 

 At row:188, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:188, column:53,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:53,the value of plot_cost is         : 31.199889432806533 

 At row:188, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:188, column:54,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:54,the value of plot_cost is         : 31.376188011125258 

 At row:188, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:188, column:55,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:55,the value of plot_cost is         : 31.55329464984651 

 At row:188, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:188, column:56,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:56,the value of plot_cost is         : 31.731209348970268 

 At row:188, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:188, column:57,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:57,the value of plot_cost is         : 31.90993210849654 

 At row:188, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:188, column:58,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:58,the value of plot_cost is         : 32.08946292842534 

 At row:188, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:188, column:59,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:59,the value of plot_cost is         : 32.26980180875663 

 At row:188, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:188, column:60,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:60,the value of plot_cost is         : 32.45094874949046 

 At row:188, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:188, column:61,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:61,the value of plot_cost is         : 32.63290375062679 

 At row:188, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:188, column:62,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:62,the value of plot_cost is         : 32.81566681216563 

 At row:188, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:188, column:63,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:63,the value of plot_cost is         : 32.999237934107 

 At row:188, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:188, column:64,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:64,the value of plot_cost is         : 33.183617116450876 

 At row:188, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:188, column:65,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:65,the value of plot_cost is         : 33.36880435919729 

 At row:188, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:188, column:66,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:66,the value of plot_cost is         : 33.55479966234619 

 At row:188, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:188, column:67,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:67,the value of plot_cost is         : 33.741603025897625 

 At row:188, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:188, column:68,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:68,the value of plot_cost is         : 33.92921444985156 

 At row:188, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:188, column:69,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:69,the value of plot_cost is         : 34.117633934208015 

 At row:188, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:188, column:70,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:70,the value of plot_cost is         : 34.30686147896699 

 At row:188, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:188, column:71,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:71,the value of plot_cost is         : 34.49689708412846 

 At row:188, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:188, column:72,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:72,the value of plot_cost is         : 34.687740749692466 

 At row:188, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:188, column:73,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:73,the value of plot_cost is         : 34.87939247565898 

 At row:188, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:188, column:74,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:74,the value of plot_cost is         : 35.07185226202801 

 At row:188, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:188, column:75,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:75,the value of plot_cost is         : 35.26512010879957 

 At row:188, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:188, column:76,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:76,the value of plot_cost is         : 35.459196015973625 

 At row:188, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:188, column:77,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:77,the value of plot_cost is         : 35.654079983550204 

 At row:188, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:188, column:78,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:78,the value of plot_cost is         : 35.849772011529296 

 At row:188, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:188, column:79,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:79,the value of plot_cost is         : 36.0462720999109 

 At row:188, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:188, column:80,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:80,the value of plot_cost is         : 36.24358024869502 

 At row:188, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:188, column:81,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:81,the value of plot_cost is         : 36.44169645788165 

 At row:188, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:188, column:82,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:82,the value of plot_cost is         : 36.6406207274708 

 At row:188, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:188, column:83,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:83,the value of plot_cost is         : 36.840353057462465 

 At row:188, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:188, column:84,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:84,the value of plot_cost is         : 37.040893447856654 

 At row:188, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:188, column:85,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:85,the value of plot_cost is         : 37.24224189865336 

 At row:188, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:188, column:86,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:86,the value of plot_cost is         : 37.44439840985257 

 At row:188, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:188, column:87,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:87,the value of plot_cost is         : 37.6473629814543 

 At row:188, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:188, column:88,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:88,the value of plot_cost is         : 37.851135613458545 

 At row:188, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:188, column:89,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:89,the value of plot_cost is         : 38.055716305865296 

 At row:188, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:188, column:90,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:90,the value of plot_cost is         : 38.261105058674566 

 At row:188, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:188, column:91,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:91,the value of plot_cost is         : 38.46730187188635 

 At row:188, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:188, column:92,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:92,the value of plot_cost is         : 38.67430674550065 

 At row:188, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:188, column:93,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:93,the value of plot_cost is         : 38.88211967951747 

 At row:188, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:188, column:94,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:94,the value of plot_cost is         : 39.0907406739368 

 At row:188, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:188, column:95,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:95,the value of plot_cost is         : 39.30016972875866 

 At row:188, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:188, column:96,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:96,the value of plot_cost is         : 39.51040684398302 

 At row:188, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:188, column:97,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:97,the value of plot_cost is         : 39.721452019609906 

 At row:188, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:188, column:98,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:98,the value of plot_cost is         : 39.93330525563929 

 At row:188, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:188, column:99,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:99,the value of plot_cost is         : 40.1459665520712 

 At row:188, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:188, column:100,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:100,the value of plot_cost is         : 40.35943590890562 

 At row:188, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:188, column:101,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:101,the value of plot_cost is         : 40.57371332614255 

 At row:188, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:188, column:102,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:102,the value of plot_cost is         : 40.78879880378201 

 At row:188, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:188, column:103,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:103,the value of plot_cost is         : 41.004692341823976 

 At row:188, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:188, column:104,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:104,the value of plot_cost is         : 41.22139394026847 

 At row:188, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:188, column:105,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:105,the value of plot_cost is         : 41.43890359911546 

 At row:188, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:188, column:106,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:106,the value of plot_cost is         : 41.65722131836498 

 At row:188, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:188, column:107,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:107,the value of plot_cost is         : 41.876347098017014 

 At row:188, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:188, column:108,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:108,the value of plot_cost is         : 42.09628093807155 

 At row:188, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:188, column:109,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:109,the value of plot_cost is         : 42.317022838528615 

 At row:188, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:188, column:110,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:110,the value of plot_cost is         : 42.538572799388184 

 At row:188, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:188, column:111,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:111,the value of plot_cost is         : 42.760930820650266 

 At row:188, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:188, column:112,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:112,the value of plot_cost is         : 42.98409690231487 

 At row:188, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:188, column:113,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:113,the value of plot_cost is         : 43.208071044381995 

 At row:188, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:188, column:114,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:114,the value of plot_cost is         : 43.43285324685163 

 At row:188, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:188, column:115,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:115,the value of plot_cost is         : 43.65844350972379 

 At row:188, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:188, column:116,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:116,the value of plot_cost is         : 43.884841832998454 

 At row:188, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:188, column:117,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:117,the value of plot_cost is         : 44.11204821667564 

 At row:188, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:188, column:118,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:118,the value of plot_cost is         : 44.34006266075533 

 At row:188, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:188, column:119,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:119,the value of plot_cost is         : 44.56888516523753 

 At row:188, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:188, column:120,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:120,the value of plot_cost is         : 44.798515730122254 

 At row:188, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:188, column:121,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:121,the value of plot_cost is         : 45.028954355409496 

 At row:188, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:188, column:122,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:122,the value of plot_cost is         : 45.260201041099236 

 At row:188, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:188, column:123,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:123,the value of plot_cost is         : 45.49225578719152 

 At row:188, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:188, column:124,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:124,the value of plot_cost is         : 45.725118593686304 

 At row:188, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:188, column:125,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:125,the value of plot_cost is         : 45.95878946058362 

 At row:188, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:188, column:126,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:126,the value of plot_cost is         : 46.19326838788342 

 At row:188, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:188, column:127,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:127,the value of plot_cost is         : 46.42855537558576 

 At row:188, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:188, column:128,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:128,the value of plot_cost is         : 46.66465042369061 

 At row:188, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:188, column:129,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:129,the value of plot_cost is         : 46.901553532197966 

 At row:188, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:188, column:130,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:130,the value of plot_cost is         : 47.139264701107834 

 At row:188, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:188, column:131,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:131,the value of plot_cost is         : 47.377783930420215 

 At row:188, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:188, column:132,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:132,the value of plot_cost is         : 47.61711122013512 

 At row:188, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:188, column:133,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:133,the value of plot_cost is         : 47.85724657025255 

 At row:188, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:188, column:134,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:134,the value of plot_cost is         : 48.098189980772496 

 At row:188, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:188, column:135,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:135,the value of plot_cost is         : 48.339941451694955 

 At row:188, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:188, column:136,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:136,the value of plot_cost is         : 48.58250098301991 

 At row:188, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:188, column:137,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:137,the value of plot_cost is         : 48.82586857474739 

 At row:188, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:188, column:138,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:138,the value of plot_cost is         : 49.07004422687739 

 At row:188, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:188, column:139,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:139,the value of plot_cost is         : 49.3150279394099 

 At row:188, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:188, column:140,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:140,the value of plot_cost is         : 49.560819712344916 

 At row:188, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:188, column:141,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:141,the value of plot_cost is         : 49.80741954568246 

 At row:188, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:188, column:142,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:142,the value of plot_cost is         : 50.05482743942251 

 At row:188, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:188, column:143,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:143,the value of plot_cost is         : 50.30304339356509 

 At row:188, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:188, column:144,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:144,the value of plot_cost is         : 50.552067408110176 

 At row:188, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:188, column:145,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:145,the value of plot_cost is         : 50.80189948305779 

 At row:188, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:188, column:146,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:146,the value of plot_cost is         : 51.052539618407906 

 At row:188, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:188, column:147,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:147,the value of plot_cost is         : 51.30398781416054 

 At row:188, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:188, column:148,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:148,the value of plot_cost is         : 51.556244070315685 

 At row:188, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:188, column:149,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:149,the value of plot_cost is         : 51.80930838687335 

 At row:188, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:188, column:150,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:150,the value of plot_cost is         : 52.06318076383352 

 At row:188, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:188, column:151,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:151,the value of plot_cost is         : 52.317861201196216 

 At row:188, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:188, column:152,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:152,the value of plot_cost is         : 52.573349698961415 

 At row:188, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:188, column:153,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:153,the value of plot_cost is         : 52.82964625712915 

 At row:188, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:188, column:154,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:154,the value of plot_cost is         : 53.08675087569939 

 At row:188, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:188, column:155,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:155,the value of plot_cost is         : 53.34466355467215 

 At row:188, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:188, column:156,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:156,the value of plot_cost is         : 53.603384294047416 

 At row:188, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:188, column:157,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:157,the value of plot_cost is         : 53.862913093825206 

 At row:188, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:188, column:158,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:158,the value of plot_cost is         : 54.1232499540055 

 At row:188, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:188, column:159,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:159,the value of plot_cost is         : 54.3843948745883 

 At row:188, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:188, column:160,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:160,the value of plot_cost is         : 54.64634785557362 

 At row:188, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:188, column:161,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:161,the value of plot_cost is         : 54.90910889696147 

 At row:188, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:188, column:162,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:162,the value of plot_cost is         : 55.17267799875182 

 At row:188, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:188, column:163,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:163,the value of plot_cost is         : 55.4370551609447 

 At row:188, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:188, column:164,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:164,the value of plot_cost is         : 55.702240383540094 

 At row:188, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:188, column:165,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:165,the value of plot_cost is         : 55.968233666538005 

 At row:188, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:188, column:166,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:166,the value of plot_cost is         : 56.23503500993843 

 At row:188, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:188, column:167,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:167,the value of plot_cost is         : 56.502644413741365 

 At row:188, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:188, column:168,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:168,the value of plot_cost is         : 56.77106187794681 

 At row:188, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:188, column:169,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:169,the value of plot_cost is         : 57.04028740255476 

 At row:188, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:188, column:170,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:170,the value of plot_cost is         : 57.31032098756524 

 At row:188, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:188, column:171,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:171,the value of plot_cost is         : 57.581162632978234 

 At row:188, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:188, column:172,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:172,the value of plot_cost is         : 57.85281233879375 

 At row:188, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:188, column:173,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:173,the value of plot_cost is         : 58.125270105011765 

 At row:188, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:188, column:174,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:174,the value of plot_cost is         : 58.39853593163232 

 At row:188, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:188, column:175,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:175,the value of plot_cost is         : 58.67260981865539 

 At row:188, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:188, column:176,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:176,the value of plot_cost is         : 58.94749176608096 

 At row:188, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:188, column:177,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:177,the value of plot_cost is         : 59.22318177390903 

 At row:188, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:188, column:178,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:178,the value of plot_cost is         : 59.49967984213963 

 At row:188, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:188, column:179,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:179,the value of plot_cost is         : 59.77698597077274 

 At row:188, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:188, column:180,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:180,the value of plot_cost is         : 60.055100159808376 

 At row:188, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:188, column:181,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:181,the value of plot_cost is         : 60.334022409246515 

 At row:188, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:188, column:182,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:182,the value of plot_cost is         : 60.61375271908717 

 At row:188, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:188, column:183,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:183,the value of plot_cost is         : 60.89429108933035 

 At row:188, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:188, column:184,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:184,the value of plot_cost is         : 61.17563751997605 

 At row:188, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:188, column:185,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:185,the value of plot_cost is         : 61.45779201102425 

 At row:188, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:188, column:186,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:186,the value of plot_cost is         : 61.74075456247499 

 At row:188, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:188, column:187,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:187,the value of plot_cost is         : 62.02452517432821 

 At row:188, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:188, column:188,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:188,the value of plot_cost is         : 62.30910384658396 

 At row:188, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:188, column:189,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:189,the value of plot_cost is         : 62.59449057924223 

 At row:188, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:188, column:190,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:190,the value of plot_cost is         : 62.880685372303006 

 At row:188, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:188, column:191,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:191,the value of plot_cost is         : 63.1676882257663 

 At row:188, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:188, column:192,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:192,the value of plot_cost is         : 63.4554991396321 

 At row:188, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:188, column:193,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:193,the value of plot_cost is         : 63.744118113900434 

 At row:188, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:188, column:194,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:194,the value of plot_cost is         : 64.03354514857129 

 At row:188, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:188, column:195,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:195,the value of plot_cost is         : 64.32378024364465 

 At row:188, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:188, column:196,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:196,the value of plot_cost is         : 64.61482339912052 

 At row:188, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:188, column:197,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:197,the value of plot_cost is         : 64.9066746149989 

 At row:188, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:188, column:198,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:198,the value of plot_cost is         : 65.1993338912798 

 At row:188, column:199,the value of plot_t0 is           : 3.0
 At row:188, column:199,the value of plot_t1 is           : 2.778894472361809
 At row:188, column:199,the value of plot_cost is         : 65.49280122796323 

 At row:189, column:0,the value of plot_t0 is           : -1.0
 At row:189, column:0,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:0,the value of plot_cost is         : 23.74667043040039 

 At row:189, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:189, column:1,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:1,the value of plot_cost is         : 23.882819950434154 

 At row:189, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:189, column:2,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:2,the value of plot_cost is         : 24.01977753087043 

 At row:189, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:189, column:3,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:3,the value of plot_cost is         : 24.157543171709236 

 At row:189, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:189, column:4,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:4,the value of plot_cost is         : 24.296116872950545 

 At row:189, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:189, column:5,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:5,the value of plot_cost is         : 24.435498634594367 

 At row:189, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:189, column:6,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:6,the value of plot_cost is         : 24.575688456640712 

 At row:189, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:189, column:7,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:7,the value of plot_cost is         : 24.716686339089566 

 At row:189, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:189, column:8,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:8,the value of plot_cost is         : 24.85849228194094 

 At row:189, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:189, column:9,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:9,the value of plot_cost is         : 25.001106285194826 

 At row:189, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:189, column:10,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:10,the value of plot_cost is         : 25.144528348851225 

 At row:189, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:189, column:11,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:11,the value of plot_cost is         : 25.28875847291014 

 At row:189, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:189, column:12,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:12,the value of plot_cost is         : 25.433796657371566 

 At row:189, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:189, column:13,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:13,the value of plot_cost is         : 25.57964290223552 

 At row:189, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:189, column:14,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:14,the value of plot_cost is         : 25.726297207501982 

 At row:189, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:189, column:15,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:15,the value of plot_cost is         : 25.873759573170965 

 At row:189, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:189, column:16,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:16,the value of plot_cost is         : 26.022029999242452 

 At row:189, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:189, column:17,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:17,the value of plot_cost is         : 26.171108485716452 

 At row:189, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:189, column:18,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:18,the value of plot_cost is         : 26.320995032592982 

 At row:189, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:189, column:19,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:19,the value of plot_cost is         : 26.471689639872018 

 At row:189, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:189, column:20,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:20,the value of plot_cost is         : 26.623192307553566 

 At row:189, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:189, column:21,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:21,the value of plot_cost is         : 26.77550303563763 

 At row:189, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:189, column:22,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:22,the value of plot_cost is         : 26.928621824124214 

 At row:189, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:189, column:23,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:23,the value of plot_cost is         : 27.08254867301331 

 At row:189, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:189, column:24,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:24,the value of plot_cost is         : 27.237283582304922 

 At row:189, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:189, column:25,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:25,the value of plot_cost is         : 27.39282655199905 

 At row:189, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:189, column:26,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:26,the value of plot_cost is         : 27.5491775820957 

 At row:189, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:189, column:27,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:27,the value of plot_cost is         : 27.70633667259485 

 At row:189, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:189, column:28,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:28,the value of plot_cost is         : 27.86430382349653 

 At row:189, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:189, column:29,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:29,the value of plot_cost is         : 28.023079034800716 

 At row:189, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:189, column:30,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:30,the value of plot_cost is         : 28.182662306507414 

 At row:189, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:189, column:31,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:31,the value of plot_cost is         : 28.343053638616635 

 At row:189, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:189, column:32,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:32,the value of plot_cost is         : 28.50425303112836 

 At row:189, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:189, column:33,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:33,the value of plot_cost is         : 28.666260484042617 

 At row:189, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:189, column:34,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:34,the value of plot_cost is         : 28.829075997359382 

 At row:189, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:189, column:35,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:35,the value of plot_cost is         : 28.992699571078663 

 At row:189, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:189, column:36,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:36,the value of plot_cost is         : 29.157131205200454 

 At row:189, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:189, column:37,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:37,the value of plot_cost is         : 29.322370899724756 

 At row:189, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:189, column:38,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:38,the value of plot_cost is         : 29.48841865465159 

 At row:189, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:189, column:39,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:39,the value of plot_cost is         : 29.655274469980927 

 At row:189, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:189, column:40,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:40,the value of plot_cost is         : 29.822938345712778 

 At row:189, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:189, column:41,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:41,the value of plot_cost is         : 29.99141028184714 

 At row:189, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:189, column:42,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:42,the value of plot_cost is         : 30.16069027838402 

 At row:189, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:189, column:43,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:43,the value of plot_cost is         : 30.33077833532343 

 At row:189, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:189, column:44,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:44,the value of plot_cost is         : 30.50167445266534 

 At row:189, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:189, column:45,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:45,the value of plot_cost is         : 30.673378630409776 

 At row:189, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:189, column:46,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:46,the value of plot_cost is         : 30.845890868556715 

 At row:189, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:189, column:47,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:47,the value of plot_cost is         : 31.019211167106175 

 At row:189, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:189, column:48,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:48,the value of plot_cost is         : 31.193339526058157 

 At row:189, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:189, column:49,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:49,the value of plot_cost is         : 31.36827594541264 

 At row:189, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:189, column:50,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:50,the value of plot_cost is         : 31.544020425169645 

 At row:189, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:189, column:51,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:51,the value of plot_cost is         : 31.72057296532916 

 At row:189, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:189, column:52,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:52,the value of plot_cost is         : 31.897933565891197 

 At row:189, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:189, column:53,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:53,the value of plot_cost is         : 32.076102226855745 

 At row:189, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:189, column:54,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:54,the value of plot_cost is         : 32.25507894822281 

 At row:189, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:189, column:55,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:55,the value of plot_cost is         : 32.4348637299924 

 At row:189, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:189, column:56,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:56,the value of plot_cost is         : 32.6154565721645 

 At row:189, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:189, column:57,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:57,the value of plot_cost is         : 32.796857474739106 

 At row:189, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:189, column:58,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:58,the value of plot_cost is         : 32.97906643771623 

 At row:189, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:189, column:59,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:59,the value of plot_cost is         : 33.16208346109587 

 At row:189, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:189, column:60,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:60,the value of plot_cost is         : 33.34590854487802 

 At row:189, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:189, column:61,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:61,the value of plot_cost is         : 33.53054168906269 

 At row:189, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:189, column:62,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:62,the value of plot_cost is         : 33.71598289364988 

 At row:189, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:189, column:63,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:63,the value of plot_cost is         : 33.90223215863957 

 At row:189, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:189, column:64,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:64,the value of plot_cost is         : 34.08928948403179 

 At row:189, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:189, column:65,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:65,the value of plot_cost is         : 34.27715486982653 

 At row:189, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:189, column:66,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:66,the value of plot_cost is         : 34.46582831602378 

 At row:189, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:189, column:67,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:67,the value of plot_cost is         : 34.655309822623536 

 At row:189, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:189, column:68,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:68,the value of plot_cost is         : 34.84559938962582 

 At row:189, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:189, column:69,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:69,the value of plot_cost is         : 35.036697017030605 

 At row:189, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:189, column:70,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:70,the value of plot_cost is         : 35.228602704837904 

 At row:189, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:189, column:71,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:71,the value of plot_cost is         : 35.42131645304772 

 At row:189, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:189, column:72,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:72,the value of plot_cost is         : 35.61483826166007 

 At row:189, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:189, column:73,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:73,the value of plot_cost is         : 35.80916813067491 

 At row:189, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:189, column:74,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:74,the value of plot_cost is         : 36.004306060092276 

 At row:189, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:189, column:75,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:75,the value of plot_cost is         : 36.20025204991217 

 At row:189, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:189, column:76,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:76,the value of plot_cost is         : 36.39700610013457 

 At row:189, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:189, column:77,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:77,the value of plot_cost is         : 36.594568210759476 

 At row:189, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:189, column:78,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:78,the value of plot_cost is         : 36.792938381786904 

 At row:189, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:189, column:79,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:79,the value of plot_cost is         : 36.992116613216844 

 At row:189, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:189, column:80,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:80,the value of plot_cost is         : 37.1921029050493 

 At row:189, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:189, column:81,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:81,the value of plot_cost is         : 37.39289725728427 

 At row:189, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:189, column:82,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:82,the value of plot_cost is         : 37.59449966992176 

 At row:189, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:189, column:83,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:83,the value of plot_cost is         : 37.79691014296176 

 At row:189, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:189, column:84,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:84,the value of plot_cost is         : 38.00012867640427 

 At row:189, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:189, column:85,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:85,the value of plot_cost is         : 38.20415527024932 

 At row:189, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:189, column:86,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:86,the value of plot_cost is         : 38.408989924496865 

 At row:189, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:189, column:87,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:87,the value of plot_cost is         : 38.614632639146926 

 At row:189, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:189, column:88,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:88,the value of plot_cost is         : 38.82108341419951 

 At row:189, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:189, column:89,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:89,the value of plot_cost is         : 39.0283422496546 

 At row:189, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:189, column:90,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:90,the value of plot_cost is         : 39.236409145512205 

 At row:189, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:189, column:91,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:91,the value of plot_cost is         : 39.44528410177232 

 At row:189, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:189, column:92,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:92,the value of plot_cost is         : 39.65496711843497 

 At row:189, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:189, column:93,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:93,the value of plot_cost is         : 39.86545819550011 

 At row:189, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:189, column:94,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:94,the value of plot_cost is         : 40.07675733296778 

 At row:189, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:189, column:95,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:95,the value of plot_cost is         : 40.28886453083798 

 At row:189, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:189, column:96,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:96,the value of plot_cost is         : 40.50177978911068 

 At row:189, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:189, column:97,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:97,the value of plot_cost is         : 40.715503107785885 

 At row:189, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:189, column:98,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:98,the value of plot_cost is         : 40.930034486863626 

 At row:189, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:189, column:99,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:99,the value of plot_cost is         : 41.14537392634386 

 At row:189, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:189, column:100,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:100,the value of plot_cost is         : 41.361521426226616 

 At row:189, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:189, column:101,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:101,the value of plot_cost is         : 41.57847698651189 

 At row:189, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:189, column:102,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:102,the value of plot_cost is         : 41.79624060719968 

 At row:189, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:189, column:103,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:103,the value of plot_cost is         : 42.01481228828999 

 At row:189, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:189, column:104,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:104,the value of plot_cost is         : 42.2341920297828 

 At row:189, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:189, column:105,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:105,the value of plot_cost is         : 42.45437983167813 

 At row:189, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:189, column:106,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:106,the value of plot_cost is         : 42.675375693975994 

 At row:189, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:189, column:107,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:107,the value of plot_cost is         : 42.897179616676354 

 At row:189, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:189, column:108,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:108,the value of plot_cost is         : 43.119791599779234 

 At row:189, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:189, column:109,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:109,the value of plot_cost is         : 43.34321164328463 

 At row:189, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:189, column:110,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:110,the value of plot_cost is         : 43.56743974719254 

 At row:189, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:189, column:111,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:111,the value of plot_cost is         : 43.792475911502954 

 At row:189, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:189, column:112,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:112,the value of plot_cost is         : 44.018320136215905 

 At row:189, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:189, column:113,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:113,the value of plot_cost is         : 44.244972421331354 

 At row:189, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:189, column:114,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:114,the value of plot_cost is         : 44.472432766849344 

 At row:189, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:189, column:115,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:115,the value of plot_cost is         : 44.700701172769826 

 At row:189, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:189, column:116,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:116,the value of plot_cost is         : 44.929777639092826 

 At row:189, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:189, column:117,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:117,the value of plot_cost is         : 45.15966216581833 

 At row:189, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:189, column:118,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:118,the value of plot_cost is         : 45.390354752946365 

 At row:189, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:189, column:119,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:119,the value of plot_cost is         : 45.62185540047691 

 At row:189, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:189, column:120,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:120,the value of plot_cost is         : 45.85416410840996 

 At row:189, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:189, column:121,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:121,the value of plot_cost is         : 46.08728087674554 

 At row:189, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:189, column:122,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:122,the value of plot_cost is         : 46.321205705483635 

 At row:189, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:189, column:123,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:123,the value of plot_cost is         : 46.55593859462423 

 At row:189, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:189, column:124,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:124,the value of plot_cost is         : 46.79147954416735 

 At row:189, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:189, column:125,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:125,the value of plot_cost is         : 47.02782855411301 

 At row:189, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:189, column:126,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:126,the value of plot_cost is         : 47.26498562446115 

 At row:189, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:189, column:127,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:127,the value of plot_cost is         : 47.50295075521181 

 At row:189, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:189, column:128,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:128,the value of plot_cost is         : 47.74172394636499 

 At row:189, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:189, column:129,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:129,the value of plot_cost is         : 47.9813051979207 

 At row:189, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:189, column:130,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:130,the value of plot_cost is         : 48.22169450987891 

 At row:189, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:189, column:131,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:131,the value of plot_cost is         : 48.462891882239624 

 At row:189, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:189, column:132,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:132,the value of plot_cost is         : 48.70489731500288 

 At row:189, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:189, column:133,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:133,the value of plot_cost is         : 48.94771080816862 

 At row:189, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:189, column:134,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:134,the value of plot_cost is         : 49.19133236173692 

 At row:189, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:189, column:135,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:135,the value of plot_cost is         : 49.435761975707706 

 At row:189, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:189, column:136,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:136,the value of plot_cost is         : 49.680999650081 

 At row:189, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:189, column:137,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:137,the value of plot_cost is         : 49.92704538485681 

 At row:189, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:189, column:138,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:138,the value of plot_cost is         : 50.17389918003514 

 At row:189, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:189, column:139,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:139,the value of plot_cost is         : 50.421561035616 

 At row:189, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:189, column:140,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:140,the value of plot_cost is         : 50.670030951599344 

 At row:189, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:189, column:141,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:141,the value of plot_cost is         : 50.91930892798523 

 At row:189, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:189, column:142,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:142,the value of plot_cost is         : 51.169394964773616 

 At row:189, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:189, column:143,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:143,the value of plot_cost is         : 51.42028906196453 

 At row:189, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:189, column:144,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:144,the value of plot_cost is         : 51.671991219557945 

 At row:189, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:189, column:145,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:145,the value of plot_cost is         : 51.9245014375539 

 At row:189, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:189, column:146,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:146,the value of plot_cost is         : 52.17781971595235 

 At row:189, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:189, column:147,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:147,the value of plot_cost is         : 52.43194605475331 

 At row:189, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:189, column:148,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:148,the value of plot_cost is         : 52.6868804539568 

 At row:189, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:189, column:149,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:149,the value of plot_cost is         : 52.9426229135628 

 At row:189, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:189, column:150,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:150,the value of plot_cost is         : 53.19917343357131 

 At row:189, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:189, column:151,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:151,the value of plot_cost is         : 53.45653201398235 

 At row:189, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:189, column:152,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:152,the value of plot_cost is         : 53.71469865479587 

 At row:189, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:189, column:153,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:153,the value of plot_cost is         : 53.97367335601193 

 At row:189, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:189, column:154,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:154,the value of plot_cost is         : 54.233456117630524 

 At row:189, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:189, column:155,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:155,the value of plot_cost is         : 54.49404693965162 

 At row:189, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:189, column:156,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:156,the value of plot_cost is         : 54.75544582207522 

 At row:189, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:189, column:157,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:157,the value of plot_cost is         : 55.01765276490133 

 At row:189, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:189, column:158,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:158,the value of plot_cost is         : 55.280667768129966 

 At row:189, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:189, column:159,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:159,the value of plot_cost is         : 55.54449083176111 

 At row:189, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:189, column:160,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:160,the value of plot_cost is         : 55.80912195579477 

 At row:189, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:189, column:161,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:161,the value of plot_cost is         : 56.074561140230955 

 At row:189, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:189, column:162,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:162,the value of plot_cost is         : 56.34080838506965 

 At row:189, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:189, column:163,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:163,the value of plot_cost is         : 56.60786369031084 

 At row:189, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:189, column:164,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:164,the value of plot_cost is         : 56.87572705595457 

 At row:189, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:189, column:165,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:165,the value of plot_cost is         : 57.144398482000824 

 At row:189, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:189, column:166,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:166,the value of plot_cost is         : 57.41387796844958 

 At row:189, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:189, column:167,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:167,the value of plot_cost is         : 57.68416551530085 

 At row:189, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:189, column:168,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:168,the value of plot_cost is         : 57.95526112255463 

 At row:189, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:189, column:169,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:169,the value of plot_cost is         : 58.227164790210935 

 At row:189, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:189, column:170,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:170,the value of plot_cost is         : 58.499876518269744 

 At row:189, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:189, column:171,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:171,the value of plot_cost is         : 58.77339630673108 

 At row:189, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:189, column:172,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:172,the value of plot_cost is         : 59.04772415559492 

 At row:189, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:189, column:173,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:173,the value of plot_cost is         : 59.32286006486127 

 At row:189, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:189, column:174,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:174,the value of plot_cost is         : 59.59880403453017 

 At row:189, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:189, column:175,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:175,the value of plot_cost is         : 59.875556064601554 

 At row:189, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:189, column:176,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:176,the value of plot_cost is         : 60.15311615507546 

 At row:189, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:189, column:177,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:177,the value of plot_cost is         : 60.43148430595188 

 At row:189, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:189, column:178,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:178,the value of plot_cost is         : 60.710660517230814 

 At row:189, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:189, column:179,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:179,the value of plot_cost is         : 60.99064478891226 

 At row:189, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:189, column:180,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:180,the value of plot_cost is         : 61.271437120996225 

 At row:189, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:189, column:181,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:181,the value of plot_cost is         : 61.55303751348271 

 At row:189, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:189, column:182,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:182,the value of plot_cost is         : 61.83544596637171 

 At row:189, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:189, column:183,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:183,the value of plot_cost is         : 62.118662479663215 

 At row:189, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:189, column:184,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:184,the value of plot_cost is         : 62.402687053357226 

 At row:189, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:189, column:185,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:185,the value of plot_cost is         : 62.6875196874538 

 At row:189, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:189, column:186,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:186,the value of plot_cost is         : 62.973160381952844 

 At row:189, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:189, column:187,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:187,the value of plot_cost is         : 63.259609136854415 

 At row:189, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:189, column:188,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:188,the value of plot_cost is         : 63.546865952158505 

 At row:189, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:189, column:189,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:189,the value of plot_cost is         : 63.8349308278651 

 At row:189, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:189, column:190,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:190,the value of plot_cost is         : 64.12380376397421 

 At row:189, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:189, column:191,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:191,the value of plot_cost is         : 64.41348476048586 

 At row:189, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:189, column:192,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:192,the value of plot_cost is         : 64.7039738174 

 At row:189, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:189, column:193,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:193,the value of plot_cost is         : 64.99527093471666 

 At row:189, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:189, column:194,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:194,the value of plot_cost is         : 65.28737611243585 

 At row:189, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:189, column:195,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:195,the value of plot_cost is         : 65.58028935055755 

 At row:189, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:189, column:196,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:196,the value of plot_cost is         : 65.87401064908174 

 At row:189, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:189, column:197,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:197,the value of plot_cost is         : 66.16854000800848 

 At row:189, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:189, column:198,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:198,the value of plot_cost is         : 66.4638774273377 

 At row:189, column:199,the value of plot_t0 is           : 3.0
 At row:189, column:199,the value of plot_t1 is           : 2.798994974874372
 At row:189, column:199,the value of plot_cost is         : 66.76002290706946 

 At row:190, column:0,the value of plot_t0 is           : -1.0
 At row:190, column:0,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:0,the value of plot_cost is         : 24.493524297726967 

 At row:190, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:190, column:1,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:1,the value of plot_cost is         : 24.632351960809068 

 At row:190, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:190, column:2,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:2,the value of plot_cost is         : 24.77198768429368 

 At row:190, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:190, column:3,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:3,the value of plot_cost is         : 24.912431468180817 

 At row:190, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:190, column:4,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:4,the value of plot_cost is         : 25.05368331247046 

 At row:190, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:190, column:5,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:5,the value of plot_cost is         : 25.195743217162622 

 At row:190, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:190, column:6,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:6,the value of plot_cost is         : 25.338611182257306 

 At row:190, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:190, column:7,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:7,the value of plot_cost is         : 25.482287207754496 

 At row:190, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:190, column:8,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:8,the value of plot_cost is         : 25.62677129365421 

 At row:190, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:190, column:9,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:9,the value of plot_cost is         : 25.772063439956426 

 At row:190, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:190, column:10,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:10,the value of plot_cost is         : 25.91816364666116 

 At row:190, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:190, column:11,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:11,the value of plot_cost is         : 26.065071913768413 

 At row:190, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:190, column:12,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:12,the value of plot_cost is         : 26.212788241278176 

 At row:190, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:190, column:13,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:13,the value of plot_cost is         : 26.36131262919046 

 At row:190, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:190, column:14,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:14,the value of plot_cost is         : 26.510645077505256 

 At row:190, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:190, column:15,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:15,the value of plot_cost is         : 26.66078558622258 

 At row:190, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:190, column:16,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:16,the value of plot_cost is         : 26.8117341553424 

 At row:190, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:190, column:17,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:17,the value of plot_cost is         : 26.96349078486474 

 At row:190, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:190, column:18,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:18,the value of plot_cost is         : 27.116055474789604 

 At row:190, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:190, column:19,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:19,the value of plot_cost is         : 27.269428225116975 

 At row:190, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:190, column:20,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:20,the value of plot_cost is         : 27.42360903584686 

 At row:190, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:190, column:21,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:21,the value of plot_cost is         : 27.578597906979258 

 At row:190, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:190, column:22,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:22,the value of plot_cost is         : 27.734394838514177 

 At row:190, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:190, column:23,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:23,the value of plot_cost is         : 27.89099983045161 

 At row:190, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:190, column:24,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:24,the value of plot_cost is         : 28.048412882791556 

 At row:190, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:190, column:25,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:25,the value of plot_cost is         : 28.206633995534013 

 At row:190, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:190, column:26,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:26,the value of plot_cost is         : 28.365663168679003 

 At row:190, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:190, column:27,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:27,the value of plot_cost is         : 28.5255004022265 

 At row:190, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:190, column:28,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:28,the value of plot_cost is         : 28.686145696176514 

 At row:190, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:190, column:29,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:29,the value of plot_cost is         : 28.847599050529034 

 At row:190, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:190, column:30,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:30,the value of plot_cost is         : 29.009860465284067 

 At row:190, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:190, column:31,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:31,the value of plot_cost is         : 29.172929940441616 

 At row:190, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:190, column:32,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:32,the value of plot_cost is         : 29.336807476001685 

 At row:190, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:190, column:33,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:33,the value of plot_cost is         : 29.501493071964273 

 At row:190, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:190, column:34,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:34,the value of plot_cost is         : 29.666986728329373 

 At row:190, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:190, column:35,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:35,the value of plot_cost is         : 29.83328844509699 

 At row:190, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:190, column:36,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:36,the value of plot_cost is         : 30.000398222267116 

 At row:190, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:190, column:37,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:37,the value of plot_cost is         : 30.16831605983976 

 At row:190, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:190, column:38,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:38,the value of plot_cost is         : 30.33704195781492 

 At row:190, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:190, column:39,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:39,the value of plot_cost is         : 30.5065759161926 

 At row:190, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:190, column:40,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:40,the value of plot_cost is         : 30.676917934972785 

 At row:190, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:190, column:41,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:41,the value of plot_cost is         : 30.848068014155483 

 At row:190, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:190, column:42,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:42,the value of plot_cost is         : 31.020026153740705 

 At row:190, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:190, column:43,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:43,the value of plot_cost is         : 31.192792353728446 

 At row:190, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:190, column:44,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:44,the value of plot_cost is         : 31.36636661411869 

 At row:190, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:190, column:45,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:45,the value of plot_cost is         : 31.540748934911463 

 At row:190, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:190, column:46,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:46,the value of plot_cost is         : 31.71593931610674 

 At row:190, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:190, column:47,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:47,the value of plot_cost is         : 31.891937757704532 

 At row:190, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:190, column:48,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:48,the value of plot_cost is         : 32.06874425970485 

 At row:190, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:190, column:49,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:49,the value of plot_cost is         : 32.24635882210767 

 At row:190, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:190, column:50,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:50,the value of plot_cost is         : 32.42478144491301 

 At row:190, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:190, column:51,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:51,the value of plot_cost is         : 32.604012128120864 

 At row:190, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:190, column:52,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:52,the value of plot_cost is         : 32.78405087173123 

 At row:190, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:190, column:53,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:53,the value of plot_cost is         : 32.96489767574411 

 At row:190, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:190, column:54,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:54,the value of plot_cost is         : 33.14655254015951 

 At row:190, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:190, column:55,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:55,the value of plot_cost is         : 33.329015464977445 

 At row:190, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:190, column:56,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:56,the value of plot_cost is         : 33.51228645019787 

 At row:190, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:190, column:57,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:57,the value of plot_cost is         : 33.69636549582082 

 At row:190, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:190, column:58,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:58,the value of plot_cost is         : 33.88125260184628 

 At row:190, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:190, column:59,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:59,the value of plot_cost is         : 34.066947768274254 

 At row:190, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:190, column:60,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:60,the value of plot_cost is         : 34.25345099510474 

 At row:190, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:190, column:61,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:61,the value of plot_cost is         : 34.440762282337744 

 At row:190, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:190, column:62,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:62,the value of plot_cost is         : 34.628881629973264 

 At row:190, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:190, column:63,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:63,the value of plot_cost is         : 34.817809038011305 

 At row:190, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:190, column:64,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:64,the value of plot_cost is         : 35.00754450645185 

 At row:190, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:190, column:65,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:65,the value of plot_cost is         : 35.19808803529494 

 At row:190, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:190, column:66,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:66,the value of plot_cost is         : 35.38943962454051 

 At row:190, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:190, column:67,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:67,the value of plot_cost is         : 35.58159927418861 

 At row:190, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:190, column:68,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:68,the value of plot_cost is         : 35.77456698423922 

 At row:190, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:190, column:69,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:69,the value of plot_cost is         : 35.968342754692344 

 At row:190, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:190, column:70,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:70,the value of plot_cost is         : 36.16292658554798 

 At row:190, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:190, column:71,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:71,the value of plot_cost is         : 36.35831847680614 

 At row:190, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:190, column:72,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:72,the value of plot_cost is         : 36.554518428466814 

 At row:190, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:190, column:73,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:73,the value of plot_cost is         : 36.75152644052999 

 At row:190, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:190, column:74,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:74,the value of plot_cost is         : 36.94934251299569 

 At row:190, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:190, column:75,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:75,the value of plot_cost is         : 37.14796664586393 

 At row:190, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:190, column:76,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:76,the value of plot_cost is         : 37.34739883913466 

 At row:190, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:190, column:77,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:77,the value of plot_cost is         : 37.54763909280791 

 At row:190, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:190, column:78,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:78,the value of plot_cost is         : 37.748687406883676 

 At row:190, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:190, column:79,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:79,the value of plot_cost is         : 37.950543781361944 

 At row:190, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:190, column:80,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:80,the value of plot_cost is         : 38.15320821624273 

 At row:190, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:190, column:81,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:81,the value of plot_cost is         : 38.356680711526046 

 At row:190, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:190, column:82,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:82,the value of plot_cost is         : 38.56096126721186 

 At row:190, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:190, column:83,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:83,the value of plot_cost is         : 38.766049883300205 

 At row:190, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:190, column:84,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:84,the value of plot_cost is         : 38.97194655979105 

 At row:190, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:190, column:85,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:85,the value of plot_cost is         : 39.17865129668444 

 At row:190, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:190, column:86,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:86,the value of plot_cost is         : 39.38616409398032 

 At row:190, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:190, column:87,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:87,the value of plot_cost is         : 39.594484951678716 

 At row:190, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:190, column:88,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:88,the value of plot_cost is         : 39.80361386977963 

 At row:190, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:190, column:89,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:89,the value of plot_cost is         : 40.01355084828305 

 At row:190, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:190, column:90,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:90,the value of plot_cost is         : 40.224295887189 

 At row:190, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:190, column:91,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:91,the value of plot_cost is         : 40.43584898649745 

 At row:190, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:190, column:92,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:92,the value of plot_cost is         : 40.64821014620842 

 At row:190, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:190, column:93,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:93,the value of plot_cost is         : 40.86137936632191 

 At row:190, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:190, column:94,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:94,the value of plot_cost is         : 41.07535664683792 

 At row:190, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:190, column:95,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:95,the value of plot_cost is         : 41.29014198775645 

 At row:190, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:190, column:96,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:96,the value of plot_cost is         : 41.50573538907748 

 At row:190, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:190, column:97,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:97,the value of plot_cost is         : 41.72213685080103 

 At row:190, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:190, column:98,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:98,the value of plot_cost is         : 41.939346372927105 

 At row:190, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:190, column:99,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:99,the value of plot_cost is         : 42.15736395545567 

 At row:190, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:190, column:100,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:100,the value of plot_cost is         : 42.376189598386766 

 At row:190, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:190, column:101,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:101,the value of plot_cost is         : 42.59582330172037 

 At row:190, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:190, column:102,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:102,the value of plot_cost is         : 42.8162650654565 

 At row:190, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:190, column:103,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:103,the value of plot_cost is         : 43.03751488959514 

 At row:190, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:190, column:104,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:104,the value of plot_cost is         : 43.25957277413628 

 At row:190, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:190, column:105,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:105,the value of plot_cost is         : 43.48243871907995 

 At row:190, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:190, column:106,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:106,the value of plot_cost is         : 43.706112724426156 

 At row:190, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:190, column:107,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:107,the value of plot_cost is         : 43.93059479017486 

 At row:190, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:190, column:108,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:108,the value of plot_cost is         : 44.15588491632607 

 At row:190, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:190, column:109,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:109,the value of plot_cost is         : 44.38198310287981 

 At row:190, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:190, column:110,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:110,the value of plot_cost is         : 44.60888934983604 

 At row:190, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:190, column:111,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:111,the value of plot_cost is         : 44.83660365719479 

 At row:190, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:190, column:112,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:112,the value of plot_cost is         : 45.06512602495607 

 At row:190, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:190, column:113,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:113,the value of plot_cost is         : 45.29445645311987 

 At row:190, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:190, column:114,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:114,the value of plot_cost is         : 45.524594941686196 

 At row:190, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:190, column:115,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:115,the value of plot_cost is         : 45.755541490655006 

 At row:190, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:190, column:116,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:116,the value of plot_cost is         : 45.987296100026334 

 At row:190, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:190, column:117,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:117,the value of plot_cost is         : 46.21985876980019 

 At row:190, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:190, column:118,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:118,the value of plot_cost is         : 46.45322949997655 

 At row:190, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:190, column:119,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:119,the value of plot_cost is         : 46.68740829055544 

 At row:190, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:190, column:120,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:120,the value of plot_cost is         : 46.92239514153683 

 At row:190, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:190, column:121,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:121,the value of plot_cost is         : 47.15819005292074 

 At row:190, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:190, column:122,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:122,the value of plot_cost is         : 47.39479302470717 

 At row:190, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:190, column:123,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:123,the value of plot_cost is         : 47.6322040568961 

 At row:190, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:190, column:124,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:124,the value of plot_cost is         : 47.87042314948756 

 At row:190, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:190, column:125,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:125,the value of plot_cost is         : 48.10945030248155 

 At row:190, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:190, column:126,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:126,the value of plot_cost is         : 48.34928551587804 

 At row:190, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:190, column:127,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:127,the value of plot_cost is         : 48.589928789677025 

 At row:190, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:190, column:128,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:128,the value of plot_cost is         : 48.83138012387855 

 At row:190, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:190, column:129,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:129,the value of plot_cost is         : 49.07363951848257 

 At row:190, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:190, column:130,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:130,the value of plot_cost is         : 49.31670697348912 

 At row:190, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:190, column:131,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:131,the value of plot_cost is         : 49.56058248889818 

 At row:190, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:190, column:132,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:132,the value of plot_cost is         : 49.805266064709755 

 At row:190, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:190, column:133,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:133,the value of plot_cost is         : 50.05075770092385 

 At row:190, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:190, column:134,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:134,the value of plot_cost is         : 50.29705739754048 

 At row:190, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:190, column:135,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:135,the value of plot_cost is         : 50.54416515455959 

 At row:190, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:190, column:136,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:136,the value of plot_cost is         : 50.79208097198123 

 At row:190, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:190, column:137,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:137,the value of plot_cost is         : 51.04080484980538 

 At row:190, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:190, column:138,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:138,the value of plot_cost is         : 51.29033678803206 

 At row:190, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:190, column:139,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:139,the value of plot_cost is         : 51.54067678666123 

 At row:190, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:190, column:140,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:140,the value of plot_cost is         : 51.791824845692936 

 At row:190, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:190, column:141,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:141,the value of plot_cost is         : 52.04378096512713 

 At row:190, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:190, column:142,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:142,the value of plot_cost is         : 52.296545144963865 

 At row:190, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:190, column:143,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:143,the value of plot_cost is         : 52.55011738520311 

 At row:190, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:190, column:144,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:144,the value of plot_cost is         : 52.80449768584487 

 At row:190, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:190, column:145,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:145,the value of plot_cost is         : 53.05968604688915 

 At row:190, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:190, column:146,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:146,the value of plot_cost is         : 53.315682468335936 

 At row:190, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:190, column:147,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:147,the value of plot_cost is         : 53.572486950185244 

 At row:190, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:190, column:148,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:148,the value of plot_cost is         : 53.83009949243707 

 At row:190, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:190, column:149,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:149,the value of plot_cost is         : 54.08852009509139 

 At row:190, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:190, column:150,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:150,the value of plot_cost is         : 54.34774875814824 

 At row:190, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:190, column:151,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:151,the value of plot_cost is         : 54.60778548160761 

 At row:190, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:190, column:152,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:152,the value of plot_cost is         : 54.868630265469484 

 At row:190, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:190, column:153,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:153,the value of plot_cost is         : 55.130283109733874 

 At row:190, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:190, column:154,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:154,the value of plot_cost is         : 55.3927440144008 

 At row:190, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:190, column:155,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:155,the value of plot_cost is         : 55.65601297947022 

 At row:190, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:190, column:156,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:156,the value of plot_cost is         : 55.92009000494217 

 At row:190, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:190, column:157,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:157,the value of plot_cost is         : 56.18497509081661 

 At row:190, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:190, column:158,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:158,the value of plot_cost is         : 56.45066823709359 

 At row:190, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:190, column:159,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:159,the value of plot_cost is         : 56.717169443773074 

 At row:190, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:190, column:160,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:160,the value of plot_cost is         : 56.984478710855065 

 At row:190, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:190, column:161,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:161,the value of plot_cost is         : 57.25259603833958 

 At row:190, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:190, column:162,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:162,the value of plot_cost is         : 57.521521426226606 

 At row:190, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:190, column:163,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:163,the value of plot_cost is         : 57.79125487451615 

 At row:190, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:190, column:164,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:164,the value of plot_cost is         : 58.061796383208204 

 At row:190, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:190, column:165,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:165,the value of plot_cost is         : 58.3331459523028 

 At row:190, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:190, column:166,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:166,the value of plot_cost is         : 58.605303581799895 

 At row:190, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:190, column:167,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:167,the value of plot_cost is         : 58.87826927169949 

 At row:190, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:190, column:168,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:168,the value of plot_cost is         : 59.152043022001614 

 At row:190, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:190, column:169,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:169,the value of plot_cost is         : 59.42662483270624 

 At row:190, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:190, column:170,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:170,the value of plot_cost is         : 59.70201470381339 

 At row:190, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:190, column:171,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:171,the value of plot_cost is         : 59.978212635323054 

 At row:190, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:190, column:172,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:172,the value of plot_cost is         : 60.25521862723524 

 At row:190, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:190, column:173,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:173,the value of plot_cost is         : 60.53303267954994 

 At row:190, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:190, column:174,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:174,the value of plot_cost is         : 60.811654792267156 

 At row:190, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:190, column:175,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:175,the value of plot_cost is         : 61.09108496538688 

 At row:190, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:190, column:176,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:176,the value of plot_cost is         : 61.37132319890913 

 At row:190, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:190, column:177,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:177,the value of plot_cost is         : 61.65236949283387 

 At row:190, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:190, column:178,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:178,the value of plot_cost is         : 61.93422384716116 

 At row:190, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:190, column:179,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:179,the value of plot_cost is         : 62.216886261890934 

 At row:190, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:190, column:180,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:180,the value of plot_cost is         : 62.50035673702323 

 At row:190, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:190, column:181,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:181,the value of plot_cost is         : 62.78463527255805 

 At row:190, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:190, column:182,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:182,the value of plot_cost is         : 63.069721868495385 

 At row:190, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:190, column:183,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:183,the value of plot_cost is         : 63.35561652483523 

 At row:190, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:190, column:184,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:184,the value of plot_cost is         : 63.64231924157758 

 At row:190, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:190, column:185,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:185,the value of plot_cost is         : 63.929830018722484 

 At row:190, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:190, column:186,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:186,the value of plot_cost is         : 64.21814885626988 

 At row:190, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:190, column:187,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:187,the value of plot_cost is         : 64.50727575421978 

 At row:190, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:190, column:188,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:188,the value of plot_cost is         : 64.7972107125722 

 At row:190, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:190, column:189,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:189,the value of plot_cost is         : 65.08795373132712 

 At row:190, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:190, column:190,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:190,the value of plot_cost is         : 65.37950481048459 

 At row:190, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:190, column:191,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:191,the value of plot_cost is         : 65.67186395004455 

 At row:190, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:190, column:192,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:192,the value of plot_cost is         : 65.96503115000704 

 At row:190, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:190, column:193,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:193,the value of plot_cost is         : 66.25900641037202 

 At row:190, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:190, column:194,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:194,the value of plot_cost is         : 66.55378973113956 

 At row:190, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:190, column:195,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:195,the value of plot_cost is         : 66.84938111230959 

 At row:190, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:190, column:196,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:196,the value of plot_cost is         : 67.14578055388213 

 At row:190, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:190, column:197,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:197,the value of plot_cost is         : 67.44298805585719 

 At row:190, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:190, column:198,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:198,the value of plot_cost is         : 67.74100361823476 

 At row:190, column:199,the value of plot_t0 is           : 3.0
 At row:190, column:199,the value of plot_t1 is           : 2.819095477386935
 At row:190, column:199,the value of plot_cost is         : 68.03982724101483 

 At row:191, column:0,the value of plot_t0 is           : -1.0
 At row:191, column:0,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:0,the value of plot_cost is         : 25.252960819892717 

 At row:191, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:191, column:1,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:1,the value of plot_cost is         : 25.394466626023153 

 At row:191, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:191, column:2,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:2,the value of plot_cost is         : 25.536780492556105 

 At row:191, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:191, column:3,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:3,the value of plot_cost is         : 25.679902419491576 

 At row:191, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:191, column:4,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:4,the value of plot_cost is         : 25.823832406829556 

 At row:191, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:191, column:5,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:5,the value of plot_cost is         : 25.968570454570063 

 At row:191, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:191, column:6,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:6,the value of plot_cost is         : 26.114116562713072 

 At row:191, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:191, column:7,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:7,the value of plot_cost is         : 26.260470731258593 

 At row:191, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:191, column:8,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:8,the value of plot_cost is         : 26.40763296020664 

 At row:191, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:191, column:9,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:9,the value of plot_cost is         : 26.5556032495572 

 At row:191, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:191, column:10,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:10,the value of plot_cost is         : 26.70438159931027 

 At row:191, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:191, column:11,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:11,the value of plot_cost is         : 26.853968009465852 

 At row:191, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:191, column:12,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:12,the value of plot_cost is         : 27.00436248002395 

 At row:191, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:191, column:13,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:13,the value of plot_cost is         : 27.155565010984578 

 At row:191, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:191, column:14,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:14,the value of plot_cost is         : 27.307575602347704 

 At row:191, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:191, column:15,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:15,the value of plot_cost is         : 27.460394254113353 

 At row:191, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:191, column:16,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:16,the value of plot_cost is         : 27.614020966281522 

 At row:191, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:191, column:17,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:17,the value of plot_cost is         : 27.768455738852197 

 At row:191, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:191, column:18,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:18,the value of plot_cost is         : 27.923698571825398 

 At row:191, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:191, column:19,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:19,the value of plot_cost is         : 28.079749465201104 

 At row:191, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:191, column:20,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:20,the value of plot_cost is         : 28.236608418979323 

 At row:191, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:191, column:21,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:21,the value of plot_cost is         : 28.394275433160065 

 At row:191, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:191, column:22,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:22,the value of plot_cost is         : 28.55275050774331 

 At row:191, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:191, column:23,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:23,the value of plot_cost is         : 28.712033642729086 

 At row:191, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:191, column:24,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:24,the value of plot_cost is         : 28.872124838117365 

 At row:191, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:191, column:25,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:25,the value of plot_cost is         : 29.03302409390817 

 At row:191, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:191, column:26,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:26,the value of plot_cost is         : 29.194731410101486 

 At row:191, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:191, column:27,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:27,the value of plot_cost is         : 29.357246786697317 

 At row:191, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:191, column:28,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:28,the value of plot_cost is         : 29.52057022369566 

 At row:191, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:191, column:29,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:29,the value of plot_cost is         : 29.684701721096516 

 At row:191, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:191, column:30,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:30,the value of plot_cost is         : 29.849641278899888 

 At row:191, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:191, column:31,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:31,the value of plot_cost is         : 30.015388897105776 

 At row:191, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:191, column:32,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:32,the value of plot_cost is         : 30.181944575714176 

 At row:191, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:191, column:33,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:33,the value of plot_cost is         : 30.3493083147251 

 At row:191, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:191, column:34,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:34,the value of plot_cost is         : 30.517480114138532 

 At row:191, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:191, column:35,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:35,the value of plot_cost is         : 30.68645997395449 

 At row:191, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:191, column:36,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:36,the value of plot_cost is         : 30.85624789417296 

 At row:191, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:191, column:37,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:37,the value of plot_cost is         : 31.026843874793933 

 At row:191, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:191, column:38,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:38,the value of plot_cost is         : 31.198247915817433 

 At row:191, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:191, column:39,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:39,the value of plot_cost is         : 31.37046001724344 

 At row:191, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:191, column:40,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:40,the value of plot_cost is         : 31.543480179071963 

 At row:191, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:191, column:41,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:41,the value of plot_cost is         : 31.717308401303 

 At row:191, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:191, column:42,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:42,the value of plot_cost is         : 31.891944683936554 

 At row:191, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:191, column:43,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:43,the value of plot_cost is         : 32.06738902697263 

 At row:191, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:191, column:44,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:44,the value of plot_cost is         : 32.24364143041121 

 At row:191, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:191, column:45,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:45,the value of plot_cost is         : 32.420701894252325 

 At row:191, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:191, column:46,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:46,the value of plot_cost is         : 32.59857041849594 

 At row:191, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:191, column:47,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:47,the value of plot_cost is         : 32.777247003142065 

 At row:191, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:191, column:48,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:48,the value of plot_cost is         : 32.95673164819072 

 At row:191, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:191, column:49,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:49,the value of plot_cost is         : 33.13702435364187 

 At row:191, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:191, column:50,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:50,the value of plot_cost is         : 33.31812511949554 

 At row:191, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:191, column:51,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:51,the value of plot_cost is         : 33.50003394575173 

 At row:191, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:191, column:52,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:52,the value of plot_cost is         : 33.68275083241044 

 At row:191, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:191, column:53,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:53,the value of plot_cost is         : 33.866275779471664 

 At row:191, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:191, column:54,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:54,the value of plot_cost is         : 34.05060878693539 

 At row:191, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:191, column:55,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:55,the value of plot_cost is         : 34.23574985480166 

 At row:191, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:191, column:56,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:56,the value of plot_cost is         : 34.42169898307043 

 At row:191, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:191, column:57,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:57,the value of plot_cost is         : 34.6084561717417 

 At row:191, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:191, column:58,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:58,the value of plot_cost is         : 34.7960214208155 

 At row:191, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:191, column:59,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:59,the value of plot_cost is         : 34.98439473029181 

 At row:191, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:191, column:60,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:60,the value of plot_cost is         : 35.173576100170635 

 At row:191, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:191, column:61,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:61,the value of plot_cost is         : 35.36356553045198 

 At row:191, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:191, column:62,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:62,the value of plot_cost is         : 35.554363021135835 

 At row:191, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:191, column:63,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:63,the value of plot_cost is         : 35.7459685722222 

 At row:191, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:191, column:64,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:64,the value of plot_cost is         : 35.93838218371109 

 At row:191, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:191, column:65,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:65,the value of plot_cost is         : 36.1316038556025 

 At row:191, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:191, column:66,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:66,the value of plot_cost is         : 36.32563358789642 

 At row:191, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:191, column:67,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:67,the value of plot_cost is         : 36.52047138059285 

 At row:191, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:191, column:68,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:68,the value of plot_cost is         : 36.7161172336918 

 At row:191, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:191, column:69,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:69,the value of plot_cost is         : 36.91257114719326 

 At row:191, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:191, column:70,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:70,the value of plot_cost is         : 37.10983312109723 

 At row:191, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:191, column:71,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:71,the value of plot_cost is         : 37.30790315540373 

 At row:191, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:191, column:72,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:72,the value of plot_cost is         : 37.50678125011274 

 At row:191, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:191, column:73,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:73,the value of plot_cost is         : 37.70646740522426 

 At row:191, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:191, column:74,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:74,the value of plot_cost is         : 37.906961620738294 

 At row:191, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:191, column:75,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:75,the value of plot_cost is         : 38.108263896654854 

 At row:191, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:191, column:76,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:76,the value of plot_cost is         : 38.31037423297393 

 At row:191, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:191, column:77,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:77,the value of plot_cost is         : 38.513292629695506 

 At row:191, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:191, column:78,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:78,the value of plot_cost is         : 38.71701908681961 

 At row:191, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:191, column:79,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:79,the value of plot_cost is         : 38.92155360434622 

 At row:191, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:191, column:80,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:80,the value of plot_cost is         : 39.126896182275345 

 At row:191, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:191, column:81,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:81,the value of plot_cost is         : 39.33304682060699 

 At row:191, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:191, column:82,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:82,the value of plot_cost is         : 39.54000551934115 

 At row:191, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:191, column:83,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:83,the value of plot_cost is         : 39.74777227847782 

 At row:191, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:191, column:84,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:84,the value of plot_cost is         : 39.956347098017005 

 At row:191, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:191, column:85,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:85,the value of plot_cost is         : 40.16572997795873 

 At row:191, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:191, column:86,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:86,the value of plot_cost is         : 40.375920918302945 

 At row:191, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:191, column:87,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:87,the value of plot_cost is         : 40.58691991904967 

 At row:191, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:191, column:88,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:88,the value of plot_cost is         : 40.79872698019893 

 At row:191, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:191, column:89,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:89,the value of plot_cost is         : 41.01134210175069 

 At row:191, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:191, column:90,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:90,the value of plot_cost is         : 41.22476528370496 

 At row:191, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:191, column:91,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:91,the value of plot_cost is         : 41.43899652606175 

 At row:191, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:191, column:92,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:92,the value of plot_cost is         : 41.654035828821065 

 At row:191, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:191, column:93,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:93,the value of plot_cost is         : 41.869883191982886 

 At row:191, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:191, column:94,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:94,the value of plot_cost is         : 42.086538615547234 

 At row:191, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:191, column:95,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:95,the value of plot_cost is         : 42.3040020995141 

 At row:191, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:191, column:96,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:96,the value of plot_cost is         : 42.522273643883466 

 At row:191, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:191, column:97,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:97,the value of plot_cost is         : 42.74135324865535 

 At row:191, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:191, column:98,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:98,the value of plot_cost is         : 42.96124091382975 

 At row:191, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:191, column:99,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:99,the value of plot_cost is         : 43.181936639406665 

 At row:191, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:191, column:100,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:100,the value of plot_cost is         : 43.40344042538608 

 At row:191, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:191, column:101,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:101,the value of plot_cost is         : 43.625752271768036 

 At row:191, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:191, column:102,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:102,the value of plot_cost is         : 43.8488721785525 

 At row:191, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:191, column:103,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:103,the value of plot_cost is         : 44.07280014573947 

 At row:191, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:191, column:104,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:104,the value of plot_cost is         : 44.29753617332897 

 At row:191, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:191, column:105,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:105,the value of plot_cost is         : 44.52308026132097 

 At row:191, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:191, column:106,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:106,the value of plot_cost is         : 44.749432409715496 

 At row:191, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:191, column:107,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:107,the value of plot_cost is         : 44.97659261851252 

 At row:191, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:191, column:108,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:108,the value of plot_cost is         : 45.20456088771209 

 At row:191, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:191, column:109,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:109,the value of plot_cost is         : 45.43333721731415 

 At row:191, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:191, column:110,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:110,the value of plot_cost is         : 45.66292160731872 

 At row:191, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:191, column:111,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:111,the value of plot_cost is         : 45.89331405772582 

 At row:191, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:191, column:112,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:112,the value of plot_cost is         : 46.12451456853543 

 At row:191, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:191, column:113,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:113,the value of plot_cost is         : 46.35652313974755 

 At row:191, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:191, column:114,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:114,the value of plot_cost is         : 46.5893397713622 

 At row:191, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:191, column:115,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:115,the value of plot_cost is         : 46.822964463379364 

 At row:191, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:191, column:116,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:116,the value of plot_cost is         : 47.057397215799035 

 At row:191, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:191, column:117,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:117,the value of plot_cost is         : 47.29263802862122 

 At row:191, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:191, column:118,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:118,the value of plot_cost is         : 47.52868690184592 

 At row:191, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:191, column:119,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:119,the value of plot_cost is         : 47.76554383547314 

 At row:191, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:191, column:120,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:120,the value of plot_cost is         : 48.00320882950287 

 At row:191, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:191, column:121,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:121,the value of plot_cost is         : 48.24168188393511 

 At row:191, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:191, column:122,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:122,the value of plot_cost is         : 48.48096299876988 

 At row:191, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:191, column:123,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:123,the value of plot_cost is         : 48.721052174007156 

 At row:191, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:191, column:124,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:124,the value of plot_cost is         : 48.961949409646955 

 At row:191, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:191, column:125,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:125,the value of plot_cost is         : 49.20365470568926 

 At row:191, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:191, column:126,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:126,the value of plot_cost is         : 49.446168062134085 

 At row:191, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:191, column:127,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:127,the value of plot_cost is         : 49.689489478981415 

 At row:191, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:191, column:128,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:128,the value of plot_cost is         : 49.93361895623128 

 At row:191, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:191, column:129,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:129,the value of plot_cost is         : 50.17855649388364 

 At row:191, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:191, column:130,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:130,the value of plot_cost is         : 50.42430209193852 

 At row:191, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:191, column:131,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:131,the value of plot_cost is         : 50.670855750395916 

 At row:191, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:191, column:132,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:132,the value of plot_cost is         : 50.91821746925583 

 At row:191, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:191, column:133,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:133,the value of plot_cost is         : 51.166387248518255 

 At row:191, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:191, column:134,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:134,the value of plot_cost is         : 51.41536508818321 

 At row:191, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:191, column:135,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:135,the value of plot_cost is         : 51.66515098825068 

 At row:191, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:191, column:136,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:136,the value of plot_cost is         : 51.915744948720636 

 At row:191, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:191, column:137,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:137,the value of plot_cost is         : 52.16714696959313 

 At row:191, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:191, column:138,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:138,the value of plot_cost is         : 52.41935705086814 

 At row:191, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:191, column:139,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:139,the value of plot_cost is         : 52.67237519254565 

 At row:191, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:191, column:140,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:140,the value of plot_cost is         : 52.92620139462568 

 At row:191, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:191, column:141,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:141,the value of plot_cost is         : 53.180835657108226 

 At row:191, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:191, column:142,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:142,the value of plot_cost is         : 53.4362779799933 

 At row:191, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:191, column:143,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:143,the value of plot_cost is         : 53.69252836328087 

 At row:191, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:191, column:144,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:144,the value of plot_cost is         : 53.94958680697098 

 At row:191, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:191, column:145,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:145,the value of plot_cost is         : 54.20745331106359 

 At row:191, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:191, column:146,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:146,the value of plot_cost is         : 54.466127875558705 

 At row:191, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:191, column:147,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:147,the value of plot_cost is         : 54.72561050045634 

 At row:191, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:191, column:148,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:148,the value of plot_cost is         : 54.985901185756504 

 At row:191, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:191, column:149,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:149,the value of plot_cost is         : 55.246999931459165 

 At row:191, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:191, column:150,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:150,the value of plot_cost is         : 55.508906737564345 

 At row:191, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:191, column:151,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:151,the value of plot_cost is         : 55.77162160407206 

 At row:191, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:191, column:152,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:152,the value of plot_cost is         : 56.035144530982265 

 At row:191, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:191, column:153,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:153,the value of plot_cost is         : 56.29947551829499 

 At row:191, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:191, column:154,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:154,the value of plot_cost is         : 56.56461456601024 

 At row:191, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:191, column:155,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:155,the value of plot_cost is         : 56.83056167412801 

 At row:191, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:191, column:156,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:156,the value of plot_cost is         : 57.09731684264828 

 At row:191, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:191, column:157,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:157,the value of plot_cost is         : 57.36488007157108 

 At row:191, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:191, column:158,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:158,the value of plot_cost is         : 57.63325136089638 

 At row:191, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:191, column:159,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:159,the value of plot_cost is         : 57.902430710624195 

 At row:191, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:191, column:160,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:160,the value of plot_cost is         : 58.17241812075453 

 At row:191, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:191, column:161,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:161,the value of plot_cost is         : 58.44321359128739 

 At row:191, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:191, column:162,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:162,the value of plot_cost is         : 58.71481712222274 

 At row:191, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:191, column:163,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:163,the value of plot_cost is         : 58.987228713560626 

 At row:191, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:191, column:164,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:164,the value of plot_cost is         : 59.26044836530103 

 At row:191, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:191, column:165,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:165,the value of plot_cost is         : 59.53447607744395 

 At row:191, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:191, column:166,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:166,the value of plot_cost is         : 59.80931184998937 

 At row:191, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:191, column:167,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:167,the value of plot_cost is         : 60.084955682937306 

 At row:191, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:191, column:168,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:168,the value of plot_cost is         : 60.36140757628776 

 At row:191, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:191, column:169,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:169,the value of plot_cost is         : 60.638667530040735 

 At row:191, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:191, column:170,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:170,the value of plot_cost is         : 60.91673554419623 

 At row:191, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:191, column:171,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:171,the value of plot_cost is         : 61.19561161875422 

 At row:191, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:191, column:172,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:172,the value of plot_cost is         : 61.47529575371473 

 At row:191, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:191, column:173,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:173,the value of plot_cost is         : 61.755787949077764 

 At row:191, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:191, column:174,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:174,the value of plot_cost is         : 62.037088204843315 

 At row:191, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:191, column:175,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:175,the value of plot_cost is         : 62.319196521011385 

 At row:191, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:191, column:176,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:176,the value of plot_cost is         : 62.60211289758196 

 At row:191, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:191, column:177,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:177,the value of plot_cost is         : 62.885837334555056 

 At row:191, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:191, column:178,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:178,the value of plot_cost is         : 63.170369831930664 

 At row:191, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:191, column:179,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:179,the value of plot_cost is         : 63.455710389708784 

 At row:191, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:191, column:180,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:180,the value of plot_cost is         : 63.74185900788942 

 At row:191, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:191, column:181,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:181,the value of plot_cost is         : 64.02881568647257 

 At row:191, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:191, column:182,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:182,the value of plot_cost is         : 64.31658042545824 

 At row:191, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:191, column:183,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:183,the value of plot_cost is         : 64.60515322484642 

 At row:191, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:191, column:184,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:184,the value of plot_cost is         : 64.89453408463713 

 At row:191, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:191, column:185,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:185,the value of plot_cost is         : 65.18472300483035 

 At row:191, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:191, column:186,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:186,the value of plot_cost is         : 65.47571998542607 

 At row:191, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:191, column:187,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:187,the value of plot_cost is         : 65.76752502642431 

 At row:191, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:191, column:188,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:188,the value of plot_cost is         : 66.06013812782506 

 At row:191, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:191, column:189,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:189,the value of plot_cost is         : 66.35355928962832 

 At row:191, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:191, column:190,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:190,the value of plot_cost is         : 66.64778851183412 

 At row:191, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:191, column:191,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:191,the value of plot_cost is         : 66.94282579444244 

 At row:191, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:191, column:192,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:192,the value of plot_cost is         : 67.23867113745324 

 At row:191, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:191, column:193,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:193,the value of plot_cost is         : 67.53532454086657 

 At row:191, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:191, column:194,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:194,the value of plot_cost is         : 67.83278600468242 

 At row:191, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:191, column:195,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:195,the value of plot_cost is         : 68.1310555289008 

 At row:191, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:191, column:196,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:196,the value of plot_cost is         : 68.43013311352168 

 At row:191, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:191, column:197,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:197,the value of plot_cost is         : 68.73001875854507 

 At row:191, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:191, column:198,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:198,the value of plot_cost is         : 69.03071246397099 

 At row:191, column:199,the value of plot_t0 is           : 3.0
 At row:191, column:199,the value of plot_t1 is           : 2.8391959798994977
 At row:191, column:199,the value of plot_cost is         : 69.33221422979939 

 At row:192, column:0,the value of plot_t0 is           : -1.0
 At row:192, column:0,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:0,the value of plot_cost is         : 26.024979996897617 

 At row:192, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:192, column:1,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:1,the value of plot_cost is         : 26.169163946076388 

 At row:192, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:192, column:2,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:2,the value of plot_cost is         : 26.31415595565767 

 At row:192, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:192, column:3,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:3,the value of plot_cost is         : 26.459956025641482 

 At row:192, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:192, column:4,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:4,the value of plot_cost is         : 26.606564156027794 

 At row:192, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:192, column:5,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:5,the value of plot_cost is         : 26.753980346816636 

 At row:192, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:192, column:6,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:6,the value of plot_cost is         : 26.902204598007984 

 At row:192, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:192, column:7,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:7,the value of plot_cost is         : 27.051236909601844 

 At row:192, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:192, column:8,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:8,the value of plot_cost is         : 27.201077281598224 

 At row:192, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:192, column:9,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:9,the value of plot_cost is         : 27.351725713997112 

 At row:192, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:192, column:10,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:10,the value of plot_cost is         : 27.50318220679852 

 At row:192, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:192, column:11,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:11,the value of plot_cost is         : 27.65544676000244 

 At row:192, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:192, column:12,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:12,the value of plot_cost is         : 27.808519373608878 

 At row:192, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:192, column:13,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:13,the value of plot_cost is         : 27.962400047617834 

 At row:192, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:192, column:14,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:14,the value of plot_cost is         : 28.117088782029303 

 At row:192, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:192, column:15,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:15,the value of plot_cost is         : 28.272585576843284 

 At row:192, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:192, column:16,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:16,the value of plot_cost is         : 28.428890432059788 

 At row:192, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:192, column:17,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:17,the value of plot_cost is         : 28.586003347678798 

 At row:192, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:192, column:18,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:18,the value of plot_cost is         : 28.743924323700337 

 At row:192, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:192, column:19,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:19,the value of plot_cost is         : 28.902653360124376 

 At row:192, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:192, column:20,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:20,the value of plot_cost is         : 29.062190456950933 

 At row:192, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:192, column:21,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:21,the value of plot_cost is         : 29.222535614180007 

 At row:192, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:192, column:22,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:22,the value of plot_cost is         : 29.383688831811593 

 At row:192, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:192, column:23,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:23,the value of plot_cost is         : 29.545650109845703 

 At row:192, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:192, column:24,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:24,the value of plot_cost is         : 29.70841944828232 

 At row:192, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:192, column:25,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:25,the value of plot_cost is         : 29.87199684712146 

 At row:192, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:192, column:26,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:26,the value of plot_cost is         : 30.036382306363105 

 At row:192, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:192, column:27,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:27,the value of plot_cost is         : 30.20157582600727 

 At row:192, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:192, column:28,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:28,the value of plot_cost is         : 30.367577406053954 

 At row:192, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:192, column:29,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:29,the value of plot_cost is         : 30.53438704650315 

 At row:192, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:192, column:30,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:30,the value of plot_cost is         : 30.702004747354852 

 At row:192, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:192, column:31,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:31,the value of plot_cost is         : 30.87043050860908 

 At row:192, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:192, column:32,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:32,the value of plot_cost is         : 31.039664330265815 

 At row:192, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:192, column:33,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:33,the value of plot_cost is         : 31.209706212325077 

 At row:192, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:192, column:34,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:34,the value of plot_cost is         : 31.38055615478684 

 At row:192, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:192, column:35,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:35,the value of plot_cost is         : 31.552214157651136 

 At row:192, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:192, column:36,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:36,the value of plot_cost is         : 31.724680220917936 

 At row:192, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:192, column:37,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:37,the value of plot_cost is         : 31.89795434458725 

 At row:192, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:192, column:38,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:38,the value of plot_cost is         : 32.07203652865908 

 At row:192, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:192, column:39,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:39,the value of plot_cost is         : 32.246926773133424 

 At row:192, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:192, column:40,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:40,the value of plot_cost is         : 32.422625078010284 

 At row:192, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:192, column:41,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:41,the value of plot_cost is         : 32.59913144328966 

 At row:192, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:192, column:42,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:42,the value of plot_cost is         : 32.77644586897154 

 At row:192, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:192, column:43,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:43,the value of plot_cost is         : 32.954568355055954 

 At row:192, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:192, column:44,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:44,the value of plot_cost is         : 33.13349890154287 

 At row:192, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:192, column:45,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:45,the value of plot_cost is         : 33.31323750843232 

 At row:192, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:192, column:46,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:46,the value of plot_cost is         : 33.49378417572427 

 At row:192, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:192, column:47,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:47,the value of plot_cost is         : 33.675138903418734 

 At row:192, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:192, column:48,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:48,the value of plot_cost is         : 33.85730169151572 

 At row:192, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:192, column:49,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:49,the value of plot_cost is         : 34.040272540015216 

 At row:192, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:192, column:50,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:50,the value of plot_cost is         : 34.22405144891722 

 At row:192, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:192, column:51,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:51,the value of plot_cost is         : 34.408638418221756 

 At row:192, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:192, column:52,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:52,the value of plot_cost is         : 34.59403344792879 

 At row:192, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:192, column:53,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:53,the value of plot_cost is         : 34.780236538038345 

 At row:192, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:192, column:54,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:54,the value of plot_cost is         : 34.967247688550415 

 At row:192, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:192, column:55,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:55,the value of plot_cost is         : 35.15506689946502 

 At row:192, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:192, column:56,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:56,the value of plot_cost is         : 35.34369417078212 

 At row:192, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:192, column:57,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:57,the value of plot_cost is         : 35.53312950250174 

 At row:192, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:192, column:58,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:58,the value of plot_cost is         : 35.72337289462387 

 At row:192, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:192, column:59,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:59,the value of plot_cost is         : 35.91442434714851 

 At row:192, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:192, column:60,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:60,the value of plot_cost is         : 36.10628386007567 

 At row:192, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:192, column:61,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:61,the value of plot_cost is         : 36.29895143340534 

 At row:192, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:192, column:62,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:62,the value of plot_cost is         : 36.492427067137534 

 At row:192, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:192, column:63,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:63,the value of plot_cost is         : 36.68671076127225 

 At row:192, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:192, column:64,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:64,the value of plot_cost is         : 36.88180251580947 

 At row:192, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:192, column:65,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:65,the value of plot_cost is         : 37.07770233074922 

 At row:192, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:192, column:66,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:66,the value of plot_cost is         : 37.27441020609147 

 At row:192, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:192, column:67,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:67,the value of plot_cost is         : 37.47192614183624 

 At row:192, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:192, column:68,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:68,the value of plot_cost is         : 37.67025013798352 

 At row:192, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:192, column:69,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:69,the value of plot_cost is         : 37.86938219453332 

 At row:192, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:192, column:70,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:70,the value of plot_cost is         : 38.06932231148563 

 At row:192, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:192, column:71,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:71,the value of plot_cost is         : 38.27007048884045 

 At row:192, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:192, column:72,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:72,the value of plot_cost is         : 38.4716267265978 

 At row:192, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:192, column:73,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:73,the value of plot_cost is         : 38.673991024757655 

 At row:192, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:192, column:74,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:74,the value of plot_cost is         : 38.87716338332003 

 At row:192, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:192, column:75,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:75,the value of plot_cost is         : 39.081143802284934 

 At row:192, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:192, column:76,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:76,the value of plot_cost is         : 39.28593228165233 

 At row:192, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:192, column:77,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:77,the value of plot_cost is         : 39.49152882142226 

 At row:192, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:192, column:78,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:78,the value of plot_cost is         : 39.69793342159468 

 At row:192, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:192, column:79,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:79,the value of plot_cost is         : 39.90514608216963 

 At row:192, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:192, column:80,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:80,the value of plot_cost is         : 40.11316680314709 

 At row:192, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:192, column:81,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:81,the value of plot_cost is         : 40.321995584527066 

 At row:192, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:192, column:82,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:82,the value of plot_cost is         : 40.531632426309564 

 At row:192, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:192, column:83,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:83,the value of plot_cost is         : 40.74207732849457 

 At row:192, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:192, column:84,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:84,the value of plot_cost is         : 40.953330291082096 

 At row:192, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:192, column:85,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:85,the value of plot_cost is         : 41.16539131407216 

 At row:192, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:192, column:86,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:86,the value of plot_cost is         : 41.37826039746471 

 At row:192, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:192, column:87,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:87,the value of plot_cost is         : 41.591937541259774 

 At row:192, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:192, column:88,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:88,the value of plot_cost is         : 41.80642274545736 

 At row:192, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:192, column:89,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:89,the value of plot_cost is         : 42.02171601005745 

 At row:192, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:192, column:90,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:90,the value of plot_cost is         : 42.23781733506007 

 At row:192, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:192, column:91,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:91,the value of plot_cost is         : 42.454726720465196 

 At row:192, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:192, column:92,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:92,the value of plot_cost is         : 42.67244416627284 

 At row:192, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:192, column:93,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:93,the value of plot_cost is         : 42.890969672483 

 At row:192, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:192, column:94,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:94,the value of plot_cost is         : 43.11030323909568 

 At row:192, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:192, column:95,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:95,the value of plot_cost is         : 43.33044486611089 

 At row:192, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:192, column:96,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:96,the value of plot_cost is         : 43.55139455352858 

 At row:192, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:192, column:97,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:97,the value of plot_cost is         : 43.7731523013488 

 At row:192, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:192, column:98,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:98,the value of plot_cost is         : 43.99571810957155 

 At row:192, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:192, column:99,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:99,the value of plot_cost is         : 44.21909197819679 

 At row:192, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:192, column:100,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:100,the value of plot_cost is         : 44.44327390722455 

 At row:192, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:192, column:101,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:101,the value of plot_cost is         : 44.66826389665483 

 At row:192, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:192, column:102,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:102,the value of plot_cost is         : 44.894061946487625 

 At row:192, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:192, column:103,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:103,the value of plot_cost is         : 45.120668056722934 

 At row:192, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:192, column:104,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:104,the value of plot_cost is         : 45.34808222736078 

 At row:192, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:192, column:105,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:105,the value of plot_cost is         : 45.57630445840112 

 At row:192, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:192, column:106,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:106,the value of plot_cost is         : 45.80533474984397 

 At row:192, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:192, column:107,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:107,the value of plot_cost is         : 46.03517310168935 

 At row:192, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:192, column:108,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:108,the value of plot_cost is         : 46.26581951393723 

 At row:192, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:192, column:109,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:109,the value of plot_cost is         : 46.49727398658763 

 At row:192, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:192, column:110,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:110,the value of plot_cost is         : 46.72953651964055 

 At row:192, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:192, column:111,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:111,the value of plot_cost is         : 46.96260711309597 

 At row:192, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:192, column:112,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:112,the value of plot_cost is         : 47.19648576695392 

 At row:192, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:192, column:113,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:113,the value of plot_cost is         : 47.43117248121439 

 At row:192, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:192, column:114,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:114,the value of plot_cost is         : 47.66666725587735 

 At row:192, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:192, column:115,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:115,the value of plot_cost is         : 47.902970090942866 

 At row:192, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:192, column:116,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:116,the value of plot_cost is         : 48.140080986410865 

 At row:192, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:192, column:117,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:117,the value of plot_cost is         : 48.37799994228139 

 At row:192, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:192, column:118,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:118,the value of plot_cost is         : 48.61672695855443 

 At row:192, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:192, column:119,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:119,the value of plot_cost is         : 48.85626203522998 

 At row:192, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:192, column:120,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:120,the value of plot_cost is         : 49.096605172308045 

 At row:192, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:192, column:121,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:121,the value of plot_cost is         : 49.33775636978862 

 At row:192, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:192, column:122,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:122,the value of plot_cost is         : 49.57971562767172 

 At row:192, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:192, column:123,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:123,the value of plot_cost is         : 49.82248294595733 

 At row:192, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:192, column:124,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:124,the value of plot_cost is         : 50.066058324645475 

 At row:192, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:192, column:125,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:125,the value of plot_cost is         : 50.31044176373612 

 At row:192, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:192, column:126,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:126,the value of plot_cost is         : 50.555633263229275 

 At row:192, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:192, column:127,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:127,the value of plot_cost is         : 50.80163282312495 

 At row:192, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:192, column:128,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:128,the value of plot_cost is         : 51.04844044342313 

 At row:192, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:192, column:129,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:129,the value of plot_cost is         : 51.29605612412384 

 At row:192, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:192, column:130,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:130,the value of plot_cost is         : 51.544479865227046 

 At row:192, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:192, column:131,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:131,the value of plot_cost is         : 51.79371166673278 

 At row:192, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:192, column:132,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:132,the value of plot_cost is         : 52.04375152864103 

 At row:192, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:192, column:133,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:133,the value of plot_cost is         : 52.29459945095179 

 At row:192, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:192, column:134,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:134,the value of plot_cost is         : 52.546255433665074 

 At row:192, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:192, column:135,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:135,the value of plot_cost is         : 52.79871947678089 

 At row:192, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:192, column:136,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:136,the value of plot_cost is         : 53.05199158029919 

 At row:192, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:192, column:137,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:137,the value of plot_cost is         : 53.30607174422001 

 At row:192, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:192, column:138,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:138,the value of plot_cost is         : 53.56095996854335 

 At row:192, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:192, column:139,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:139,the value of plot_cost is         : 53.81665625326921 

 At row:192, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:192, column:140,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:140,the value of plot_cost is         : 54.073160598397564 

 At row:192, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:192, column:141,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:141,the value of plot_cost is         : 54.330473003928454 

 At row:192, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:192, column:142,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:142,the value of plot_cost is         : 54.58859346986185 

 At row:192, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:192, column:143,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:143,the value of plot_cost is         : 54.84752199619777 

 At row:192, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:192, column:144,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:144,the value of plot_cost is         : 55.10725858293621 

 At row:192, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:192, column:145,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:145,the value of plot_cost is         : 55.36780323007716 

 At row:192, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:192, column:146,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:146,the value of plot_cost is         : 55.62915593762061 

 At row:192, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:192, column:147,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:147,the value of plot_cost is         : 55.89131670556659 

 At row:192, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:192, column:148,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:148,the value of plot_cost is         : 56.154285533915086 

 At row:192, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:192, column:149,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:149,the value of plot_cost is         : 56.41806242266607 

 At row:192, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:192, column:150,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:150,the value of plot_cost is         : 56.6826473718196 

 At row:192, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:192, column:151,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:151,the value of plot_cost is         : 56.948040381375634 

 At row:192, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:192, column:152,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:152,the value of plot_cost is         : 57.214241451334175 

 At row:192, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:192, column:153,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:153,the value of plot_cost is         : 57.48125058169525 

 At row:192, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:192, column:154,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:154,the value of plot_cost is         : 57.74906777245883 

 At row:192, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:192, column:155,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:155,the value of plot_cost is         : 58.01769302362494 

 At row:192, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:192, column:156,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:156,the value of plot_cost is         : 58.28712633519355 

 At row:192, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:192, column:157,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:157,the value of plot_cost is         : 58.55736770716467 

 At row:192, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:192, column:158,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:158,the value of plot_cost is         : 58.828417139538324 

 At row:192, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:192, column:159,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:159,the value of plot_cost is         : 59.100274632314466 

 At row:192, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:192, column:160,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:160,the value of plot_cost is         : 59.372940185493135 

 At row:192, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:192, column:161,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:161,the value of plot_cost is         : 59.64641379907432 

 At row:192, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:192, column:162,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:162,the value of plot_cost is         : 59.92069547305801 

 At row:192, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:192, column:163,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:163,the value of plot_cost is         : 60.19578520744424 

 At row:192, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:192, column:164,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:164,the value of plot_cost is         : 60.471683002232986 

 At row:192, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:192, column:165,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:165,the value of plot_cost is         : 60.74838885742424 

 At row:192, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:192, column:166,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:166,the value of plot_cost is         : 61.025902773018004 

 At row:192, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:192, column:167,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:167,the value of plot_cost is         : 61.30422474901426 

 At row:192, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:192, column:168,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:168,the value of plot_cost is         : 61.58335478541305 

 At row:192, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:192, column:169,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:169,the value of plot_cost is         : 61.86329288221436 

 At row:192, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:192, column:170,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:170,the value of plot_cost is         : 62.144039039418175 

 At row:192, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:192, column:171,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:171,the value of plot_cost is         : 62.425593257024516 

 At row:192, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:192, column:172,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:172,the value of plot_cost is         : 62.70795553503336 

 At row:192, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:192, column:173,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:173,the value of plot_cost is         : 62.99112587344474 

 At row:192, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:192, column:174,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:174,the value of plot_cost is         : 63.27510427225861 

 At row:192, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:192, column:175,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:175,the value of plot_cost is         : 63.55989073147502 

 At row:192, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:192, column:176,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:176,the value of plot_cost is         : 63.84548525109395 

 At row:192, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:192, column:177,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:177,the value of plot_cost is         : 64.13188783111538 

 At row:192, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:192, column:178,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:178,the value of plot_cost is         : 64.41909847153931 

 At row:192, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:192, column:179,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:179,the value of plot_cost is         : 64.70711717236577 

 At row:192, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:192, column:180,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:180,the value of plot_cost is         : 64.99594393359473 

 At row:192, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:192, column:181,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:181,the value of plot_cost is         : 65.28557875522621 

 At row:192, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:192, column:182,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:182,the value of plot_cost is         : 65.57602163726021 

 At row:192, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:192, column:183,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:183,the value of plot_cost is         : 65.86727257969675 

 At row:192, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:192, column:184,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:184,the value of plot_cost is         : 66.1593315825358 

 At row:192, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:192, column:185,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:185,the value of plot_cost is         : 66.45219864577733 

 At row:192, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:192, column:186,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:186,the value of plot_cost is         : 66.74587376942141 

 At row:192, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:192, column:187,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:187,the value of plot_cost is         : 67.04035695346796 

 At row:192, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:192, column:188,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:188,the value of plot_cost is         : 67.33564819791707 

 At row:192, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:192, column:189,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:189,the value of plot_cost is         : 67.63174750276868 

 At row:192, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:192, column:190,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:190,the value of plot_cost is         : 67.92865486802279 

 At row:192, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:192, column:191,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:191,the value of plot_cost is         : 68.22637029367944 

 At row:192, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:192, column:192,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:192,the value of plot_cost is         : 68.52489377973859 

 At row:192, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:192, column:193,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:193,the value of plot_cost is         : 68.82422532620025 

 At row:192, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:192, column:194,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:194,the value of plot_cost is         : 69.12436493306443 

 At row:192, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:192, column:195,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:195,the value of plot_cost is         : 69.42531260033115 

 At row:192, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:192, column:196,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:196,the value of plot_cost is         : 69.72706832800037 

 At row:192, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:192, column:197,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:197,the value of plot_cost is         : 70.0296321160721 

 At row:192, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:192, column:198,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:198,the value of plot_cost is         : 70.33300396454634 

 At row:192, column:199,the value of plot_t0 is           : 3.0
 At row:192, column:199,the value of plot_t1 is           : 2.85929648241206
 At row:192, column:199,the value of plot_cost is         : 70.6371838734231 

 At row:193, column:0,the value of plot_t0 is           : -1.0
 At row:193, column:0,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:0,the value of plot_cost is         : 26.8095818287417 

 At row:193, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:193, column:1,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:1,the value of plot_cost is         : 26.9564439209688 

 At row:193, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:193, column:2,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:2,the value of plot_cost is         : 27.104114073598428 

 At row:193, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:193, column:3,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:3,the value of plot_cost is         : 27.252592286630566 

 At row:193, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:193, column:4,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:4,the value of plot_cost is         : 27.40187856006522 

 At row:193, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:193, column:5,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:5,the value of plot_cost is         : 27.55197289390238 

 At row:193, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:193, column:6,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:6,the value of plot_cost is         : 27.702875288142074 

 At row:193, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:193, column:7,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:7,the value of plot_cost is         : 27.854585742784273 

 At row:193, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:193, column:8,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:8,the value of plot_cost is         : 28.007104257828992 

 At row:193, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:193, column:9,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:9,the value of plot_cost is         : 28.160430833276212 

 At row:193, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:193, column:10,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:10,the value of plot_cost is         : 28.314565469125956 

 At row:193, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:193, column:11,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:11,the value of plot_cost is         : 28.469508165378215 

 At row:193, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:193, column:12,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:12,the value of plot_cost is         : 28.625258922032984 

 At row:193, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:193, column:13,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:13,the value of plot_cost is         : 28.78181773909028 

 At row:193, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:193, column:14,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:14,the value of plot_cost is         : 28.939184616550083 

 At row:193, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:193, column:15,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:15,the value of plot_cost is         : 29.09735955441241 

 At row:193, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:193, column:16,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:16,the value of plot_cost is         : 29.256342552677243 

 At row:193, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:193, column:17,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:17,the value of plot_cost is         : 29.416133611344588 

 At row:193, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:193, column:18,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:18,the value of plot_cost is         : 29.57673273041446 

 At row:193, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:193, column:19,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:19,the value of plot_cost is         : 29.738139909886836 

 At row:193, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:193, column:20,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:20,the value of plot_cost is         : 29.90035514976173 

 At row:193, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:193, column:21,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:21,the value of plot_cost is         : 30.063378450039135 

 At row:193, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:193, column:22,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:22,the value of plot_cost is         : 30.22720981071906 

 At row:193, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:193, column:23,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:23,the value of plot_cost is         : 30.391849231801505 

 At row:193, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:193, column:24,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:24,the value of plot_cost is         : 30.557296713286455 

 At row:193, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:193, column:25,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:25,the value of plot_cost is         : 30.72355225517392 

 At row:193, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:193, column:26,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:26,the value of plot_cost is         : 30.890615857463914 

 At row:193, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:193, column:27,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:27,the value of plot_cost is         : 31.058487520156415 

 At row:193, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:193, column:28,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:28,the value of plot_cost is         : 31.227167243251436 

 At row:193, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:193, column:29,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:29,the value of plot_cost is         : 31.396655026748963 

 At row:193, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:193, column:30,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:30,the value of plot_cost is         : 31.56695087064901 

 At row:193, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:193, column:31,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:31,the value of plot_cost is         : 31.738054774951568 

 At row:193, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:193, column:32,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:32,the value of plot_cost is         : 31.90996673965664 

 At row:193, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:193, column:33,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:33,the value of plot_cost is         : 32.08268676476423 

 At row:193, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:193, column:34,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:34,the value of plot_cost is         : 32.25621485027433 

 At row:193, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:193, column:35,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:35,the value of plot_cost is         : 32.43055099618697 

 At row:193, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:193, column:36,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:36,the value of plot_cost is         : 32.605695202502105 

 At row:193, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:193, column:37,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:37,the value of plot_cost is         : 32.781647469219756 

 At row:193, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:193, column:38,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:38,the value of plot_cost is         : 32.95840779633992 

 At row:193, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:193, column:39,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:39,the value of plot_cost is         : 33.1359761838626 

 At row:193, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:193, column:40,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:40,the value of plot_cost is         : 33.31435263178779 

 At row:193, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:193, column:41,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:41,the value of plot_cost is         : 33.49353714011551 

 At row:193, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:193, column:42,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:42,the value of plot_cost is         : 33.67352970884573 

 At row:193, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:193, column:43,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:43,the value of plot_cost is         : 33.854330337978475 

 At row:193, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:193, column:44,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:44,the value of plot_cost is         : 34.03593902751373 

 At row:193, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:193, column:45,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:45,the value of plot_cost is         : 34.218355777451514 

 At row:193, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:193, column:46,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:46,the value of plot_cost is         : 34.4015805877918 

 At row:193, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:193, column:47,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:47,the value of plot_cost is         : 34.585613458534596 

 At row:193, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:193, column:48,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:48,the value of plot_cost is         : 34.77045438967992 

 At row:193, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:193, column:49,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:49,the value of plot_cost is         : 34.95610338122775 

 At row:193, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:193, column:50,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:50,the value of plot_cost is         : 35.14256043317809 

 At row:193, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:193, column:51,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:51,the value of plot_cost is         : 35.32982554553095 

 At row:193, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:193, column:52,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:52,the value of plot_cost is         : 35.51789871828633 

 At row:193, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:193, column:53,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:53,the value of plot_cost is         : 35.706779951444226 

 At row:193, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:193, column:54,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:54,the value of plot_cost is         : 35.896469245004624 

 At row:193, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:193, column:55,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:55,the value of plot_cost is         : 36.086966598967564 

 At row:193, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:193, column:56,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:56,the value of plot_cost is         : 36.278272013333 

 At row:193, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:193, column:57,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:57,the value of plot_cost is         : 36.470385488100945 

 At row:193, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:193, column:58,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:58,the value of plot_cost is         : 36.66330702327142 

 At row:193, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:193, column:59,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:59,the value of plot_cost is         : 36.857036618844404 

 At row:193, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:193, column:60,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:60,the value of plot_cost is         : 37.0515742748199 

 At row:193, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:193, column:61,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:61,the value of plot_cost is         : 37.246919991197906 

 At row:193, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:193, column:62,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:62,the value of plot_cost is         : 37.44307376797844 

 At row:193, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:193, column:63,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:63,the value of plot_cost is         : 37.64003560516148 

 At row:193, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:193, column:64,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:64,the value of plot_cost is         : 37.83780550274704 

 At row:193, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:193, column:65,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:65,the value of plot_cost is         : 38.036383460735124 

 At row:193, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:193, column:66,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:66,the value of plot_cost is         : 38.23576947912571 

 At row:193, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:193, column:67,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:67,the value of plot_cost is         : 38.43596355791881 

 At row:193, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:193, column:68,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:68,the value of plot_cost is         : 38.636965697114434 

 At row:193, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:193, column:69,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:69,the value of plot_cost is         : 38.83877589671257 

 At row:193, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:193, column:70,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:70,the value of plot_cost is         : 39.04139415671321 

 At row:193, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:193, column:71,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:71,the value of plot_cost is         : 39.24482047711637 

 At row:193, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:193, column:72,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:72,the value of plot_cost is         : 39.44905485792205 

 At row:193, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:193, column:73,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:73,the value of plot_cost is         : 39.65409729913024 

 At row:193, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:193, column:74,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:74,the value of plot_cost is         : 39.85994780074095 

 At row:193, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:193, column:75,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:75,the value of plot_cost is         : 40.06660636275419 

 At row:193, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:193, column:76,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:76,the value of plot_cost is         : 40.27407298516994 

 At row:193, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:193, column:77,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:77,the value of plot_cost is         : 40.48234766798818 

 At row:193, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:193, column:78,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:78,the value of plot_cost is         : 40.691430411208955 

 At row:193, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:193, column:79,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:79,the value of plot_cost is         : 40.901321214832244 

 At row:193, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:193, column:80,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:80,the value of plot_cost is         : 41.11202007885803 

 At row:193, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:193, column:81,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:81,the value of plot_cost is         : 41.32352700328635 

 At row:193, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:193, column:82,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:82,the value of plot_cost is         : 41.53584198811718 

 At row:193, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:193, column:83,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:83,the value of plot_cost is         : 41.748965033350515 

 At row:193, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:193, column:84,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:84,the value of plot_cost is         : 41.96289613898638 

 At row:193, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:193, column:85,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:85,the value of plot_cost is         : 42.17763530502477 

 At row:193, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:193, column:86,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:86,the value of plot_cost is         : 42.39318253146566 

 At row:193, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:193, column:87,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:87,the value of plot_cost is         : 42.60953781830906 

 At row:193, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:193, column:88,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:88,the value of plot_cost is         : 42.82670116555499 

 At row:193, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:193, column:89,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:89,the value of plot_cost is         : 43.04467257320342 

 At row:193, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:193, column:90,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:90,the value of plot_cost is         : 43.26345204125437 

 At row:193, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:193, column:91,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:91,the value of plot_cost is         : 43.483039569707834 

 At row:193, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:193, column:92,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:92,the value of plot_cost is         : 43.70343515856382 

 At row:193, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:193, column:93,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:93,the value of plot_cost is         : 43.92463880782231 

 At row:193, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:193, column:94,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:94,the value of plot_cost is         : 44.14665051748331 

 At row:193, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:193, column:95,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:95,the value of plot_cost is         : 44.36947028754686 

 At row:193, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:193, column:96,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:96,the value of plot_cost is         : 44.593098118012904 

 At row:193, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:193, column:97,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:97,the value of plot_cost is         : 44.817534008881445 

 At row:193, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:193, column:98,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:98,the value of plot_cost is         : 45.04277796015253 

 At row:193, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:193, column:99,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:99,the value of plot_cost is         : 45.26882997182611 

 At row:193, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:193, column:100,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:100,the value of plot_cost is         : 45.4956900439022 

 At row:193, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:193, column:101,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:101,the value of plot_cost is         : 45.72335817638081 

 At row:193, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:193, column:102,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:102,the value of plot_cost is         : 45.95183436926195 

 At row:193, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:193, column:103,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:103,the value of plot_cost is         : 46.1811186225456 

 At row:193, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:193, column:104,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:104,the value of plot_cost is         : 46.41121093623176 

 At row:193, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:193, column:105,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:105,the value of plot_cost is         : 46.642111310320445 

 At row:193, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:193, column:106,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:106,the value of plot_cost is         : 46.87381974481164 

 At row:193, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:193, column:107,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:107,the value of plot_cost is         : 47.10633623970534 

 At row:193, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:193, column:108,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:108,the value of plot_cost is         : 47.33966079500156 

 At row:193, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:193, column:109,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:109,the value of plot_cost is         : 47.5737934107003 

 At row:193, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:193, column:110,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:110,the value of plot_cost is         : 47.808734086801564 

 At row:193, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:193, column:111,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:111,the value of plot_cost is         : 48.04448282330533 

 At row:193, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:193, column:112,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:112,the value of plot_cost is         : 48.2810396202116 

 At row:193, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:193, column:113,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:113,the value of plot_cost is         : 48.5184044775204 

 At row:193, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:193, column:114,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:114,the value of plot_cost is         : 48.75657739523172 

 At row:193, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:193, column:115,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:115,the value of plot_cost is         : 48.99555837334556 

 At row:193, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:193, column:116,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:116,the value of plot_cost is         : 49.235347411861895 

 At row:193, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:193, column:117,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:117,the value of plot_cost is         : 49.47594451078075 

 At row:193, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:193, column:118,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:118,the value of plot_cost is         : 49.71734967010213 

 At row:193, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:193, column:119,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:119,the value of plot_cost is         : 49.959562889826 

 At row:193, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:193, column:120,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:120,the value of plot_cost is         : 50.20258416995242 

 At row:193, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:193, column:121,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:121,the value of plot_cost is         : 50.44641351048133 

 At row:193, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:193, column:122,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:122,the value of plot_cost is         : 50.69105091141276 

 At row:193, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:193, column:123,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:123,the value of plot_cost is         : 50.9364963727467 

 At row:193, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:193, column:124,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:124,the value of plot_cost is         : 51.18274989448318 

 At row:193, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:193, column:125,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:125,the value of plot_cost is         : 51.42981147662218 

 At row:193, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:193, column:126,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:126,the value of plot_cost is         : 51.67768111916366 

 At row:193, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:193, column:127,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:127,the value of plot_cost is         : 51.92635882210766 

 At row:193, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:193, column:128,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:128,the value of plot_cost is         : 52.17584458545419 

 At row:193, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:193, column:129,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:129,the value of plot_cost is         : 52.426138409203226 

 At row:193, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:193, column:130,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:130,the value of plot_cost is         : 52.677240293354785 

 At row:193, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:193, column:131,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:131,the value of plot_cost is         : 52.929150237908836 

 At row:193, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:193, column:132,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:132,the value of plot_cost is         : 53.181868242865434 

 At row:193, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:193, column:133,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:133,the value of plot_cost is         : 53.435394308224524 

 At row:193, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:193, column:134,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:134,the value of plot_cost is         : 53.689728433986154 

 At row:193, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:193, column:135,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:135,the value of plot_cost is         : 53.94487062015029 

 At row:193, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:193, column:136,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:136,the value of plot_cost is         : 54.20082086671693 

 At row:193, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:193, column:137,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:137,the value of plot_cost is         : 54.457579173686085 

 At row:193, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:193, column:138,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:138,the value of plot_cost is         : 54.715145541057765 

 At row:193, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:193, column:139,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:139,the value of plot_cost is         : 54.97351996883195 

 At row:193, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:193, column:140,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:140,the value of plot_cost is         : 55.23270245700866 

 At row:193, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:193, column:141,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:141,the value of plot_cost is         : 55.49269300558787 

 At row:193, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:193, column:142,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:142,the value of plot_cost is         : 55.75349161456961 

 At row:193, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:193, column:143,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:143,the value of plot_cost is         : 56.015098283953854 

 At row:193, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:193, column:144,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:144,the value of plot_cost is         : 56.277513013740624 

 At row:193, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:193, column:145,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:145,the value of plot_cost is         : 56.54073580392992 

 At row:193, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:193, column:146,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:146,the value of plot_cost is         : 56.804766654521714 

 At row:193, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:193, column:147,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:147,the value of plot_cost is         : 57.069605565516014 

 At row:193, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:193, column:148,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:148,the value of plot_cost is         : 57.335252536912854 

 At row:193, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:193, column:149,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:149,the value of plot_cost is         : 57.601707568712186 

 At row:193, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:193, column:150,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:150,the value of plot_cost is         : 57.868970660914044 

 At row:193, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:193, column:151,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:151,the value of plot_cost is         : 58.137041813518415 

 At row:193, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:193, column:152,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:152,the value of plot_cost is         : 58.4059210265253 

 At row:193, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:193, column:153,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:153,the value of plot_cost is         : 58.675608299934694 

 At row:193, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:193, column:154,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:154,the value of plot_cost is         : 58.94610363374662 

 At row:193, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:193, column:155,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:155,the value of plot_cost is         : 59.21740702796106 

 At row:193, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:193, column:156,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:156,the value of plot_cost is         : 59.489518482578006 

 At row:193, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:193, column:157,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:157,the value of plot_cost is         : 59.76243799759746 

 At row:193, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:193, column:158,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:158,the value of plot_cost is         : 60.03616557301945 

 At row:193, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:193, column:159,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:159,the value of plot_cost is         : 60.31070120884393 

 At row:193, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:193, column:160,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:160,the value of plot_cost is         : 60.586044905070935 

 At row:193, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:193, column:161,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:161,the value of plot_cost is         : 60.862196661700466 

 At row:193, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:193, column:162,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:162,the value of plot_cost is         : 61.1391564787325 

 At row:193, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:193, column:163,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:163,the value of plot_cost is         : 61.416924356167044 

 At row:193, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:193, column:164,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:164,the value of plot_cost is         : 61.69550029400412 

 At row:193, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:193, column:165,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:165,the value of plot_cost is         : 61.974884292243715 

 At row:193, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:193, column:166,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:166,the value of plot_cost is         : 62.2550763508858 

 At row:193, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:193, column:167,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:167,the value of plot_cost is         : 62.53607646993041 

 At row:193, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:193, column:168,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:168,the value of plot_cost is         : 62.81788464937754 

 At row:193, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:193, column:169,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:169,the value of plot_cost is         : 63.10050088922718 

 At row:193, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:193, column:170,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:170,the value of plot_cost is         : 63.38392518947934 

 At row:193, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:193, column:171,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:171,the value of plot_cost is         : 63.66815755013401 

 At row:193, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:193, column:172,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:172,the value of plot_cost is         : 63.953197971191194 

 At row:193, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:193, column:173,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:173,the value of plot_cost is         : 64.2390464526509 

 At row:193, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:193, column:174,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:174,the value of plot_cost is         : 64.52570299451311 

 At row:193, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:193, column:175,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:175,the value of plot_cost is         : 64.81316759677786 

 At row:193, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:193, column:176,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:176,the value of plot_cost is         : 65.10144025944511 

 At row:193, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:193, column:177,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:177,the value of plot_cost is         : 65.39052098251487 

 At row:193, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:193, column:178,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:178,the value of plot_cost is         : 65.68040976598714 

 At row:193, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:193, column:179,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:179,the value of plot_cost is         : 65.97110660986193 

 At row:193, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:193, column:180,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:180,the value of plot_cost is         : 66.26261151413925 

 At row:193, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:193, column:181,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:181,the value of plot_cost is         : 66.55492447881907 

 At row:193, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:193, column:182,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:182,the value of plot_cost is         : 66.8480455039014 

 At row:193, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:193, column:183,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:183,the value of plot_cost is         : 67.14197458938627 

 At row:193, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:193, column:184,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:184,the value of plot_cost is         : 67.43671173527365 

 At row:193, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:193, column:185,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:185,the value of plot_cost is         : 67.73225694156353 

 At row:193, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:193, column:186,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:186,the value of plot_cost is         : 68.02861020825593 

 At row:193, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:193, column:187,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:187,the value of plot_cost is         : 68.32577153535084 

 At row:193, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:193, column:188,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:188,the value of plot_cost is         : 68.62374092284827 

 At row:193, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:193, column:189,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:189,the value of plot_cost is         : 68.92251837074821 

 At row:193, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:193, column:190,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:190,the value of plot_cost is         : 69.22210387905068 

 At row:193, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:193, column:191,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:191,the value of plot_cost is         : 69.52249744775564 

 At row:193, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:193, column:192,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:192,the value of plot_cost is         : 69.82369907686314 

 At row:193, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:193, column:193,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:193,the value of plot_cost is         : 70.12570876637314 

 At row:193, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:193, column:194,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:194,the value of plot_cost is         : 70.42852651628567 

 At row:193, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:193, column:195,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:195,the value of plot_cost is         : 70.73215232660071 

 At row:193, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:193, column:196,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:196,the value of plot_cost is         : 71.03658619731824 

 At row:193, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:193, column:197,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:197,the value of plot_cost is         : 71.34182812843831 

 At row:193, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:193, column:198,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:198,the value of plot_cost is         : 71.6478781199609 

 At row:193, column:199,the value of plot_t0 is           : 3.0
 At row:193, column:199,the value of plot_t1 is           : 2.879396984924623
 At row:193, column:199,the value of plot_cost is         : 71.95473617188598 

 At row:194, column:0,the value of plot_t0 is           : -1.0
 At row:194, column:0,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:0,the value of plot_cost is         : 27.606766315424935 

 At row:194, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:194, column:1,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:1,the value of plot_cost is         : 27.75630655070038 

 At row:194, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:194, column:2,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:2,the value of plot_cost is         : 27.906654846378338 

 At row:194, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:194, column:3,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:3,the value of plot_cost is         : 28.057811202458815 

 At row:194, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:194, column:4,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:4,the value of plot_cost is         : 28.2097756189418 

 At row:194, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:194, column:5,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:5,the value of plot_cost is         : 28.36254809582731 

 At row:194, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:194, column:6,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:6,the value of plot_cost is         : 28.51612863311533 

 At row:194, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:194, column:7,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:7,the value of plot_cost is         : 28.670517230805864 

 At row:194, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:194, column:8,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:8,the value of plot_cost is         : 28.825713888898918 

 At row:194, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:194, column:9,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:9,the value of plot_cost is         : 28.98171860739448 

 At row:194, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:194, column:10,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:10,the value of plot_cost is         : 29.13853138629256 

 At row:194, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:194, column:11,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:11,the value of plot_cost is         : 29.29615222559315 

 At row:194, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:194, column:12,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:12,the value of plot_cost is         : 29.454581125296258 

 At row:194, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:194, column:13,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:13,the value of plot_cost is         : 29.61381808540189 

 At row:194, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:194, column:14,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:14,the value of plot_cost is         : 29.773863105910024 

 At row:194, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:194, column:15,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:15,the value of plot_cost is         : 29.93471618682068 

 At row:194, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:194, column:16,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:16,the value of plot_cost is         : 30.09637732813386 

 At row:194, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:194, column:17,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:17,the value of plot_cost is         : 30.25884652984954 

 At row:194, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:194, column:18,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:18,the value of plot_cost is         : 30.422123791967742 

 At row:194, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:194, column:19,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:19,the value of plot_cost is         : 30.586209114488454 

 At row:194, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:194, column:20,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:20,the value of plot_cost is         : 30.751102497411683 

 At row:194, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:194, column:21,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:21,the value of plot_cost is         : 30.916803940737427 

 At row:194, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:194, column:22,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:22,the value of plot_cost is         : 31.083313444465688 

 At row:194, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:194, column:23,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:23,the value of plot_cost is         : 31.250631008596468 

 At row:194, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:194, column:24,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:24,the value of plot_cost is         : 31.41875663312975 

 At row:194, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:194, column:25,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:25,the value of plot_cost is         : 31.587690318065572 

 At row:194, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:194, column:26,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:26,the value of plot_cost is         : 31.75743206340389 

 At row:194, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:194, column:27,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:27,the value of plot_cost is         : 31.927981869144723 

 At row:194, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:194, column:28,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:28,the value of plot_cost is         : 32.09933973528808 

 At row:194, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:194, column:29,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:29,the value of plot_cost is         : 32.27150566183394 

 At row:194, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:194, column:30,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:30,the value of plot_cost is         : 32.44447964878232 

 At row:194, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:194, column:31,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:31,the value of plot_cost is         : 32.61826169613321 

 At row:194, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:194, column:32,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:32,the value of plot_cost is         : 32.79285180388663 

 At row:194, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:194, column:33,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:33,the value of plot_cost is         : 32.96824997204255 

 At row:194, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:194, column:34,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:34,the value of plot_cost is         : 33.14445620060099 

 At row:194, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:194, column:35,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:35,the value of plot_cost is         : 33.32147048956196 

 At row:194, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:194, column:36,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:36,the value of plot_cost is         : 33.499292838925435 

 At row:194, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:194, column:37,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:37,the value of plot_cost is         : 33.677923248691414 

 At row:194, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:194, column:38,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:38,the value of plot_cost is         : 33.85736171885992 

 At row:194, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:194, column:39,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:39,the value of plot_cost is         : 34.03760824943094 

 At row:194, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:194, column:40,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:40,the value of plot_cost is         : 34.21866284040447 

 At row:194, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:194, column:41,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:41,the value of plot_cost is         : 34.40052549178051 

 At row:194, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:194, column:42,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:42,the value of plot_cost is         : 34.583196203559076 

 At row:194, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:194, column:43,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:43,the value of plot_cost is         : 34.76667497574015 

 At row:194, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:194, column:44,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:44,the value of plot_cost is         : 34.95096180832374 

 At row:194, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:194, column:45,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:45,the value of plot_cost is         : 35.13605670130986 

 At row:194, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:194, column:46,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:46,the value of plot_cost is         : 35.32195965469848 

 At row:194, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:194, column:47,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:47,the value of plot_cost is         : 35.50867066848962 

 At row:194, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:194, column:48,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:48,the value of plot_cost is         : 35.69618974268327 

 At row:194, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:194, column:49,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:49,the value of plot_cost is         : 35.884516877279445 

 At row:194, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:194, column:50,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:50,the value of plot_cost is         : 36.07365207227812 

 At row:194, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:194, column:51,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:51,the value of plot_cost is         : 36.26359532767932 

 At row:194, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:194, column:52,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:52,the value of plot_cost is         : 36.45434664348303 

 At row:194, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:194, column:53,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:53,the value of plot_cost is         : 36.64590601968926 

 At row:194, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:194, column:54,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:54,the value of plot_cost is         : 36.838273456298 

 At row:194, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:194, column:55,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:55,the value of plot_cost is         : 37.03144895330927 

 At row:194, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:194, column:56,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:56,the value of plot_cost is         : 37.22543251072304 

 At row:194, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:194, column:57,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:57,the value of plot_cost is         : 37.42022412853933 

 At row:194, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:194, column:58,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:58,the value of plot_cost is         : 37.61582380675813 

 At row:194, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:194, column:59,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:59,the value of plot_cost is         : 37.812231545379454 

 At row:194, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:194, column:60,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:60,the value of plot_cost is         : 38.009447344403284 

 At row:194, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:194, column:61,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:61,the value of plot_cost is         : 38.20747120382962 

 At row:194, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:194, column:62,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:62,the value of plot_cost is         : 38.40630312365849 

 At row:194, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:194, column:63,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:63,the value of plot_cost is         : 38.60594310388987 

 At row:194, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:194, column:64,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:64,the value of plot_cost is         : 38.806391144523765 

 At row:194, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:194, column:65,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:65,the value of plot_cost is         : 39.00764724556019 

 At row:194, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:194, column:66,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:66,the value of plot_cost is         : 39.20971140699911 

 At row:194, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:194, column:67,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:67,the value of plot_cost is         : 39.41258362884055 

 At row:194, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:194, column:68,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:68,the value of plot_cost is         : 39.61626391108451 

 At row:194, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:194, column:69,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:69,the value of plot_cost is         : 39.82075225373097 

 At row:194, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:194, column:70,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:70,the value of plot_cost is         : 40.026048656779956 

 At row:194, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:194, column:71,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:71,the value of plot_cost is         : 40.23215312023145 

 At row:194, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:194, column:72,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:72,the value of plot_cost is         : 40.439065644085474 

 At row:194, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:194, column:73,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:73,the value of plot_cost is         : 40.646786228341995 

 At row:194, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:194, column:74,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:74,the value of plot_cost is         : 40.855314873001035 

 At row:194, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:194, column:75,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:75,the value of plot_cost is         : 41.064651578062616 

 At row:194, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:194, column:76,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:76,the value of plot_cost is         : 41.27479634352668 

 At row:194, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:194, column:77,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:77,the value of plot_cost is         : 41.48574916939328 

 At row:194, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:194, column:78,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:78,the value of plot_cost is         : 41.697510055662384 

 At row:194, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:194, column:79,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:79,the value of plot_cost is         : 41.910079002334 

 At row:194, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:194, column:80,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:80,the value of plot_cost is         : 42.12345600940814 

 At row:194, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:194, column:81,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:81,the value of plot_cost is         : 42.33764107688478 

 At row:194, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:194, column:82,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:82,the value of plot_cost is         : 42.55263420476395 

 At row:194, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:194, column:83,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:83,the value of plot_cost is         : 42.76843539304563 

 At row:194, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:194, column:84,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:84,the value of plot_cost is         : 42.98504464172982 

 At row:194, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:194, column:85,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:85,the value of plot_cost is         : 43.20246195081655 

 At row:194, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:194, column:86,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:86,the value of plot_cost is         : 43.420687320305774 

 At row:194, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:194, column:87,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:87,the value of plot_cost is         : 43.63972075019751 

 At row:194, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:194, column:88,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:88,the value of plot_cost is         : 43.85956224049177 

 At row:194, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:194, column:89,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:89,the value of plot_cost is         : 44.08021179118854 

 At row:194, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:194, column:90,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:90,the value of plot_cost is         : 44.30166940228782 

 At row:194, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:194, column:91,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:91,the value of plot_cost is         : 44.52393507378962 

 At row:194, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:194, column:92,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:92,the value of plot_cost is         : 44.747008805693945 

 At row:194, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:194, column:93,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:93,the value of plot_cost is         : 44.97089059800078 

 At row:194, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:194, column:94,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:94,the value of plot_cost is         : 45.19558045071012 

 At row:194, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:194, column:95,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:95,the value of plot_cost is         : 45.421078363822 

 At row:194, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:194, column:96,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:96,the value of plot_cost is         : 45.64738433733636 

 At row:194, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:194, column:97,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:97,the value of plot_cost is         : 45.87449837125326 

 At row:194, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:194, column:98,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:98,the value of plot_cost is         : 46.10242046557267 

 At row:194, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:194, column:99,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:99,the value of plot_cost is         : 46.33115062029459 

 At row:194, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:194, column:100,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:100,the value of plot_cost is         : 46.560688835419015 

 At row:194, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:194, column:101,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:101,the value of plot_cost is         : 46.79103511094597 

 At row:194, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:194, column:102,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:102,the value of plot_cost is         : 47.02218944687544 

 At row:194, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:194, column:103,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:103,the value of plot_cost is         : 47.254151843207424 

 At row:194, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:194, column:104,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:104,the value of plot_cost is         : 47.48692229994193 

 At row:194, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:194, column:105,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:105,the value of plot_cost is         : 47.72050081707894 

 At row:194, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:194, column:106,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:106,the value of plot_cost is         : 47.95488739461846 

 At row:194, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:194, column:107,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:107,the value of plot_cost is         : 48.19008203256052 

 At row:194, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:194, column:108,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:108,the value of plot_cost is         : 48.426084730905075 

 At row:194, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:194, column:109,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:109,the value of plot_cost is         : 48.66289548965214 

 At row:194, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:194, column:110,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:110,the value of plot_cost is         : 48.90051430880173 

 At row:194, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:194, column:111,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:111,the value of plot_cost is         : 49.13894118835382 

 At row:194, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:194, column:112,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:112,the value of plot_cost is         : 49.378176128308446 

 At row:194, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:194, column:113,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:113,the value of plot_cost is         : 49.61821912866558 

 At row:194, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:194, column:114,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:114,the value of plot_cost is         : 49.859070189425225 

 At row:194, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:194, column:115,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:115,the value of plot_cost is         : 50.100729310587404 

 At row:194, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:194, column:116,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:116,the value of plot_cost is         : 50.343196492152074 

 At row:194, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:194, column:117,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:117,the value of plot_cost is         : 50.58647173411928 

 At row:194, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:194, column:118,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:118,the value of plot_cost is         : 50.830555036488995 

 At row:194, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:194, column:119,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:119,the value of plot_cost is         : 51.07544639926121 

 At row:194, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:194, column:120,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:120,the value of plot_cost is         : 51.321145822435945 

 At row:194, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:194, column:121,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:121,the value of plot_cost is         : 51.5676533060132 

 At row:194, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:194, column:122,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:122,the value of plot_cost is         : 51.814968849992965 

 At row:194, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:194, column:123,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:123,the value of plot_cost is         : 52.06309245437525 

 At row:194, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:194, column:124,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:124,the value of plot_cost is         : 52.31202411916006 

 At row:194, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:194, column:125,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:125,the value of plot_cost is         : 52.561763844347375 

 At row:194, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:194, column:126,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:126,the value of plot_cost is         : 52.812311629937206 

 At row:194, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:194, column:127,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:127,the value of plot_cost is         : 53.063667475929556 

 At row:194, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:194, column:128,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:128,the value of plot_cost is         : 53.31583138232441 

 At row:194, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:194, column:129,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:129,the value of plot_cost is         : 53.56880334912178 

 At row:194, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:194, column:130,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:130,the value of plot_cost is         : 53.82258337632166 

 At row:194, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:194, column:131,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:131,the value of plot_cost is         : 54.07717146392407 

 At row:194, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:194, column:132,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:132,the value of plot_cost is         : 54.33256761192898 

 At row:194, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:194, column:133,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:133,the value of plot_cost is         : 54.58877182033643 

 At row:194, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:194, column:134,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:134,the value of plot_cost is         : 54.84578408914638 

 At row:194, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:194, column:135,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:135,the value of plot_cost is         : 55.103604418358856 

 At row:194, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:194, column:136,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:136,the value of plot_cost is         : 55.362232807973825 

 At row:194, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:194, column:137,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:137,the value of plot_cost is         : 55.621669257991336 

 At row:194, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:194, column:138,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:138,the value of plot_cost is         : 55.88191376841134 

 At row:194, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:194, column:139,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:139,the value of plot_cost is         : 56.14296633923386 

 At row:194, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:194, column:140,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:140,the value of plot_cost is         : 56.4048269704589 

 At row:194, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:194, column:141,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:141,the value of plot_cost is         : 56.667495662086445 

 At row:194, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:194, column:142,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:142,the value of plot_cost is         : 56.93097241411651 

 At row:194, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:194, column:143,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:143,the value of plot_cost is         : 57.1952572265491 

 At row:194, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:194, column:144,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:144,the value of plot_cost is         : 57.46035009938423 

 At row:194, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:194, column:145,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:145,the value of plot_cost is         : 57.72625103262184 

 At row:194, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:194, column:146,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:146,the value of plot_cost is         : 57.99296002626197 

 At row:194, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:194, column:147,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:147,the value of plot_cost is         : 58.26047708030462 

 At row:194, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:194, column:148,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:148,the value of plot_cost is         : 58.52880219474978 

 At row:194, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:194, column:149,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:149,the value of plot_cost is         : 58.797935369597454 

 At row:194, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:194, column:150,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:150,the value of plot_cost is         : 59.06787660484764 

 At row:194, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:194, column:151,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:151,the value of plot_cost is         : 59.33862590050035 

 At row:194, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:194, column:152,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:152,the value of plot_cost is         : 59.61018325655557 

 At row:194, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:194, column:153,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:153,the value of plot_cost is         : 59.882548673013304 

 At row:194, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:194, column:154,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:154,the value of plot_cost is         : 60.155722149873554 

 At row:194, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:194, column:155,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:155,the value of plot_cost is         : 60.429703687136346 

 At row:194, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:194, column:156,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:156,the value of plot_cost is         : 60.70449328480163 

 At row:194, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:194, column:157,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:157,the value of plot_cost is         : 60.980090942869424 

 At row:194, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:194, column:158,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:158,the value of plot_cost is         : 61.25649666133974 

 At row:194, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:194, column:159,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:159,the value of plot_cost is         : 61.53371044021256 

 At row:194, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:194, column:160,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:160,the value of plot_cost is         : 61.811732279487885 

 At row:194, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:194, column:161,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:161,the value of plot_cost is         : 62.09056217916575 

 At row:194, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:194, column:162,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:162,the value of plot_cost is         : 62.370200139246116 

 At row:194, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:194, column:163,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:163,the value of plot_cost is         : 62.650646159729014 

 At row:194, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:194, column:164,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:164,the value of plot_cost is         : 62.93190024061443 

 At row:194, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:194, column:165,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:165,the value of plot_cost is         : 63.21396238190235 

 At row:194, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:194, column:166,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:166,the value of plot_cost is         : 63.496832583592784 

 At row:194, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:194, column:167,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:167,the value of plot_cost is         : 63.78051084568572 

 At row:194, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:194, column:168,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:168,the value of plot_cost is         : 64.0649971681812 

 At row:194, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:194, column:169,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:169,the value of plot_cost is         : 64.35029155107917 

 At row:194, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:194, column:170,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:170,the value of plot_cost is         : 64.63639399437965 

 At row:194, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:194, column:171,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:171,the value of plot_cost is         : 64.92330449808266 

 At row:194, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:194, column:172,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:172,the value of plot_cost is         : 65.21102306218818 

 At row:194, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:194, column:173,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:173,the value of plot_cost is         : 65.49954968669623 

 At row:194, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:194, column:174,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:174,the value of plot_cost is         : 65.78888437160677 

 At row:194, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:194, column:175,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:175,the value of plot_cost is         : 66.07902711691986 

 At row:194, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:194, column:176,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:176,the value of plot_cost is         : 66.36997792263544 

 At row:194, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:194, column:177,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:177,the value of plot_cost is         : 66.66173678875354 

 At row:194, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:194, column:178,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:178,the value of plot_cost is         : 66.95430371527415 

 At row:194, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:194, column:179,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:179,the value of plot_cost is         : 67.24767870219728 

 At row:194, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:194, column:180,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:180,the value of plot_cost is         : 67.54186174952292 

 At row:194, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:194, column:181,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:181,the value of plot_cost is         : 67.83685285725107 

 At row:194, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:194, column:182,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:182,the value of plot_cost is         : 68.13265202538174 

 At row:194, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:194, column:183,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:183,the value of plot_cost is         : 68.42925925391495 

 At row:194, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:194, column:184,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:184,the value of plot_cost is         : 68.72667454285066 

 At row:194, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:194, column:185,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:185,the value of plot_cost is         : 69.02489789218887 

 At row:194, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:194, column:186,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:186,the value of plot_cost is         : 69.32392930192962 

 At row:194, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:194, column:187,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:187,the value of plot_cost is         : 69.62376877207286 

 At row:194, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:194, column:188,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:188,the value of plot_cost is         : 69.92441630261862 

 At row:194, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:194, column:189,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:189,the value of plot_cost is         : 70.2258718935669 

 At row:194, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:194, column:190,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:190,the value of plot_cost is         : 70.52813554491769 

 At row:194, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:194, column:191,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:191,the value of plot_cost is         : 70.83120725667101 

 At row:194, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:194, column:192,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:192,the value of plot_cost is         : 71.13508702882683 

 At row:194, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:194, column:193,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:193,the value of plot_cost is         : 71.43977486138517 

 At row:194, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:194, column:194,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:194,the value of plot_cost is         : 71.74527075434601 

 At row:194, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:194, column:195,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:195,the value of plot_cost is         : 72.0515747077094 

 At row:194, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:194, column:196,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:196,the value of plot_cost is         : 72.3586867214753 

 At row:194, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:194, column:197,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:197,the value of plot_cost is         : 72.6666067956437 

 At row:194, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:194, column:198,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:198,the value of plot_cost is         : 72.97533493021461 

 At row:194, column:199,the value of plot_t0 is           : 3.0
 At row:194, column:199,the value of plot_t1 is           : 2.899497487437186
 At row:194, column:199,the value of plot_cost is         : 73.28487112518805 

 At row:195, column:0,the value of plot_t0 is           : -1.0
 At row:195, column:0,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:0,the value of plot_cost is         : 28.41653345694734 

 At row:195, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:195, column:1,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:1,the value of plot_cost is         : 28.56875183527112 

 At row:195, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:195, column:2,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:2,the value of plot_cost is         : 28.721778273997415 

 At row:195, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:195, column:3,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:3,the value of plot_cost is         : 28.87561277312623 

 At row:195, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:195, column:4,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:4,the value of plot_cost is         : 29.030255332657546 

 At row:195, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:195, column:5,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:5,the value of plot_cost is         : 29.185705952591388 

 At row:195, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:195, column:6,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:6,the value of plot_cost is         : 29.34196463292775 

 At row:195, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:195, column:7,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:7,the value of plot_cost is         : 29.499031373666618 

 At row:195, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:195, column:8,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:8,the value of plot_cost is         : 29.656906174808007 

 At row:195, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:195, column:9,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:9,the value of plot_cost is         : 29.815589036351906 

 At row:195, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:195, column:10,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:10,the value of plot_cost is         : 29.975079958298316 

 At row:195, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:195, column:11,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:11,the value of plot_cost is         : 30.13537894064725 

 At row:195, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:195, column:12,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:12,the value of plot_cost is         : 30.29648598339869 

 At row:195, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:195, column:13,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:13,the value of plot_cost is         : 30.45840108655266 

 At row:195, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:195, column:14,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:14,the value of plot_cost is         : 30.62112425010913 

 At row:195, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:195, column:15,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:15,the value of plot_cost is         : 30.78465547406813 

 At row:195, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:195, column:16,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:16,the value of plot_cost is         : 30.94899475842963 

 At row:195, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:195, column:17,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:17,the value of plot_cost is         : 31.114142103193654 

 At row:195, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:195, column:18,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:18,the value of plot_cost is         : 31.28009750836019 

 At row:195, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:195, column:19,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:19,the value of plot_cost is         : 31.44686097392924 

 At row:195, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:195, column:20,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:20,the value of plot_cost is         : 31.614432499900804 

 At row:195, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:195, column:21,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:21,the value of plot_cost is         : 31.782812086274884 

 At row:195, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:195, column:22,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:22,the value of plot_cost is         : 31.95199973305148 

 At row:195, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:195, column:23,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:23,the value of plot_cost is         : 32.12199544023059 

 At row:195, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:195, column:24,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:24,the value of plot_cost is         : 32.292799207812216 

 At row:195, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:195, column:25,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:25,the value of plot_cost is         : 32.46441103579636 

 At row:195, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:195, column:26,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:26,the value of plot_cost is         : 32.63683092418302 

 At row:195, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:195, column:27,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:27,the value of plot_cost is         : 32.8100588729722 

 At row:195, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:195, column:28,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:28,the value of plot_cost is         : 32.98409488216388 

 At row:195, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:195, column:29,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:29,the value of plot_cost is         : 33.15893895175808 

 At row:195, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:195, column:30,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:30,the value of plot_cost is         : 33.3345910817548 

 At row:195, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:195, column:31,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:31,the value of plot_cost is         : 33.51105127215403 

 At row:195, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:195, column:32,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:32,the value of plot_cost is         : 33.68831952295577 

 At row:195, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:195, column:33,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:33,the value of plot_cost is         : 33.86639583416004 

 At row:195, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:195, column:34,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:34,the value of plot_cost is         : 34.045280205766815 

 At row:195, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:195, column:35,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:35,the value of plot_cost is         : 34.22497263777612 

 At row:195, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:195, column:36,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:36,the value of plot_cost is         : 34.40547313018792 

 At row:195, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:195, column:37,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:37,the value of plot_cost is         : 34.58678168300224 

 At row:195, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:195, column:38,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:38,the value of plot_cost is         : 34.768898296219085 

 At row:195, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:195, column:39,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:39,the value of plot_cost is         : 34.95182296983844 

 At row:195, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:195, column:40,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:40,the value of plot_cost is         : 35.1355557038603 

 At row:195, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:195, column:41,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:41,the value of plot_cost is         : 35.320096498284684 

 At row:195, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:195, column:42,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:42,the value of plot_cost is         : 35.505445353111575 

 At row:195, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:195, column:43,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:43,the value of plot_cost is         : 35.69160226834099 

 At row:195, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:195, column:44,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:44,the value of plot_cost is         : 35.87856724397292 

 At row:195, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:195, column:45,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:45,the value of plot_cost is         : 36.066340280007374 

 At row:195, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:195, column:46,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:46,the value of plot_cost is         : 36.25492137644433 

 At row:195, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:195, column:47,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:47,the value of plot_cost is         : 36.444310533283804 

 At row:195, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:195, column:48,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:48,the value of plot_cost is         : 36.63450775052579 

 At row:195, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:195, column:49,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:49,the value of plot_cost is         : 36.8255130281703 

 At row:195, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:195, column:50,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:50,the value of plot_cost is         : 37.01732636621731 

 At row:195, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:195, column:51,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:51,the value of plot_cost is         : 37.20994776466684 

 At row:195, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:195, column:52,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:52,the value of plot_cost is         : 37.403377223518895 

 At row:195, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:195, column:53,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:53,the value of plot_cost is         : 37.59761474277346 

 At row:195, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:195, column:54,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:54,the value of plot_cost is         : 37.79266032243053 

 At row:195, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:195, column:55,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:55,the value of plot_cost is         : 37.98851396249014 

 At row:195, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:195, column:56,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:56,the value of plot_cost is         : 38.18517566295225 

 At row:195, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:195, column:57,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:57,the value of plot_cost is         : 38.382645423816875 

 At row:195, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:195, column:58,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:58,the value of plot_cost is         : 38.580923245084016 

 At row:195, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:195, column:59,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:59,the value of plot_cost is         : 38.78000912675367 

 At row:195, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:195, column:60,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:60,the value of plot_cost is         : 38.979903068825834 

 At row:195, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:195, column:61,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:61,the value of plot_cost is         : 39.18060507130051 

 At row:195, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:195, column:62,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:62,the value of plot_cost is         : 39.38211513417772 

 At row:195, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:195, column:63,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:63,the value of plot_cost is         : 39.58443325745743 

 At row:195, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:195, column:64,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:64,the value of plot_cost is         : 39.787559441139656 

 At row:195, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:195, column:65,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:65,the value of plot_cost is         : 39.99149368522441 

 At row:195, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:195, column:66,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:66,the value of plot_cost is         : 40.19623598971168 

 At row:195, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:195, column:67,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:67,the value of plot_cost is         : 40.40178635460144 

 At row:195, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:195, column:68,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:68,the value of plot_cost is         : 40.60814477989374 

 At row:195, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:195, column:69,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:69,the value of plot_cost is         : 40.81531126558855 

 At row:195, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:195, column:70,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:70,the value of plot_cost is         : 41.02328581168587 

 At row:195, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:195, column:71,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:71,the value of plot_cost is         : 41.2320684181857 

 At row:195, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:195, column:72,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:72,the value of plot_cost is         : 41.44165908508805 

 At row:195, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:195, column:73,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:73,the value of plot_cost is         : 41.65205781239291 

 At row:195, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:195, column:74,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:74,the value of plot_cost is         : 41.86326460010028 

 At row:195, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:195, column:75,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:75,the value of plot_cost is         : 42.0752794482102 

 At row:195, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:195, column:76,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:76,the value of plot_cost is         : 42.28810235672261 

 At row:195, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:195, column:77,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:77,the value of plot_cost is         : 42.50173332563753 

 At row:195, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:195, column:78,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:78,the value of plot_cost is         : 42.71617235495497 

 At row:195, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:195, column:79,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:79,the value of plot_cost is         : 42.93141944467493 

 At row:195, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:195, column:80,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:80,the value of plot_cost is         : 43.14747459479741 

 At row:195, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:195, column:81,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:81,the value of plot_cost is         : 43.36433780532238 

 At row:195, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:195, column:82,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:82,the value of plot_cost is         : 43.582009076249896 

 At row:195, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:195, column:83,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:83,the value of plot_cost is         : 43.800488407579905 

 At row:195, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:195, column:84,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:84,the value of plot_cost is         : 44.01977579931243 

 At row:195, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:195, column:85,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:85,the value of plot_cost is         : 44.23987125144749 

 At row:195, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:195, column:86,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:86,the value of plot_cost is         : 44.46077476398505 

 At row:195, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:195, column:87,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:87,the value of plot_cost is         : 44.68248633692513 

 At row:195, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:195, column:88,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:88,the value of plot_cost is         : 44.90500597026773 

 At row:195, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:195, column:89,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:89,the value of plot_cost is         : 45.12833366401282 

 At row:195, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:195, column:90,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:90,the value of plot_cost is         : 45.35246941816044 

 At row:195, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:195, column:91,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:91,the value of plot_cost is         : 45.57741323271058 

 At row:195, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:195, column:92,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:92,the value of plot_cost is         : 45.80316510766324 

 At row:195, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:195, column:93,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:93,the value of plot_cost is         : 46.0297250430184 

 At row:195, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:195, column:94,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:94,the value of plot_cost is         : 46.257093038776084 

 At row:195, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:195, column:95,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:95,the value of plot_cost is         : 46.485269094936285 

 At row:195, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:195, column:96,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:96,the value of plot_cost is         : 46.714253211499006 

 At row:195, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:195, column:97,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:97,the value of plot_cost is         : 46.944045388464225 

 At row:195, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:195, column:98,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:98,the value of plot_cost is         : 47.17464562583197 

 At row:195, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:195, column:99,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:99,the value of plot_cost is         : 47.40605392360222 

 At row:195, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:195, column:100,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:100,the value of plot_cost is         : 47.638270281775 

 At row:195, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:195, column:101,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:101,the value of plot_cost is         : 47.87129470035029 

 At row:195, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:195, column:102,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:102,the value of plot_cost is         : 48.10512717932809 

 At row:195, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:195, column:103,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:103,the value of plot_cost is         : 48.33976771870841 

 At row:195, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:195, column:104,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:104,the value of plot_cost is         : 48.57521631849125 

 At row:195, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:195, column:105,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:105,the value of plot_cost is         : 48.811472978676576 

 At row:195, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:195, column:106,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:106,the value of plot_cost is         : 49.048537699264465 

 At row:195, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:195, column:107,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:107,the value of plot_cost is         : 49.28641048025484 

 At row:195, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:195, column:108,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:108,the value of plot_cost is         : 49.52509132164774 

 At row:195, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:195, column:109,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:109,the value of plot_cost is         : 49.76458022344315 

 At row:195, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:195, column:110,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:110,the value of plot_cost is         : 50.004877185641064 

 At row:195, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:195, column:111,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:111,the value of plot_cost is         : 50.2459822082415 

 At row:195, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:195, column:112,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:112,the value of plot_cost is         : 50.48789529124446 

 At row:195, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:195, column:113,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:113,the value of plot_cost is         : 50.730616434649924 

 At row:195, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:195, column:114,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:114,the value of plot_cost is         : 50.97414563845792 

 At row:195, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:195, column:115,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:115,the value of plot_cost is         : 51.21848290266841 

 At row:195, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:195, column:116,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:116,the value of plot_cost is         : 51.463628227281426 

 At row:195, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:195, column:117,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:117,the value of plot_cost is         : 51.70958161229696 

 At row:195, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:195, column:118,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:118,the value of plot_cost is         : 51.95634305771501 

 At row:195, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:195, column:119,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:119,the value of plot_cost is         : 52.203912563535575 

 At row:195, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:195, column:120,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:120,the value of plot_cost is         : 52.45229012975864 

 At row:195, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:195, column:121,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:121,the value of plot_cost is         : 52.70147575638422 

 At row:195, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:195, column:122,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:122,the value of plot_cost is         : 52.95146944341233 

 At row:195, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:195, column:123,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:123,the value of plot_cost is         : 53.20227119084295 

 At row:195, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:195, column:124,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:124,the value of plot_cost is         : 53.45388099867609 

 At row:195, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:195, column:125,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:125,the value of plot_cost is         : 53.706298866911744 

 At row:195, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:195, column:126,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:126,the value of plot_cost is         : 53.95952479554991 

 At row:195, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:195, column:127,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:127,the value of plot_cost is         : 54.21355878459059 

 At row:195, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:195, column:128,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:128,the value of plot_cost is         : 54.468400834033794 

 At row:195, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:195, column:129,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:129,the value of plot_cost is         : 54.7240509438795 

 At row:195, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:195, column:130,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:130,the value of plot_cost is         : 54.98050911412772 

 At row:195, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:195, column:131,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:131,the value of plot_cost is         : 55.23777534477845 

 At row:195, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:195, column:132,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:132,the value of plot_cost is         : 55.49584963583172 

 At row:195, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:195, column:133,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:133,the value of plot_cost is         : 55.75473198728748 

 At row:195, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:195, column:134,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:134,the value of plot_cost is         : 56.01442239914578 

 At row:195, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:195, column:135,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:135,the value of plot_cost is         : 56.27492087140658 

 At row:195, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:195, column:136,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:136,the value of plot_cost is         : 56.536227404069905 

 At row:195, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:195, column:137,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:137,the value of plot_cost is         : 56.79834199713572 

 At row:195, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:195, column:138,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:138,the value of plot_cost is         : 57.06126465060408 

 At row:195, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:195, column:139,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:139,the value of plot_cost is         : 57.324995364474944 

 At row:195, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:195, column:140,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:140,the value of plot_cost is         : 57.589534138748306 

 At row:195, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:195, column:141,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:141,the value of plot_cost is         : 57.8548809734242 

 At row:195, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:195, column:142,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:142,the value of plot_cost is         : 58.12103586850261 

 At row:195, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:195, column:143,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:143,the value of plot_cost is         : 58.38799882398352 

 At row:195, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:195, column:144,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:144,the value of plot_cost is         : 58.65576983986697 

 At row:195, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:195, column:145,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:145,the value of plot_cost is         : 58.92434891615293 

 At row:195, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:195, column:146,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:146,the value of plot_cost is         : 59.19373605284139 

 At row:195, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:195, column:147,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:147,the value of plot_cost is         : 59.46393124993237 

 At row:195, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:195, column:148,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:148,the value of plot_cost is         : 59.734934507425876 

 At row:195, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:195, column:149,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:149,the value of plot_cost is         : 60.006745825321886 

 At row:195, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:195, column:150,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:150,the value of plot_cost is         : 60.279365203620415 

 At row:195, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:195, column:151,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:151,the value of plot_cost is         : 60.55279264232146 

 At row:195, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:195, column:152,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:152,the value of plot_cost is         : 60.82702814142501 

 At row:195, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:195, column:153,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:153,the value of plot_cost is         : 61.10207170093108 

 At row:195, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:195, column:154,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:154,the value of plot_cost is         : 61.37792332083968 

 At row:195, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:195, column:155,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:155,the value of plot_cost is         : 61.65458300115078 

 At row:195, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:195, column:156,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:156,the value of plot_cost is         : 61.9320507418644 

 At row:195, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:195, column:157,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:157,the value of plot_cost is         : 62.21032654298053 

 At row:195, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:195, column:158,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:158,the value of plot_cost is         : 62.48941040449918 

 At row:195, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:195, column:159,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:159,the value of plot_cost is         : 62.76930232642034 

 At row:195, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:195, column:160,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:160,the value of plot_cost is         : 63.05000230874402 

 At row:195, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:195, column:161,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:161,the value of plot_cost is         : 63.33151035147021 

 At row:195, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:195, column:162,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:162,the value of plot_cost is         : 63.61382645459892 

 At row:195, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:195, column:163,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:163,the value of plot_cost is         : 63.89695061813014 

 At row:195, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:195, column:164,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:164,the value of plot_cost is         : 64.18088284206388 

 At row:195, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:195, column:165,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:165,the value of plot_cost is         : 64.46562312640015 

 At row:195, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:195, column:166,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:166,the value of plot_cost is         : 64.7511714711389 

 At row:195, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:195, column:167,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:167,the value of plot_cost is         : 65.03752787628018 

 At row:195, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:195, column:168,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:168,the value of plot_cost is         : 65.32469234182399 

 At row:195, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:195, column:169,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:169,the value of plot_cost is         : 65.6126648677703 

 At row:195, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:195, column:170,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:170,the value of plot_cost is         : 65.90144545411913 

 At row:195, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:195, column:171,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:171,the value of plot_cost is         : 66.19103410087047 

 At row:195, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:195, column:172,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:172,the value of plot_cost is         : 66.48143080802434 

 At row:195, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:195, column:173,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:173,the value of plot_cost is         : 66.77263557558071 

 At row:195, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:195, column:174,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:174,the value of plot_cost is         : 67.06464840353959 

 At row:195, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:195, column:175,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:175,the value of plot_cost is         : 67.35746929190103 

 At row:195, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:195, column:176,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:176,the value of plot_cost is         : 67.65109824066492 

 At row:195, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:195, column:177,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:177,the value of plot_cost is         : 67.94553524983137 

 At row:195, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:195, column:178,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:178,the value of plot_cost is         : 68.24078031940032 

 At row:195, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:195, column:179,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:179,the value of plot_cost is         : 68.53683344937178 

 At row:195, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:195, column:180,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:180,the value of plot_cost is         : 68.83369463974577 

 At row:195, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:195, column:181,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:181,the value of plot_cost is         : 69.13136389052225 

 At row:195, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:195, column:182,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:182,the value of plot_cost is         : 69.42984120170127 

 At row:195, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:195, column:183,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:183,the value of plot_cost is         : 69.72912657328278 

 At row:195, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:195, column:184,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:184,the value of plot_cost is         : 70.02922000526684 

 At row:195, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:195, column:185,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:185,the value of plot_cost is         : 70.33012149765341 

 At row:195, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:195, column:186,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:186,the value of plot_cost is         : 70.63183105044246 

 At row:195, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:195, column:187,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:187,the value of plot_cost is         : 70.93434866363404 

 At row:195, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:195, column:188,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:188,the value of plot_cost is         : 71.23767433722816 

 At row:195, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:195, column:189,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:189,the value of plot_cost is         : 71.54180807122476 

 At row:195, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:195, column:190,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:190,the value of plot_cost is         : 71.84674986562389 

 At row:195, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:195, column:191,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:191,the value of plot_cost is         : 72.15249972042555 

 At row:195, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:195, column:192,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:192,the value of plot_cost is         : 72.45905763562969 

 At row:195, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:195, column:193,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:193,the value of plot_cost is         : 72.76642361123636 

 At row:195, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:195, column:194,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:194,the value of plot_cost is         : 73.07459764724557 

 At row:195, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:195, column:195,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:195,the value of plot_cost is         : 73.3835797436573 

 At row:195, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:195, column:196,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:196,the value of plot_cost is         : 73.69336990047151 

 At row:195, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:195, column:197,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:197,the value of plot_cost is         : 74.00396811768825 

 At row:195, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:195, column:198,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:198,the value of plot_cost is         : 74.31537439530749 

 At row:195, column:199,the value of plot_t0 is           : 3.0
 At row:195, column:199,the value of plot_t1 is           : 2.919597989949749
 At row:195, column:199,the value of plot_cost is         : 74.62758873332926 

 At row:196, column:0,the value of plot_t0 is           : -1.0
 At row:196, column:0,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:0,the value of plot_cost is         : 29.238883253308906 

 At row:196, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:196, column:1,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:1,the value of plot_cost is         : 29.39377977468102 

 At row:196, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:196, column:2,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:2,the value of plot_cost is         : 29.54948435645565 

 At row:196, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:196, column:3,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:3,the value of plot_cost is         : 29.7059969986328 

 At row:196, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:196, column:4,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:4,the value of plot_cost is         : 29.863317701212456 

 At row:196, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:196, column:5,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:5,the value of plot_cost is         : 30.021446464194625 

 At row:196, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:196, column:6,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:6,the value of plot_cost is         : 30.180383287579325 

 At row:196, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:196, column:7,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:7,the value of plot_cost is         : 30.34012817136653 

 At row:196, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:196, column:8,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:8,the value of plot_cost is         : 30.500681115556254 

 At row:196, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:196, column:9,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:9,the value of plot_cost is         : 30.662042120148488 

 At row:196, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:196, column:10,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:10,the value of plot_cost is         : 30.824211185143234 

 At row:196, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:196, column:11,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:11,the value of plot_cost is         : 30.9871883105405 

 At row:196, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:196, column:12,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:12,the value of plot_cost is         : 31.15097349634028 

 At row:196, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:196, column:13,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:13,the value of plot_cost is         : 31.31556674254258 

 At row:196, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:196, column:14,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:14,the value of plot_cost is         : 31.48096804914739 

 At row:196, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:196, column:15,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:15,the value of plot_cost is         : 31.64717741615472 

 At row:196, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:196, column:16,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:16,the value of plot_cost is         : 31.81419484356457 

 At row:196, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:196, column:17,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:17,the value of plot_cost is         : 31.98202033137692 

 At row:196, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:196, column:18,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:18,the value of plot_cost is         : 32.1506538795918 

 At row:196, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:196, column:19,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:19,the value of plot_cost is         : 32.320095488209176 

 At row:196, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:196, column:20,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:20,the value of plot_cost is         : 32.49034515722908 

 At row:196, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:196, column:21,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:21,the value of plot_cost is         : 32.661402886651494 

 At row:196, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:196, column:22,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:22,the value of plot_cost is         : 32.83326867647642 

 At row:196, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:196, column:23,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:23,the value of plot_cost is         : 33.005942526703876 

 At row:196, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:196, column:24,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:24,the value of plot_cost is         : 33.179424437333836 

 At row:196, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:196, column:25,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:25,the value of plot_cost is         : 33.35371440836632 

 At row:196, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:196, column:26,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:26,the value of plot_cost is         : 33.52881243980132 

 At row:196, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:196, column:27,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:27,the value of plot_cost is         : 33.704718531638825 

 At row:196, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:196, column:28,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:28,the value of plot_cost is         : 33.88143268387884 

 At row:196, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:196, column:29,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:29,the value of plot_cost is         : 34.058954896521385 

 At row:196, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:196, column:30,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:30,the value of plot_cost is         : 34.237285169566434 

 At row:196, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:196, column:31,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:31,the value of plot_cost is         : 34.416423503013995 

 At row:196, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:196, column:32,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:32,the value of plot_cost is         : 34.596369896864076 

 At row:196, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:196, column:33,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:33,the value of plot_cost is         : 34.777124351116676 

 At row:196, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:196, column:34,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:34,the value of plot_cost is         : 34.95868686577179 

 At row:196, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:196, column:35,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:35,the value of plot_cost is         : 35.14105744082943 

 At row:196, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:196, column:36,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:36,the value of plot_cost is         : 35.324236076289566 

 At row:196, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:196, column:37,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:37,the value of plot_cost is         : 35.50822277215223 

 At row:196, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:196, column:38,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:38,the value of plot_cost is         : 35.69301752841741 

 At row:196, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:196, column:39,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:39,the value of plot_cost is         : 35.87862034508509 

 At row:196, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:196, column:40,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:40,the value of plot_cost is         : 36.06503122215529 

 At row:196, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:196, column:41,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:41,the value of plot_cost is         : 36.252250159628005 

 At row:196, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:196, column:42,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:42,the value of plot_cost is         : 36.44027715750323 

 At row:196, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:196, column:43,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:43,the value of plot_cost is         : 36.62911221578099 

 At row:196, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:196, column:44,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:44,the value of plot_cost is         : 36.81875533446125 

 At row:196, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:196, column:45,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:45,the value of plot_cost is         : 37.009206513544044 

 At row:196, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:196, column:46,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:46,the value of plot_cost is         : 37.200465753029334 

 At row:196, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:196, column:47,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:47,the value of plot_cost is         : 37.392533052917145 

 At row:196, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:196, column:48,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:48,the value of plot_cost is         : 37.585408413207475 

 At row:196, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:196, column:49,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:49,the value of plot_cost is         : 37.7790918339003 

 At row:196, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:196, column:50,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:50,the value of plot_cost is         : 37.97358331499566 

 At row:196, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:196, column:51,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:51,the value of plot_cost is         : 38.168882856493525 

 At row:196, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:196, column:52,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:52,the value of plot_cost is         : 38.36499045839391 

 At row:196, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:196, column:53,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:53,the value of plot_cost is         : 38.56190612069681 

 At row:196, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:196, column:54,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:54,the value of plot_cost is         : 38.75962984340222 

 At row:196, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:196, column:55,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:55,the value of plot_cost is         : 38.95816162651017 

 At row:196, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:196, column:56,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:56,the value of plot_cost is         : 39.15750147002061 

 At row:196, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:196, column:57,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:57,the value of plot_cost is         : 39.35764937393357 

 At row:196, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:196, column:58,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:58,the value of plot_cost is         : 39.558605338249045 

 At row:196, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:196, column:59,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:59,the value of plot_cost is         : 39.76036936296703 

 At row:196, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:196, column:60,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:60,the value of plot_cost is         : 39.962941448087534 

 At row:196, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:196, column:61,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:61,the value of plot_cost is         : 40.16632159361055 

 At row:196, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:196, column:62,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:62,the value of plot_cost is         : 40.370509799536094 

 At row:196, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:196, column:63,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:63,the value of plot_cost is         : 40.57550606586415 

 At row:196, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:196, column:64,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:64,the value of plot_cost is         : 40.7813103925947 

 At row:196, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:196, column:65,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:65,the value of plot_cost is         : 40.9879227797278 

 At row:196, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:196, column:66,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:66,the value of plot_cost is         : 41.19534322726339 

 At row:196, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:196, column:67,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:67,the value of plot_cost is         : 41.403571735201496 

 At row:196, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:196, column:68,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:68,the value of plot_cost is         : 41.61260830354213 

 At row:196, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:196, column:69,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:69,the value of plot_cost is         : 41.82245293228527 

 At row:196, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:196, column:70,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:70,the value of plot_cost is         : 42.03310562143093 

 At row:196, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:196, column:71,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:71,the value of plot_cost is         : 42.2445663709791 

 At row:196, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:196, column:72,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:72,the value of plot_cost is         : 42.45683518092978 

 At row:196, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:196, column:73,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:73,the value of plot_cost is         : 42.66991205128298 

 At row:196, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:196, column:74,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:74,the value of plot_cost is         : 42.883796982038696 

 At row:196, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:196, column:75,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:75,the value of plot_cost is         : 43.09848997319694 

 At row:196, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:196, column:76,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:76,the value of plot_cost is         : 43.313991024757684 

 At row:196, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:196, column:77,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:77,the value of plot_cost is         : 43.530300136720946 

 At row:196, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:196, column:78,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:78,the value of plot_cost is         : 43.74741730908672 

 At row:196, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:196, column:79,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:79,the value of plot_cost is         : 43.965342541855016 

 At row:196, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:196, column:80,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:80,the value of plot_cost is         : 44.184075835025816 

 At row:196, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:196, column:81,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:81,the value of plot_cost is         : 44.40361718859914 

 At row:196, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:196, column:82,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:82,the value of plot_cost is         : 44.623966602574974 

 At row:196, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:196, column:83,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:83,the value of plot_cost is         : 44.845124076953326 

 At row:196, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:196, column:84,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:84,the value of plot_cost is         : 45.06708961173419 

 At row:196, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:196, column:85,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:85,the value of plot_cost is         : 45.289863206917595 

 At row:196, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:196, column:86,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:86,the value of plot_cost is         : 45.51344486250349 

 At row:196, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:196, column:87,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:87,the value of plot_cost is         : 45.737834578491885 

 At row:196, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:196, column:88,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:88,the value of plot_cost is         : 45.96303235488283 

 At row:196, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:196, column:89,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:89,the value of plot_cost is         : 46.18903819167626 

 At row:196, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:196, column:90,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:90,the value of plot_cost is         : 46.41585208887222 

 At row:196, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:196, column:91,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:91,the value of plot_cost is         : 46.64347404647069 

 At row:196, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:196, column:92,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:92,the value of plot_cost is         : 46.87190406447168 

 At row:196, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:196, column:93,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:93,the value of plot_cost is         : 47.10114214287518 

 At row:196, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:196, column:94,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:94,the value of plot_cost is         : 47.3311882816812 

 At row:196, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:196, column:95,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:95,the value of plot_cost is         : 47.56204248088974 

 At row:196, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:196, column:96,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:96,the value of plot_cost is         : 47.793704740500786 

 At row:196, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:196, column:97,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:97,the value of plot_cost is         : 48.02617506051435 

 At row:196, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:196, column:98,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:98,the value of plot_cost is         : 48.259453440930436 

 At row:196, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:196, column:99,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:99,the value of plot_cost is         : 48.49353988174903 

 At row:196, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:196, column:100,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:100,the value of plot_cost is         : 48.728434382970136 

 At row:196, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:196, column:101,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:101,the value of plot_cost is         : 48.96413694459376 

 At row:196, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:196, column:102,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:102,the value of plot_cost is         : 49.20064756661989 

 At row:196, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:196, column:103,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:103,the value of plot_cost is         : 49.43796624904855 

 At row:196, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:196, column:104,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:104,the value of plot_cost is         : 49.67609299187973 

 At row:196, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:196, column:105,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:105,the value of plot_cost is         : 49.9150277951134 

 At row:196, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:196, column:106,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:106,the value of plot_cost is         : 50.15477065874961 

 At row:196, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:196, column:107,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:107,the value of plot_cost is         : 50.39532158278832 

 At row:196, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:196, column:108,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:108,the value of plot_cost is         : 50.636680567229554 

 At row:196, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:196, column:109,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:109,the value of plot_cost is         : 50.8788476120733 

 At row:196, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:196, column:110,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:110,the value of plot_cost is         : 51.12182271731956 

 At row:196, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:196, column:111,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:111,the value of plot_cost is         : 51.36560588296832 

 At row:196, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:196, column:112,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:112,the value of plot_cost is         : 51.61019710901962 

 At row:196, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:196, column:113,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:113,the value of plot_cost is         : 51.85559639547343 

 At row:196, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:196, column:114,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:114,the value of plot_cost is         : 52.10180374232975 

 At row:196, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:196, column:115,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:115,the value of plot_cost is         : 52.34881914958859 

 At row:196, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:196, column:116,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:116,the value of plot_cost is         : 52.59664261724994 

 At row:196, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:196, column:117,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:117,the value of plot_cost is         : 52.8452741453138 

 At row:196, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:196, column:118,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:118,the value of plot_cost is         : 53.09471373378018 

 At row:196, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:196, column:119,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:119,the value of plot_cost is         : 53.344961382649075 

 At row:196, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:196, column:120,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:120,the value of plot_cost is         : 53.596017091920494 

 At row:196, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:196, column:121,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:121,the value of plot_cost is         : 53.847880861594405 

 At row:196, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:196, column:122,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:122,the value of plot_cost is         : 54.100552691670856 

 At row:196, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:196, column:123,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:123,the value of plot_cost is         : 54.3540325821498 

 At row:196, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:196, column:124,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:124,the value of plot_cost is         : 54.60832053303128 

 At row:196, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:196, column:125,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:125,the value of plot_cost is         : 54.86341654431528 

 At row:196, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:196, column:126,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:126,the value of plot_cost is         : 55.11932061600177 

 At row:196, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:196, column:127,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:127,the value of plot_cost is         : 55.37603274809079 

 At row:196, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:196, column:128,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:128,the value of plot_cost is         : 55.63355294058233 

 At row:196, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:196, column:129,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:129,the value of plot_cost is         : 55.891881193476365 

 At row:196, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:196, column:130,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:130,the value of plot_cost is         : 56.151017506772924 

 At row:196, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:196, column:131,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:131,the value of plot_cost is         : 56.410961880471994 

 At row:196, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:196, column:132,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:132,the value of plot_cost is         : 56.67171431457359 

 At row:196, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:196, column:133,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:133,the value of plot_cost is         : 56.933274809077695 

 At row:196, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:196, column:134,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:134,the value of plot_cost is         : 57.195643363984324 

 At row:196, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:196, column:135,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:135,the value of plot_cost is         : 57.45881997929346 

 At row:196, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:196, column:136,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:136,the value of plot_cost is         : 57.72280465500512 

 At row:196, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:196, column:137,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:137,the value of plot_cost is         : 57.98759739111928 

 At row:196, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:196, column:138,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:138,the value of plot_cost is         : 58.25319818763596 

 At row:196, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:196, column:139,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:139,the value of plot_cost is         : 58.51960704455516 

 At row:196, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:196, column:140,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:140,the value of plot_cost is         : 58.78682396187687 

 At row:196, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:196, column:141,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:141,the value of plot_cost is         : 59.054848939601094 

 At row:196, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:196, column:142,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:142,the value of plot_cost is         : 59.323681977727844 

 At row:196, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:196, column:143,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:143,the value of plot_cost is         : 59.59332307625709 

 At row:196, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:196, column:144,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:144,the value of plot_cost is         : 59.86377223518887 

 At row:196, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:196, column:145,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:145,the value of plot_cost is         : 60.13502945452317 

 At row:196, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:196, column:146,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:146,the value of plot_cost is         : 60.40709473425998 

 At row:196, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:196, column:147,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:147,the value of plot_cost is         : 60.67996807439928 

 At row:196, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:196, column:148,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:148,the value of plot_cost is         : 60.95364947494113 

 At row:196, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:196, column:149,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:149,the value of plot_cost is         : 61.22813893588547 

 At row:196, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:196, column:150,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:150,the value of plot_cost is         : 61.503436457232326 

 At row:196, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:196, column:151,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:151,the value of plot_cost is         : 61.77954203898171 

 At row:196, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:196, column:152,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:152,the value of plot_cost is         : 62.0564556811336 

 At row:196, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:196, column:153,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:153,the value of plot_cost is         : 62.334177383687994 

 At row:196, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:196, column:154,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:154,the value of plot_cost is         : 62.612707146644944 

 At row:196, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:196, column:155,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:155,the value of plot_cost is         : 62.89204497000438 

 At row:196, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:196, column:156,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:156,the value of plot_cost is         : 63.17219085376633 

 At row:196, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:196, column:157,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:157,the value of plot_cost is         : 63.45314479793079 

 At row:196, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:196, column:158,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:158,the value of plot_cost is         : 63.73490680249779 

 At row:196, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:196, column:159,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:159,the value of plot_cost is         : 64.01747686746728 

 At row:196, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:196, column:160,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:160,the value of plot_cost is         : 64.30085499283929 

 At row:196, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:196, column:161,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:161,the value of plot_cost is         : 64.58504117861382 

 At row:196, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:196, column:162,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:162,the value of plot_cost is         : 64.87003542479086 

 At row:196, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:196, column:163,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:163,the value of plot_cost is         : 65.15583773137043 

 At row:196, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:196, column:164,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:164,the value of plot_cost is         : 65.4424480983525 

 At row:196, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:196, column:165,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:165,the value of plot_cost is         : 65.72986652573711 

 At row:196, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:196, column:166,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:166,the value of plot_cost is         : 66.01809301352421 

 At row:196, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:196, column:167,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:167,the value of plot_cost is         : 66.30712756171381 

 At row:196, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:196, column:168,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:168,the value of plot_cost is         : 66.59697017030595 

 At row:196, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:196, column:169,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:169,the value of plot_cost is         : 66.8876208393006 

 At row:196, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:196, column:170,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:170,the value of plot_cost is         : 67.17907956869776 

 At row:196, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:196, column:171,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:171,the value of plot_cost is         : 67.47134635849744 

 At row:196, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:196, column:172,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:172,the value of plot_cost is         : 67.76442120869963 

 At row:196, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:196, column:173,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:173,the value of plot_cost is         : 68.05830411930434 

 At row:196, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:196, column:174,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:174,the value of plot_cost is         : 68.35299509031158 

 At row:196, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:196, column:175,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:175,the value of plot_cost is         : 68.64849412172133 

 At row:196, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:196, column:176,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:176,the value of plot_cost is         : 68.94480121353358 

 At row:196, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:196, column:177,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:177,the value of plot_cost is         : 69.24191636574835 

 At row:196, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:196, column:178,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:178,the value of plot_cost is         : 69.53983957836563 

 At row:196, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:196, column:179,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:179,the value of plot_cost is         : 69.83857085138544 

 At row:196, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:196, column:180,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:180,the value of plot_cost is         : 70.13811018480774 

 At row:196, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:196, column:181,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:181,the value of plot_cost is         : 70.43845757863258 

 At row:196, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:196, column:182,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:182,the value of plot_cost is         : 70.73961303285994 

 At row:196, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:196, column:183,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:183,the value of plot_cost is         : 71.04157654748978 

 At row:196, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:196, column:184,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:184,the value of plot_cost is         : 71.34434812252216 

 At row:196, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:196, column:185,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:185,the value of plot_cost is         : 71.64792775795708 

 At row:196, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:196, column:186,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:186,the value of plot_cost is         : 71.95231545379447 

 At row:196, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:196, column:187,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:187,the value of plot_cost is         : 72.25751121003438 

 At row:196, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:196, column:188,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:188,the value of plot_cost is         : 72.56351502667682 

 At row:196, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:196, column:189,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:189,the value of plot_cost is         : 72.87032690372178 

 At row:196, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:196, column:190,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:190,the value of plot_cost is         : 73.17794684116926 

 At row:196, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:196, column:191,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:191,the value of plot_cost is         : 73.48637483901922 

 At row:196, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:196, column:192,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:192,the value of plot_cost is         : 73.79561089727171 

 At row:196, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:196, column:193,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:193,the value of plot_cost is         : 74.10565501592671 

 At row:196, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:196, column:194,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:194,the value of plot_cost is         : 74.41650719498426 

 At row:196, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:196, column:195,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:195,the value of plot_cost is         : 74.72816743444433 

 At row:196, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:196, column:196,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:196,the value of plot_cost is         : 75.04063573430686 

 At row:196, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:196, column:197,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:197,the value of plot_cost is         : 75.35391209457194 

 At row:196, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:196, column:198,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:198,the value of plot_cost is         : 75.66799651523952 

 At row:196, column:199,the value of plot_t0 is           : 3.0
 At row:196, column:199,the value of plot_t1 is           : 2.9396984924623117
 At row:196, column:199,the value of plot_cost is         : 75.98288899630963 

 At row:197, column:0,the value of plot_t0 is           : -1.0
 At row:197, column:0,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:0,the value of plot_cost is         : 30.07381570450964 

 At row:197, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:197, column:1,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:1,the value of plot_cost is         : 30.231390368930086 

 At row:197, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:197, column:2,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:2,the value of plot_cost is         : 30.38977309375305 

 At row:197, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:197, column:3,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:3,the value of plot_cost is         : 30.54896387897854 

 At row:197, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:197, column:4,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:4,the value of plot_cost is         : 30.708962724606533 

 At row:197, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:197, column:5,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:5,the value of plot_cost is         : 30.86976963063705 

 At row:197, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:197, column:6,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:6,the value of plot_cost is         : 31.031384597070076 

 At row:197, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:197, column:7,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:7,the value of plot_cost is         : 31.193807623905617 

 At row:197, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:197, column:8,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:8,the value of plot_cost is         : 31.357038711143677 

 At row:197, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:197, column:9,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:9,the value of plot_cost is         : 31.521077858784246 

 At row:197, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:197, column:10,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:10,the value of plot_cost is         : 31.68592506682733 

 At row:197, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:197, column:11,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:11,the value of plot_cost is         : 31.85158033527293 

 At row:197, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:197, column:12,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:12,the value of plot_cost is         : 32.018043664121045 

 At row:197, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:197, column:13,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:13,the value of plot_cost is         : 32.18531505337168 

 At row:197, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:197, column:14,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:14,the value of plot_cost is         : 32.35339450302482 

 At row:197, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:197, column:15,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:15,the value of plot_cost is         : 32.522282013080485 

 At row:197, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:197, column:16,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:16,the value of plot_cost is         : 32.69197758353868 

 At row:197, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:197, column:17,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:17,the value of plot_cost is         : 32.86248121439937 

 At row:197, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:197, column:18,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:18,the value of plot_cost is         : 33.03379290566257 

 At row:197, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:197, column:19,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:19,the value of plot_cost is         : 33.20591265732829 

 At row:197, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:197, column:20,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:20,the value of plot_cost is         : 33.37884046939653 

 At row:197, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:197, column:21,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:21,the value of plot_cost is         : 33.55257634186728 

 At row:197, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:197, column:22,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:22,the value of plot_cost is         : 33.72712027474054 

 At row:197, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:197, column:23,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:23,the value of plot_cost is         : 33.90247226801633 

 At row:197, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:197, column:24,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:24,the value of plot_cost is         : 34.07863232169463 

 At row:197, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:197, column:25,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:25,the value of plot_cost is         : 34.25560043577545 

 At row:197, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:197, column:26,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:26,the value of plot_cost is         : 34.43337661025878 

 At row:197, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:197, column:27,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:27,the value of plot_cost is         : 34.61196084514462 

 At row:197, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:197, column:28,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:28,the value of plot_cost is         : 34.79135314043298 

 At row:197, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:197, column:29,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:29,the value of plot_cost is         : 34.97155349612385 

 At row:197, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:197, column:30,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:30,the value of plot_cost is         : 35.15256191221724 

 At row:197, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:197, column:31,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:31,the value of plot_cost is         : 35.334378388713134 

 At row:197, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:197, column:32,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:32,the value of plot_cost is         : 35.51700292561156 

 At row:197, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:197, column:33,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:33,the value of plot_cost is         : 35.70043552291249 

 At row:197, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:197, column:34,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:34,the value of plot_cost is         : 35.88467618061594 

 At row:197, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:197, column:35,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:35,the value of plot_cost is         : 36.06972489872192 

 At row:197, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:197, column:36,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:36,the value of plot_cost is         : 36.255581677230396 

 At row:197, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:197, column:37,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:37,the value of plot_cost is         : 36.44224651614139 

 At row:197, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:197, column:38,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:38,the value of plot_cost is         : 36.62971941545489 

 At row:197, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:197, column:39,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:39,the value of plot_cost is         : 36.81800037517092 

 At row:197, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:197, column:40,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:40,the value of plot_cost is         : 37.007089395289455 

 At row:197, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:197, column:41,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:41,the value of plot_cost is         : 37.196986475810505 

 At row:197, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:197, column:42,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:42,the value of plot_cost is         : 37.387691616734074 

 At row:197, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:197, column:43,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:43,the value of plot_cost is         : 37.57920481806016 

 At row:197, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:197, column:44,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:44,the value of plot_cost is         : 37.771526079788764 

 At row:197, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:197, column:45,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:45,the value of plot_cost is         : 37.964655401919885 

 At row:197, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:197, column:46,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:46,the value of plot_cost is         : 38.15859278445352 

 At row:197, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:197, column:47,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:47,the value of plot_cost is         : 38.35333822738966 

 At row:197, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:197, column:48,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:48,the value of plot_cost is         : 38.54889173072832 

 At row:197, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:197, column:49,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:49,the value of plot_cost is         : 38.7452532944695 

 At row:197, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:197, column:50,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:50,the value of plot_cost is         : 38.942422918613175 

 At row:197, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:197, column:51,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:51,the value of plot_cost is         : 39.140400603159385 

 At row:197, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:197, column:52,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:52,the value of plot_cost is         : 39.33918634810811 

 At row:197, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:197, column:53,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:53,the value of plot_cost is         : 39.538780153459335 

 At row:197, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:197, column:54,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:54,the value of plot_cost is         : 39.73918201921308 

 At row:197, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:197, column:55,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:55,the value of plot_cost is         : 39.94039194536937 

 At row:197, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:197, column:56,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:56,the value of plot_cost is         : 40.14240993192814 

 At row:197, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:197, column:57,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:57,the value of plot_cost is         : 40.34523597888945 

 At row:197, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:197, column:58,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:58,the value of plot_cost is         : 40.54887008625326 

 At row:197, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:197, column:59,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:59,the value of plot_cost is         : 40.75331225401958 

 At row:197, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:197, column:60,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:60,the value of plot_cost is         : 40.95856248218842 

 At row:197, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:197, column:61,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:61,the value of plot_cost is         : 41.16462077075977 

 At row:197, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:197, column:62,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:62,the value of plot_cost is         : 41.37148711973364 

 At row:197, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:197, column:63,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:63,the value of plot_cost is         : 41.579161529110024 

 At row:197, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:197, column:64,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:64,the value of plot_cost is         : 41.78764399888892 

 At row:197, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:197, column:65,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:65,the value of plot_cost is         : 41.99693452907036 

 At row:197, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:197, column:66,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:66,the value of plot_cost is         : 42.207033119654284 

 At row:197, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:197, column:67,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:67,the value of plot_cost is         : 42.417939770640736 

 At row:197, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:197, column:68,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:68,the value of plot_cost is         : 42.6296544820297 

 At row:197, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:197, column:69,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:69,the value of plot_cost is         : 42.84217725382117 

 At row:197, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:197, column:70,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:70,the value of plot_cost is         : 43.055508086015166 

 At row:197, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:197, column:71,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:71,the value of plot_cost is         : 43.26964697861166 

 At row:197, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:197, column:72,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:72,the value of plot_cost is         : 43.48459393161068 

 At row:197, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:197, column:73,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:73,the value of plot_cost is         : 43.700348945012216 

 At row:197, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:197, column:74,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:74,the value of plot_cost is         : 43.91691201881627 

 At row:197, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:197, column:75,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:75,the value of plot_cost is         : 44.13428315302286 

 At row:197, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:197, column:76,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:76,the value of plot_cost is         : 44.352462347631935 

 At row:197, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:197, column:77,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:77,the value of plot_cost is         : 44.57144960264355 

 At row:197, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:197, column:78,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:78,the value of plot_cost is         : 44.79124491805765 

 At row:197, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:197, column:79,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:79,the value of plot_cost is         : 45.01184829387427 

 At row:197, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:197, column:80,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:80,the value of plot_cost is         : 45.233259730093415 

 At row:197, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:197, column:81,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:81,the value of plot_cost is         : 45.45547922671506 

 At row:197, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:197, column:82,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:82,the value of plot_cost is         : 45.67850678373924 

 At row:197, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:197, column:83,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:83,the value of plot_cost is         : 45.90234240116593 

 At row:197, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:197, column:84,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:84,the value of plot_cost is         : 46.12698607899513 

 At row:197, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:197, column:85,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:85,the value of plot_cost is         : 46.35243781722686 

 At row:197, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:197, column:86,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:86,the value of plot_cost is         : 46.57869761586109 

 At row:197, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:197, column:87,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:87,the value of plot_cost is         : 46.805765474897846 

 At row:197, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:197, column:88,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:88,the value of plot_cost is         : 47.03364139433711 

 At row:197, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:197, column:89,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:89,the value of plot_cost is         : 47.262325374178886 

 At row:197, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:197, column:90,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:90,the value of plot_cost is         : 47.49181741442318 

 At row:197, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:197, column:91,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:91,the value of plot_cost is         : 47.722117515069975 

 At row:197, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:197, column:92,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:92,the value of plot_cost is         : 47.95322567611929 

 At row:197, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:197, column:93,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:93,the value of plot_cost is         : 48.185141897571135 

 At row:197, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:197, column:94,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:94,the value of plot_cost is         : 48.41786617942549 

 At row:197, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:197, column:95,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:95,the value of plot_cost is         : 48.65139852168238 

 At row:197, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:197, column:96,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:96,the value of plot_cost is         : 48.88573892434176 

 At row:197, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:197, column:97,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:97,the value of plot_cost is         : 49.120887387403656 

 At row:197, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:197, column:98,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:98,the value of plot_cost is         : 49.35684391086808 

 At row:197, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:197, column:99,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:99,the value of plot_cost is         : 49.59360849473501 

 At row:197, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:197, column:100,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:100,the value of plot_cost is         : 49.831181139004435 

 At row:197, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:197, column:101,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:101,the value of plot_cost is         : 50.06956184367639 

 At row:197, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:197, column:102,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:102,the value of plot_cost is         : 50.30875060875087 

 At row:197, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:197, column:103,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:103,the value of plot_cost is         : 50.54874743422786 

 At row:197, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:197, column:104,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:104,the value of plot_cost is         : 50.78955232010738 

 At row:197, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:197, column:105,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:105,the value of plot_cost is         : 51.0311652663894 

 At row:197, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:197, column:106,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:106,the value of plot_cost is         : 51.27358627307394 

 At row:197, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:197, column:107,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:107,the value of plot_cost is         : 51.51681534016099 

 At row:197, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:197, column:108,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:108,the value of plot_cost is         : 51.76085246765055 

 At row:197, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:197, column:109,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:109,the value of plot_cost is         : 52.00569765554263 

 At row:197, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:197, column:110,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:110,the value of plot_cost is         : 52.25135090383722 

 At row:197, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:197, column:111,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:111,the value of plot_cost is         : 52.49781221253433 

 At row:197, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:197, column:112,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:112,the value of plot_cost is         : 52.745081581633954 

 At row:197, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:197, column:113,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:113,the value of plot_cost is         : 52.99315901113609 

 At row:197, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:197, column:114,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:114,the value of plot_cost is         : 53.24204450104074 

 At row:197, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:197, column:115,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:115,the value of plot_cost is         : 53.49173805134794 

 At row:197, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:197, column:116,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:116,the value of plot_cost is         : 53.74223966205762 

 At row:197, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:197, column:117,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:117,the value of plot_cost is         : 53.99354933316983 

 At row:197, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:197, column:118,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:118,the value of plot_cost is         : 54.24566706468454 

 At row:197, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:197, column:119,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:119,the value of plot_cost is         : 54.49859285660177 

 At row:197, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:197, column:120,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:120,the value of plot_cost is         : 54.75232670892151 

 At row:197, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:197, column:121,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:121,the value of plot_cost is         : 55.006868621643754 

 At row:197, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:197, column:122,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:122,the value of plot_cost is         : 55.262218594768534 

 At row:197, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:197, column:123,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:123,the value of plot_cost is         : 55.51837662829583 

 At row:197, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:197, column:124,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:124,the value of plot_cost is         : 55.77534272222565 

 At row:197, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:197, column:125,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:125,the value of plot_cost is         : 56.03311687655798 

 At row:197, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:197, column:126,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:126,the value of plot_cost is         : 56.29169909129281 

 At row:197, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:197, column:127,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:127,the value of plot_cost is         : 56.55108936643016 

 At row:197, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:197, column:128,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:128,the value of plot_cost is         : 56.81128770197003 

 At row:197, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:197, column:129,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:129,the value of plot_cost is         : 57.07229409791241 

 At row:197, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:197, column:130,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:130,the value of plot_cost is         : 57.334108554257305 

 At row:197, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:197, column:131,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:131,the value of plot_cost is         : 57.59673107100471 

 At row:197, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:197, column:132,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:132,the value of plot_cost is         : 57.860161648154644 

 At row:197, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:197, column:133,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:133,the value of plot_cost is         : 58.12440028570708 

 At row:197, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:197, column:134,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:134,the value of plot_cost is         : 58.38944698366203 

 At row:197, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:197, column:135,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:135,the value of plot_cost is         : 58.65530174201953 

 At row:197, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:197, column:136,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:136,the value of plot_cost is         : 58.92196456077951 

 At row:197, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:197, column:137,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:137,the value of plot_cost is         : 59.18943543994203 

 At row:197, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:197, column:138,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:138,the value of plot_cost is         : 59.45771437950704 

 At row:197, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:197, column:139,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:139,the value of plot_cost is         : 59.72680137947456 

 At row:197, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:197, column:140,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:140,the value of plot_cost is         : 59.996696439844605 

 At row:197, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:197, column:141,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:141,the value of plot_cost is         : 60.267399560617164 

 At row:197, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:197, column:142,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:142,the value of plot_cost is         : 60.53891074179224 

 At row:197, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:197, column:143,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:143,the value of plot_cost is         : 60.81122998336984 

 At row:197, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:197, column:144,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:144,the value of plot_cost is         : 61.08435728534997 

 At row:197, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:197, column:145,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:145,the value of plot_cost is         : 61.35829264773259 

 At row:197, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:197, column:146,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:146,the value of plot_cost is         : 61.63303607051772 

 At row:197, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:197, column:147,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:147,the value of plot_cost is         : 61.90858755370539 

 At row:197, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:197, column:148,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:148,the value of plot_cost is         : 62.18494709729555 

 At row:197, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:197, column:149,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:149,the value of plot_cost is         : 62.46211470128823 

 At row:197, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:197, column:150,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:150,the value of plot_cost is         : 62.740090365683415 

 At row:197, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:197, column:151,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:151,the value of plot_cost is         : 63.01887409048113 

 At row:197, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:197, column:152,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:152,the value of plot_cost is         : 63.29846587568136 

 At row:197, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:197, column:153,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:153,the value of plot_cost is         : 63.57886572128411 

 At row:197, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:197, column:154,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:154,the value of plot_cost is         : 63.86007362728937 

 At row:197, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:197, column:155,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:155,the value of plot_cost is         : 64.14208959369715 

 At row:197, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:197, column:156,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:156,the value of plot_cost is         : 64.42491362050745 

 At row:197, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:197, column:157,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:157,the value of plot_cost is         : 64.70854570772025 

 At row:197, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:197, column:158,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:158,the value of plot_cost is         : 64.99298585533556 

 At row:197, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:197, column:159,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:159,the value of plot_cost is         : 65.2782340633534 

 At row:197, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:197, column:160,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:160,the value of plot_cost is         : 65.56429033177375 

 At row:197, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:197, column:161,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:161,the value of plot_cost is         : 65.8511546605966 

 At row:197, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:197, column:162,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:162,the value of plot_cost is         : 66.13882704982198 

 At row:197, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:197, column:163,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:163,the value of plot_cost is         : 66.42730749944988 

 At row:197, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:197, column:164,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:164,the value of plot_cost is         : 66.71659600948031 

 At row:197, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:197, column:165,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:165,the value of plot_cost is         : 67.00669257991323 

 At row:197, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:197, column:166,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:166,the value of plot_cost is         : 67.29759721074868 

 At row:197, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:197, column:167,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:167,the value of plot_cost is         : 67.58930990198662 

 At row:197, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:197, column:168,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:168,the value of plot_cost is         : 67.8818306536271 

 At row:197, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:197, column:169,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:169,the value of plot_cost is         : 68.17515946567008 

 At row:197, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:197, column:170,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:170,the value of plot_cost is         : 68.46929633811557 

 At row:197, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:197, column:171,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:171,the value of plot_cost is         : 68.7642412709636 

 At row:197, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:197, column:172,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:172,the value of plot_cost is         : 69.05999426421411 

 At row:197, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:197, column:173,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:173,the value of plot_cost is         : 69.35655531786716 

 At row:197, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:197, column:174,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:174,the value of plot_cost is         : 69.65392443192273 

 At row:197, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:197, column:175,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:175,the value of plot_cost is         : 69.95210160638082 

 At row:197, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:197, column:176,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:176,the value of plot_cost is         : 70.25108684124142 

 At row:197, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:197, column:177,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:177,the value of plot_cost is         : 70.55088013650452 

 At row:197, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:197, column:178,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:178,the value of plot_cost is         : 70.85148149217014 

 At row:197, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:197, column:179,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:179,the value of plot_cost is         : 71.15289090823826 

 At row:197, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:197, column:180,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:180,the value of plot_cost is         : 71.45510838470892 

 At row:197, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:197, column:181,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:181,the value of plot_cost is         : 71.75813392158209 

 At row:197, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:197, column:182,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:182,the value of plot_cost is         : 72.06196751885776 

 At row:197, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:197, column:183,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:183,the value of plot_cost is         : 72.36660917653596 

 At row:197, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:197, column:184,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:184,the value of plot_cost is         : 72.67205889461668 

 At row:197, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:197, column:185,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:185,the value of plot_cost is         : 72.97831667309991 

 At row:197, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:197, column:186,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:186,the value of plot_cost is         : 73.28538251198566 

 At row:197, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:197, column:187,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:187,the value of plot_cost is         : 73.59325641127391 

 At row:197, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:197, column:188,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:188,the value of plot_cost is         : 73.90193837096469 

 At row:197, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:197, column:189,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:189,the value of plot_cost is         : 74.21142839105796 

 At row:197, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:197, column:190,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:190,the value of plot_cost is         : 74.52172647155376 

 At row:197, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:197, column:191,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:191,the value of plot_cost is         : 74.83283261245208 

 At row:197, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:197, column:192,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:192,the value of plot_cost is         : 75.14474681375292 

 At row:197, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:197, column:193,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:193,the value of plot_cost is         : 75.45746907545627 

 At row:197, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:197, column:194,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:194,the value of plot_cost is         : 75.77099939756211 

 At row:197, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:197, column:195,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:195,the value of plot_cost is         : 76.08533778007052 

 At row:197, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:197, column:196,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:196,the value of plot_cost is         : 76.40048422298142 

 At row:197, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:197, column:197,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:197,the value of plot_cost is         : 76.71643872629483 

 At row:197, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:197, column:198,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:198,the value of plot_cost is         : 77.03320129001075 

 At row:197, column:199,the value of plot_t0 is           : 3.0
 At row:197, column:199,the value of plot_t1 is           : 2.9597989949748746
 At row:197, column:199,the value of plot_cost is         : 77.35077191412917 

 At row:198, column:0,the value of plot_t0 is           : -1.0
 At row:198, column:0,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:0,the value of plot_cost is         : 30.921330810549513 

 At row:198, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:198, column:1,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:1,the value of plot_cost is         : 31.0815836180183 

 At row:198, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:198, column:2,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:2,the value of plot_cost is         : 31.242644485889592 

 At row:198, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:198, column:3,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:3,the value of plot_cost is         : 31.404513414163414 

 At row:198, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:198, column:4,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:4,the value of plot_cost is         : 31.567190402839746 

 At row:198, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:198, column:5,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:5,the value of plot_cost is         : 31.730675451918597 

 At row:198, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:198, column:6,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:6,the value of plot_cost is         : 31.894968561399967 

 At row:198, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:198, column:7,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:7,the value of plot_cost is         : 32.06006973128384 

 At row:198, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:198, column:8,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:8,the value of plot_cost is         : 32.225978961570235 

 At row:198, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:198, column:9,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:9,the value of plot_cost is         : 32.392696252259135 

 At row:198, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:198, column:10,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:10,the value of plot_cost is         : 32.56022160335056 

 At row:198, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:198, column:11,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:11,the value of plot_cost is         : 32.728555014844495 

 At row:198, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:198, column:12,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:12,the value of plot_cost is         : 32.89769648674095 

 At row:198, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:198, column:13,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:13,the value of plot_cost is         : 33.06764601903991 

 At row:198, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:198, column:14,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:14,the value of plot_cost is         : 33.2384036117414 

 At row:198, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:198, column:15,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:15,the value of plot_cost is         : 33.409969264845394 

 At row:198, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:198, column:16,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:16,the value of plot_cost is         : 33.58234297835192 

 At row:198, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:198, column:17,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:17,the value of plot_cost is         : 33.755524752260946 

 At row:198, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:198, column:18,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:18,the value of plot_cost is         : 33.92951458657249 

 At row:198, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:198, column:19,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:19,the value of plot_cost is         : 34.10431248128654 

 At row:198, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:198, column:20,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:20,the value of plot_cost is         : 34.279918436403115 

 At row:198, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:198, column:21,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:21,the value of plot_cost is         : 34.4563324519222 

 At row:198, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:198, column:22,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:22,the value of plot_cost is         : 34.633554527843806 

 At row:198, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:198, column:23,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:23,the value of plot_cost is         : 34.811584664167924 

 At row:198, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:198, column:24,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:24,the value of plot_cost is         : 34.99042286089456 

 At row:198, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:198, column:25,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:25,the value of plot_cost is         : 35.17006911802371 

 At row:198, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:198, column:26,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:26,the value of plot_cost is         : 35.35052343555538 

 At row:198, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:198, column:27,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:27,the value of plot_cost is         : 35.531785813489556 

 At row:198, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:198, column:28,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:28,the value of plot_cost is         : 35.71385625182626 

 At row:198, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:198, column:29,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:29,the value of plot_cost is         : 35.89673475056546 

 At row:198, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:198, column:30,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:30,the value of plot_cost is         : 36.08042130970718 

 At row:198, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:198, column:31,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:31,the value of plot_cost is         : 36.26491592925142 

 At row:198, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:198, column:32,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:32,the value of plot_cost is         : 36.45021860919817 

 At row:198, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:198, column:33,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:33,the value of plot_cost is         : 36.636329349547445 

 At row:198, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:198, column:34,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:34,the value of plot_cost is         : 36.82324815029922 

 At row:198, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:198, column:35,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:35,the value of plot_cost is         : 37.01097501145354 

 At row:198, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:198, column:36,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:36,the value of plot_cost is         : 37.19950993301035 

 At row:198, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:198, column:37,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:37,the value of plot_cost is         : 37.388852914969675 

 At row:198, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:198, column:38,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:38,the value of plot_cost is         : 37.57900395733152 

 At row:198, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:198, column:39,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:39,the value of plot_cost is         : 37.76996306009588 

 At row:198, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:198, column:40,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:40,the value of plot_cost is         : 37.961730223262755 

 At row:198, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:198, column:41,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:41,the value of plot_cost is         : 38.15430544683215 

 At row:198, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:198, column:42,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:42,the value of plot_cost is         : 38.347688730804045 

 At row:198, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:198, column:43,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:43,the value of plot_cost is         : 38.541880075178476 

 At row:198, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:198, column:44,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:44,the value of plot_cost is         : 38.736879479955405 

 At row:198, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:198, column:45,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:45,the value of plot_cost is         : 38.93268694513486 

 At row:198, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:198, column:46,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:46,the value of plot_cost is         : 39.12930247071683 

 At row:198, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:198, column:47,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:47,the value of plot_cost is         : 39.32672605670131 

 At row:198, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:198, column:48,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:48,the value of plot_cost is         : 39.52495770308831 

 At row:198, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:198, column:49,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:49,the value of plot_cost is         : 39.72399740987782 

 At row:198, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:198, column:50,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:50,the value of plot_cost is         : 39.92384517706984 

 At row:198, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:198, column:51,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:51,the value of plot_cost is         : 40.124501004664374 

 At row:198, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:198, column:52,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:52,the value of plot_cost is         : 40.32596489266143 

 At row:198, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:198, column:53,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:53,the value of plot_cost is         : 40.528236841060995 

 At row:198, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:198, column:54,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:54,the value of plot_cost is         : 40.731316849863084 

 At row:198, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:198, column:55,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:55,the value of plot_cost is         : 40.93520491906771 

 At row:198, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:198, column:56,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:56,the value of plot_cost is         : 41.139901048674815 

 At row:198, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:198, column:57,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:57,the value of plot_cost is         : 41.34540523868446 

 At row:198, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:198, column:58,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:58,the value of plot_cost is         : 41.551717489096596 

 At row:198, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:198, column:59,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:59,the value of plot_cost is         : 41.758837799911255 

 At row:198, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:198, column:60,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:60,the value of plot_cost is         : 41.96676617112843 

 At row:198, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:198, column:61,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:61,the value of plot_cost is         : 42.17550260274812 

 At row:198, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:198, column:62,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:62,the value of plot_cost is         : 42.38504709477032 

 At row:198, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:198, column:63,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:63,the value of plot_cost is         : 42.595399647195045 

 At row:198, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:198, column:64,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:64,the value of plot_cost is         : 42.80656026002228 

 At row:198, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:198, column:65,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:65,the value of plot_cost is         : 43.01852893325204 

 At row:198, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:198, column:66,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:66,the value of plot_cost is         : 43.23130566688431 

 At row:198, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:198, column:67,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:67,the value of plot_cost is         : 43.444890460919105 

 At row:198, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:198, column:68,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:68,the value of plot_cost is         : 43.6592833153564 

 At row:198, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:198, column:69,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:69,the value of plot_cost is         : 43.8744842301962 

 At row:198, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:198, column:70,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:70,the value of plot_cost is         : 44.09049320543853 

 At row:198, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:198, column:71,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:71,the value of plot_cost is         : 44.307310241083364 

 At row:198, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:198, column:72,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:72,the value of plot_cost is         : 44.52493533713073 

 At row:198, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:198, column:73,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:73,the value of plot_cost is         : 44.7433684935806 

 At row:198, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:198, column:74,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:74,the value of plot_cost is         : 44.962609710432986 

 At row:198, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:198, column:75,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:75,the value of plot_cost is         : 45.1826589876879 

 At row:198, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:198, column:76,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:76,the value of plot_cost is         : 45.40351632534532 

 At row:198, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:198, column:77,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:77,the value of plot_cost is         : 45.625181723405255 

 At row:198, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:198, column:78,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:78,the value of plot_cost is         : 45.84765518186771 

 At row:198, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:198, column:79,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:79,the value of plot_cost is         : 46.070936700732666 

 At row:198, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:198, column:80,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:80,the value of plot_cost is         : 46.29502628000014 

 At row:198, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:198, column:81,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:81,the value of plot_cost is         : 46.51992391967012 

 At row:198, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:198, column:82,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:82,the value of plot_cost is         : 46.74562961974263 

 At row:198, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:198, column:83,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:83,the value of plot_cost is         : 46.97214338021766 

 At row:198, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:198, column:84,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:84,the value of plot_cost is         : 47.199465201095194 

 At row:198, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:198, column:85,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:85,the value of plot_cost is         : 47.42759508237527 

 At row:198, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:198, column:86,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:86,the value of plot_cost is         : 47.656533024057836 

 At row:198, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:198, column:87,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:87,the value of plot_cost is         : 47.88627902614292 

 At row:198, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:198, column:88,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:88,the value of plot_cost is         : 48.11683308863053 

 At row:198, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:198, column:89,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:89,the value of plot_cost is         : 48.348195211520625 

 At row:198, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:198, column:90,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:90,the value of plot_cost is         : 48.58036539481325 

 At row:198, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:198, column:91,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:91,the value of plot_cost is         : 48.8133436385084 

 At row:198, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:198, column:92,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:92,the value of plot_cost is         : 49.047129942606055 

 At row:198, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:198, column:93,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:93,the value of plot_cost is         : 49.28172430710624 

 At row:198, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:198, column:94,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:94,the value of plot_cost is         : 49.51712673200892 

 At row:198, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:198, column:95,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:95,the value of plot_cost is         : 49.75333721731415 

 At row:198, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:198, column:96,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:96,the value of plot_cost is         : 49.99035576302185 

 At row:198, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:198, column:97,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:97,the value of plot_cost is         : 50.22818236913209 

 At row:198, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:198, column:98,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:98,the value of plot_cost is         : 50.46681703564484 

 At row:198, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:198, column:99,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:99,the value of plot_cost is         : 50.7062597625601 

 At row:198, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:198, column:100,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:100,the value of plot_cost is         : 50.946510549877885 

 At row:198, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:198, column:101,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:101,the value of plot_cost is         : 51.187569397598175 

 At row:198, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:198, column:102,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:102,the value of plot_cost is         : 51.429436305720984 

 At row:198, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:198, column:103,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:103,the value of plot_cost is         : 51.672111274246305 

 At row:198, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:198, column:104,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:104,the value of plot_cost is         : 51.91559430317417 

 At row:198, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:198, column:105,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:105,the value of plot_cost is         : 52.159885392504506 

 At row:198, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:198, column:106,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:106,the value of plot_cost is         : 52.404984542237386 

 At row:198, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:198, column:107,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:107,the value of plot_cost is         : 52.650891752372765 

 At row:198, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:198, column:108,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:108,the value of plot_cost is         : 52.89760702291068 

 At row:198, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:198, column:109,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:109,the value of plot_cost is         : 53.145130353851094 

 At row:198, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:198, column:110,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:110,the value of plot_cost is         : 53.39346174519401 

 At row:198, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:198, column:111,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:111,the value of plot_cost is         : 53.64260119693946 

 At row:198, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:198, column:112,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:112,the value of plot_cost is         : 53.89254870908742 

 At row:198, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:198, column:113,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:113,the value of plot_cost is         : 54.1433042816379 

 At row:198, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:198, column:114,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:114,the value of plot_cost is         : 54.3948679145909 

 At row:198, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:198, column:115,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:115,the value of plot_cost is         : 54.64723960794641 

 At row:198, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:198, column:116,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:116,the value of plot_cost is         : 54.90041936170442 

 At row:198, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:198, column:117,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:117,the value of plot_cost is         : 55.15440717586496 

 At row:198, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:198, column:118,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:118,the value of plot_cost is         : 55.40920305042802 

 At row:198, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:198, column:119,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:119,the value of plot_cost is         : 55.664806985393575 

 At row:198, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:198, column:120,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:120,the value of plot_cost is         : 55.92121898076166 

 At row:198, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:198, column:121,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:121,the value of plot_cost is         : 56.17843903653225 

 At row:198, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:198, column:122,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:122,the value of plot_cost is         : 56.43646715270537 

 At row:198, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:198, column:123,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:123,the value of plot_cost is         : 56.695303329280996 

 At row:198, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:198, column:124,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:124,the value of plot_cost is         : 56.95494756625914 

 At row:198, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:198, column:125,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:125,the value of plot_cost is         : 57.21539986363981 

 At row:198, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:198, column:126,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:126,the value of plot_cost is         : 57.47666022142298 

 At row:198, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:198, column:127,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:127,the value of plot_cost is         : 57.73872863960867 

 At row:198, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:198, column:128,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:128,the value of plot_cost is         : 58.00160511819687 

 At row:198, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:198, column:129,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:129,the value of plot_cost is         : 58.26528965718759 

 At row:198, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:198, column:130,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:130,the value of plot_cost is         : 58.529782256580816 

 At row:198, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:198, column:131,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:131,the value of plot_cost is         : 58.79508291637656 

 At row:198, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:198, column:132,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:132,the value of plot_cost is         : 59.06119163657482 

 At row:198, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:198, column:133,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:133,the value of plot_cost is         : 59.3281084171756 

 At row:198, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:198, column:134,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:134,the value of plot_cost is         : 59.59583325817889 

 At row:198, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:198, column:135,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:135,the value of plot_cost is         : 59.86436615958471 

 At row:198, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:198, column:136,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:136,the value of plot_cost is         : 60.13370712139304 

 At row:198, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:198, column:137,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:137,the value of plot_cost is         : 60.40385614360387 

 At row:198, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:198, column:138,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:138,the value of plot_cost is         : 60.67481322621724 

 At row:198, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:198, column:139,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:139,the value of plot_cost is         : 60.946578369233094 

 At row:198, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:198, column:140,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:140,the value of plot_cost is         : 61.21915157265148 

 At row:198, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:198, column:141,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:141,the value of plot_cost is         : 61.49253283647236 

 At row:198, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:198, column:142,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:142,the value of plot_cost is         : 61.76672216069579 

 At row:198, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:198, column:143,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:143,the value of plot_cost is         : 62.04171954532171 

 At row:198, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:198, column:144,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:144,the value of plot_cost is         : 62.317524990350165 

 At row:198, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:198, column:145,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:145,the value of plot_cost is         : 62.59413849578114 

 At row:198, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:198, column:146,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:146,the value of plot_cost is         : 62.8715600616146 

 At row:198, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:198, column:147,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:147,the value of plot_cost is         : 63.1497896878506 

 At row:198, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:198, column:148,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:148,the value of plot_cost is         : 63.42882737448909 

 At row:198, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:198, column:149,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:149,the value of plot_cost is         : 63.70867312153011 

 At row:198, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:198, column:150,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:150,the value of plot_cost is         : 63.98932692897365 

 At row:198, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:198, column:151,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:151,the value of plot_cost is         : 64.2707887968197 

 At row:198, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:198, column:152,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:152,the value of plot_cost is         : 64.55305872506825 

 At row:198, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:198, column:153,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:153,the value of plot_cost is         : 64.83613671371933 

 At row:198, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:198, column:154,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:154,the value of plot_cost is         : 65.12002276277293 

 At row:198, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:198, column:155,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:155,the value of plot_cost is         : 65.40471687222906 

 At row:198, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:198, column:156,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:156,the value of plot_cost is         : 65.69021904208768 

 At row:198, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:198, column:157,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:157,the value of plot_cost is         : 65.97652927234883 

 At row:198, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:198, column:158,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:158,the value of plot_cost is         : 66.26364756301247 

 At row:198, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:198, column:159,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:159,the value of plot_cost is         : 66.55157391407865 

 At row:198, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:198, column:160,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:160,the value of plot_cost is         : 66.84030832554733 

 At row:198, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:198, column:161,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:161,the value of plot_cost is         : 67.12985079741853 

 At row:198, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:198, column:162,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:162,the value of plot_cost is         : 67.42020132969223 

 At row:198, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:198, column:163,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:163,the value of plot_cost is         : 67.71135992236846 

 At row:198, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:198, column:164,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:164,the value of plot_cost is         : 68.00332657544723 

 At row:198, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:198, column:165,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:165,the value of plot_cost is         : 68.29610128892848 

 At row:198, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:198, column:166,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:166,the value of plot_cost is         : 68.58968406281225 

 At row:198, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:198, column:167,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:167,the value of plot_cost is         : 68.88407489709856 

 At row:198, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:198, column:168,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:168,the value of plot_cost is         : 69.17927379178735 

 At row:198, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:198, column:169,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:169,the value of plot_cost is         : 69.47528074687868 

 At row:198, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:198, column:170,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:170,the value of plot_cost is         : 69.77209576237252 

 At row:198, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:198, column:171,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:171,the value of plot_cost is         : 70.06971883826887 

 At row:198, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:198, column:172,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:172,the value of plot_cost is         : 70.36814997456773 

 At row:198, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:198, column:173,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:173,the value of plot_cost is         : 70.66738917126911 

 At row:198, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:198, column:174,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:174,the value of plot_cost is         : 70.967436428373 

 At row:198, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:198, column:175,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:175,the value of plot_cost is         : 71.26829174587944 

 At row:198, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:198, column:176,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:176,the value of plot_cost is         : 71.56995512378836 

 At row:198, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:198, column:177,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:177,the value of plot_cost is         : 71.8724265620998 

 At row:198, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:198, column:178,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:178,the value of plot_cost is         : 72.17570606081375 

 At row:198, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:198, column:179,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:179,the value of plot_cost is         : 72.47979361993022 

 At row:198, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:198, column:180,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:180,the value of plot_cost is         : 72.78468923944921 

 At row:198, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:198, column:181,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:181,the value of plot_cost is         : 73.09039291937071 

 At row:198, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:198, column:182,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:182,the value of plot_cost is         : 73.39690465969473 

 At row:198, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:198, column:183,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:183,the value of plot_cost is         : 73.70422446042126 

 At row:198, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:198, column:184,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:184,the value of plot_cost is         : 74.01235232155032 

 At row:198, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:198, column:185,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:185,the value of plot_cost is         : 74.32128824308188 

 At row:198, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:198, column:186,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:186,the value of plot_cost is         : 74.63103222501597 

 At row:198, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:198, column:187,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:187,the value of plot_cost is         : 74.94158426735254 

 At row:198, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:198, column:188,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:188,the value of plot_cost is         : 75.25294437009165 

 At row:198, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:198, column:189,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:189,the value of plot_cost is         : 75.56511253323328 

 At row:198, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:198, column:190,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:190,the value of plot_cost is         : 75.87808875677742 

 At row:198, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:198, column:191,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:191,the value of plot_cost is         : 76.19187304072408 

 At row:198, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:198, column:192,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:192,the value of plot_cost is         : 76.50646538507323 

 At row:198, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:198, column:193,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:193,the value of plot_cost is         : 76.82186578982493 

 At row:198, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:198, column:194,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:194,the value of plot_cost is         : 77.13807425497912 

 At row:198, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:198, column:195,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:195,the value of plot_cost is         : 77.45509078053584 

 At row:198, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:198, column:196,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:196,the value of plot_cost is         : 77.77291536649507 

 At row:198, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:198, column:197,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:197,the value of plot_cost is         : 78.09154801285682 

 At row:198, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:198, column:198,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:198,the value of plot_cost is         : 78.41098871962107 

 At row:198, column:199,the value of plot_t0 is           : 3.0
 At row:198, column:199,the value of plot_t1 is           : 2.979899497487437
 At row:198, column:199,the value of plot_cost is         : 78.73123748678785 

 At row:199, column:0,the value of plot_t0 is           : -1.0
 At row:199, column:0,the value of plot_t1 is           : 3.0
 At row:199, column:0,the value of plot_cost is         : 31.781428571428574 

 At row:199, column:1,the value of plot_t0 is           : -0.9798994974874372
 At row:199, column:1,the value of plot_t1 is           : 3.0
 At row:199, column:1,the value of plot_cost is         : 31.944359521945692 

 At row:199, column:2,the value of plot_t0 is           : -0.9597989949748744
 At row:199, column:2,the value of plot_t1 is           : 3.0
 At row:199, column:2,the value of plot_cost is         : 32.10809853286533 

 At row:199, column:3,the value of plot_t0 is           : -0.9396984924623115
 At row:199, column:3,the value of plot_t1 is           : 3.0
 At row:199, column:3,the value of plot_cost is         : 32.27264560418748 

 At row:199, column:4,the value of plot_t0 is           : -0.9195979899497487
 At row:199, column:4,the value of plot_t1 is           : 3.0
 At row:199, column:4,the value of plot_cost is         : 32.43800073591215 

 At row:199, column:5,the value of plot_t0 is           : -0.8994974874371859
 At row:199, column:5,the value of plot_t1 is           : 3.0
 At row:199, column:5,the value of plot_cost is         : 32.60416392803933 

 At row:199, column:6,the value of plot_t0 is           : -0.8793969849246231
 At row:199, column:6,the value of plot_t1 is           : 3.0
 At row:199, column:6,the value of plot_cost is         : 32.77113518056905 

 At row:199, column:7,the value of plot_t0 is           : -0.8592964824120604
 At row:199, column:7,the value of plot_t1 is           : 3.0
 At row:199, column:7,the value of plot_cost is         : 32.93891449350125 

 At row:199, column:8,the value of plot_t0 is           : -0.8391959798994975
 At row:199, column:8,the value of plot_t1 is           : 3.0
 At row:199, column:8,the value of plot_cost is         : 33.10750186683598 

 At row:199, column:9,the value of plot_t0 is           : -0.8190954773869347
 At row:199, column:9,the value of plot_t1 is           : 3.0
 At row:199, column:9,the value of plot_cost is         : 33.276897300573225 

 At row:199, column:10,the value of plot_t0 is           : -0.7989949748743719
 At row:199, column:10,the value of plot_t1 is           : 3.0
 At row:199, column:10,the value of plot_cost is         : 33.44710079471298 

 At row:199, column:11,the value of plot_t0 is           : -0.778894472361809
 At row:199, column:11,the value of plot_t1 is           : 3.0
 At row:199, column:11,the value of plot_cost is         : 33.61811234925525 

 At row:199, column:12,the value of plot_t0 is           : -0.7587939698492463
 At row:199, column:12,the value of plot_t1 is           : 3.0
 At row:199, column:12,the value of plot_cost is         : 33.789931964200036 

 At row:199, column:13,the value of plot_t0 is           : -0.7386934673366834
 At row:199, column:13,the value of plot_t1 is           : 3.0
 At row:199, column:13,the value of plot_cost is         : 33.962559639547344 

 At row:199, column:14,the value of plot_t0 is           : -0.7185929648241206
 At row:199, column:14,the value of plot_t1 is           : 3.0
 At row:199, column:14,the value of plot_cost is         : 34.13599537529716 

 At row:199, column:15,the value of plot_t0 is           : -0.6984924623115578
 At row:199, column:15,the value of plot_t1 is           : 3.0
 At row:199, column:15,the value of plot_cost is         : 34.3102391714495 

 At row:199, column:16,the value of plot_t0 is           : -0.6783919597989949
 At row:199, column:16,the value of plot_t1 is           : 3.0
 At row:199, column:16,the value of plot_cost is         : 34.48529102800435 

 At row:199, column:17,the value of plot_t0 is           : -0.6582914572864322
 At row:199, column:17,the value of plot_t1 is           : 3.0
 At row:199, column:17,the value of plot_cost is         : 34.66115094496172 

 At row:199, column:18,the value of plot_t0 is           : -0.6381909547738693
 At row:199, column:18,the value of plot_t1 is           : 3.0
 At row:199, column:18,the value of plot_cost is         : 34.83781892232159 

 At row:199, column:19,the value of plot_t0 is           : -0.6180904522613065
 At row:199, column:19,the value of plot_t1 is           : 3.0
 At row:199, column:19,the value of plot_cost is         : 35.015294960083985 

 At row:199, column:20,the value of plot_t0 is           : -0.5979899497487438
 At row:199, column:20,the value of plot_t1 is           : 3.0
 At row:199, column:20,the value of plot_cost is         : 35.19357905824889 

 At row:199, column:21,the value of plot_t0 is           : -0.5778894472361809
 At row:199, column:21,the value of plot_t1 is           : 3.0
 At row:199, column:21,the value of plot_cost is         : 35.37267121681631 

 At row:199, column:22,the value of plot_t0 is           : -0.5577889447236181
 At row:199, column:22,the value of plot_t1 is           : 3.0
 At row:199, column:22,the value of plot_cost is         : 35.552571435786255 

 At row:199, column:23,the value of plot_t0 is           : -0.5376884422110553
 At row:199, column:23,the value of plot_t1 is           : 3.0
 At row:199, column:23,the value of plot_cost is         : 35.73327971515871 

 At row:199, column:24,the value of plot_t0 is           : -0.5175879396984925
 At row:199, column:24,the value of plot_t1 is           : 3.0
 At row:199, column:24,the value of plot_cost is         : 35.914796054933674 

 At row:199, column:25,the value of plot_t0 is           : -0.4974874371859297
 At row:199, column:25,the value of plot_t1 is           : 3.0
 At row:199, column:25,the value of plot_cost is         : 36.09712045511116 

 At row:199, column:26,the value of plot_t0 is           : -0.4773869346733668
 At row:199, column:26,the value of plot_t1 is           : 3.0
 At row:199, column:26,the value of plot_cost is         : 36.280252915691165 

 At row:199, column:27,the value of plot_t0 is           : -0.457286432160804
 At row:199, column:27,the value of plot_t1 is           : 3.0
 At row:199, column:27,the value of plot_cost is         : 36.46419343667369 

 At row:199, column:28,the value of plot_t0 is           : -0.4371859296482412
 At row:199, column:28,the value of plot_t1 is           : 3.0
 At row:199, column:28,the value of plot_cost is         : 36.64894201805871 

 At row:199, column:29,the value of plot_t0 is           : -0.4170854271356784
 At row:199, column:29,the value of plot_t1 is           : 3.0
 At row:199, column:29,the value of plot_cost is         : 36.83449865984626 

 At row:199, column:30,the value of plot_t0 is           : -0.3969849246231155
 At row:199, column:30,the value of plot_t1 is           : 3.0
 At row:199, column:30,the value of plot_cost is         : 37.020863362036316 

 At row:199, column:31,the value of plot_t0 is           : -0.37688442211055273
 At row:199, column:31,the value of plot_t1 is           : 3.0
 At row:199, column:31,the value of plot_cost is         : 37.20803612462888 

 At row:199, column:32,the value of plot_t0 is           : -0.35678391959798994
 At row:199, column:32,the value of plot_t1 is           : 3.0
 At row:199, column:32,the value of plot_cost is         : 37.39601694762397 

 At row:199, column:33,the value of plot_t0 is           : -0.33668341708542715
 At row:199, column:33,the value of plot_t1 is           : 3.0
 At row:199, column:33,the value of plot_cost is         : 37.58480583102158 

 At row:199, column:34,the value of plot_t0 is           : -0.31658291457286436
 At row:199, column:34,the value of plot_t1 is           : 3.0
 At row:199, column:34,the value of plot_cost is         : 37.774402774821695 

 At row:199, column:35,the value of plot_t0 is           : -0.29648241206030146
 At row:199, column:35,the value of plot_t1 is           : 3.0
 At row:199, column:35,the value of plot_cost is         : 37.964807779024355 

 At row:199, column:36,the value of plot_t0 is           : -0.27638190954773867
 At row:199, column:36,the value of plot_t1 is           : 3.0
 At row:199, column:36,the value of plot_cost is         : 38.1560208436295 

 At row:199, column:37,the value of plot_t0 is           : -0.2562814070351759
 At row:199, column:37,the value of plot_t1 is           : 3.0
 At row:199, column:37,the value of plot_cost is         : 38.348041968637155 

 At row:199, column:38,the value of plot_t0 is           : -0.2361809045226131
 At row:199, column:38,the value of plot_t1 is           : 3.0
 At row:199, column:38,the value of plot_cost is         : 38.540871154047345 

 At row:199, column:39,the value of plot_t0 is           : -0.2160804020100502
 At row:199, column:39,the value of plot_t1 is           : 3.0
 At row:199, column:39,the value of plot_cost is         : 38.73450839986004 

 At row:199, column:40,the value of plot_t0 is           : -0.1959798994974874
 At row:199, column:40,the value of plot_t1 is           : 3.0
 At row:199, column:40,the value of plot_cost is         : 38.92895370607525 

 At row:199, column:41,the value of plot_t0 is           : -0.1758793969849246
 At row:199, column:41,the value of plot_t1 is           : 3.0
 At row:199, column:41,the value of plot_cost is         : 39.124207072692975 

 At row:199, column:42,the value of plot_t0 is           : -0.15577889447236182
 At row:199, column:42,the value of plot_t1 is           : 3.0
 At row:199, column:42,the value of plot_cost is         : 39.320268499713215 

 At row:199, column:43,the value of plot_t0 is           : -0.13567839195979903
 At row:199, column:43,the value of plot_t1 is           : 3.0
 At row:199, column:43,the value of plot_cost is         : 39.51713798713596 

 At row:199, column:44,the value of plot_t0 is           : -0.11557788944723613
 At row:199, column:44,the value of plot_t1 is           : 3.0
 At row:199, column:44,the value of plot_cost is         : 39.71481553496124 

 At row:199, column:45,the value of plot_t0 is           : -0.09547738693467334
 At row:199, column:45,the value of plot_t1 is           : 3.0
 At row:199, column:45,the value of plot_cost is         : 39.91330114318904 

 At row:199, column:46,the value of plot_t0 is           : -0.07537688442211055
 At row:199, column:46,the value of plot_t1 is           : 3.0
 At row:199, column:46,the value of plot_cost is         : 40.11259481181933 

 At row:199, column:47,the value of plot_t0 is           : -0.055276381909547756
 At row:199, column:47,the value of plot_t1 is           : 3.0
 At row:199, column:47,the value of plot_cost is         : 40.31269654085215 

 At row:199, column:48,the value of plot_t0 is           : -0.035175879396984966
 At row:199, column:48,the value of plot_t1 is           : 3.0
 At row:199, column:48,the value of plot_cost is         : 40.51360633028748 

 At row:199, column:49,the value of plot_t0 is           : -0.015075376884422065
 At row:199, column:49,the value of plot_t1 is           : 3.0
 At row:199, column:49,the value of plot_cost is         : 40.71532418012533 

 At row:199, column:50,the value of plot_t0 is           : 0.005025125628140614
 At row:199, column:50,the value of plot_t1 is           : 3.0
 At row:199, column:50,the value of plot_cost is         : 40.91785009036568 

 At row:199, column:51,the value of plot_t0 is           : 0.025125628140703515
 At row:199, column:51,the value of plot_t1 is           : 3.0
 At row:199, column:51,the value of plot_cost is         : 41.12118406100856 

 At row:199, column:52,the value of plot_t0 is           : 0.045226130653266416
 At row:199, column:52,the value of plot_t1 is           : 3.0
 At row:199, column:52,the value of plot_cost is         : 41.325326092053956 

 At row:199, column:53,the value of plot_t0 is           : 0.0653266331658291
 At row:199, column:53,the value of plot_t1 is           : 3.0
 At row:199, column:53,the value of plot_cost is         : 41.53027618350186 

 At row:199, column:54,the value of plot_t0 is           : 0.085427135678392
 At row:199, column:54,the value of plot_t1 is           : 3.0
 At row:199, column:54,the value of plot_cost is         : 41.73603433535228 

 At row:199, column:55,the value of plot_t0 is           : 0.1055276381909549
 At row:199, column:55,the value of plot_t1 is           : 3.0
 At row:199, column:55,the value of plot_cost is         : 41.94260054760523 

 At row:199, column:56,the value of plot_t0 is           : 0.12562814070351758
 At row:199, column:56,the value of plot_t1 is           : 3.0
 At row:199, column:56,the value of plot_cost is         : 42.149974820260674 

 At row:199, column:57,the value of plot_t0 is           : 0.14572864321608048
 At row:199, column:57,the value of plot_t1 is           : 3.0
 At row:199, column:57,the value of plot_cost is         : 42.35815715331865 

 At row:199, column:58,the value of plot_t0 is           : 0.16582914572864316
 At row:199, column:58,the value of plot_t1 is           : 3.0
 At row:199, column:58,the value of plot_cost is         : 42.567147546779125 

 At row:199, column:59,the value of plot_t0 is           : 0.18592964824120606
 At row:199, column:59,the value of plot_t1 is           : 3.0
 At row:199, column:59,the value of plot_cost is         : 42.77694600064213 

 At row:199, column:60,the value of plot_t0 is           : 0.20603015075376896
 At row:199, column:60,the value of plot_t1 is           : 3.0
 At row:199, column:60,the value of plot_cost is         : 42.987552514907634 

 At row:199, column:61,the value of plot_t0 is           : 0.22613065326633164
 At row:199, column:61,the value of plot_t1 is           : 3.0
 At row:199, column:61,the value of plot_cost is         : 43.19896708957566 

 At row:199, column:62,the value of plot_t0 is           : 0.24623115577889454
 At row:199, column:62,the value of plot_t1 is           : 3.0
 At row:199, column:62,the value of plot_cost is         : 43.4111897246462 

 At row:199, column:63,the value of plot_t0 is           : 0.2663316582914572
 At row:199, column:63,the value of plot_t1 is           : 3.0
 At row:199, column:63,the value of plot_cost is         : 43.62422042011926 

 At row:199, column:64,the value of plot_t0 is           : 0.2864321608040201
 At row:199, column:64,the value of plot_t1 is           : 3.0
 At row:199, column:64,the value of plot_cost is         : 43.83805917599483 

 At row:199, column:65,the value of plot_t0 is           : 0.306532663316583
 At row:199, column:65,the value of plot_t1 is           : 3.0
 At row:199, column:65,the value of plot_cost is         : 44.052705992272934 

 At row:199, column:66,the value of plot_t0 is           : 0.3266331658291457
 At row:199, column:66,the value of plot_t1 is           : 3.0
 At row:199, column:66,the value of plot_cost is         : 44.26816086895354 

 At row:199, column:67,the value of plot_t0 is           : 0.3467336683417086
 At row:199, column:67,the value of plot_t1 is           : 3.0
 At row:199, column:67,the value of plot_cost is         : 44.48442380603665 

 At row:199, column:68,the value of plot_t0 is           : 0.3668341708542713
 At row:199, column:68,the value of plot_t1 is           : 3.0
 At row:199, column:68,the value of plot_cost is         : 44.70149480352229 

 At row:199, column:69,the value of plot_t0 is           : 0.3869346733668342
 At row:199, column:69,the value of plot_t1 is           : 3.0
 At row:199, column:69,the value of plot_cost is         : 44.91937386141043 

 At row:199, column:70,the value of plot_t0 is           : 0.4070351758793971
 At row:199, column:70,the value of plot_t1 is           : 3.0
 At row:199, column:70,the value of plot_cost is         : 45.138060979701095 

 At row:199, column:71,the value of plot_t0 is           : 0.42713567839195976
 At row:199, column:71,the value of plot_t1 is           : 3.0
 At row:199, column:71,the value of plot_cost is         : 45.35755615839427 

 At row:199, column:72,the value of plot_t0 is           : 0.44723618090452266
 At row:199, column:72,the value of plot_t1 is           : 3.0
 At row:199, column:72,the value of plot_cost is         : 45.577859397489966 

 At row:199, column:73,the value of plot_t0 is           : 0.46733668341708534
 At row:199, column:73,the value of plot_t1 is           : 3.0
 At row:199, column:73,the value of plot_cost is         : 45.798970696988164 

 At row:199, column:74,the value of plot_t0 is           : 0.48743718592964824
 At row:199, column:74,the value of plot_t1 is           : 3.0
 At row:199, column:74,the value of plot_cost is         : 46.02089005688889 

 At row:199, column:75,the value of plot_t0 is           : 0.5075376884422111
 At row:199, column:75,the value of plot_t1 is           : 3.0
 At row:199, column:75,the value of plot_cost is         : 46.24361747719214 

 At row:199, column:76,the value of plot_t0 is           : 0.5276381909547738
 At row:199, column:76,the value of plot_t1 is           : 3.0
 At row:199, column:76,the value of plot_cost is         : 46.4671529578979 

 At row:199, column:77,the value of plot_t0 is           : 0.5477386934673367
 At row:199, column:77,the value of plot_t1 is           : 3.0
 At row:199, column:77,the value of plot_cost is         : 46.69149649900616 

 At row:199, column:78,the value of plot_t0 is           : 0.5678391959798996
 At row:199, column:78,the value of plot_t1 is           : 3.0
 At row:199, column:78,the value of plot_cost is         : 46.91664810051695 

 At row:199, column:79,the value of plot_t0 is           : 0.5879396984924623
 At row:199, column:79,the value of plot_t1 is           : 3.0
 At row:199, column:79,the value of plot_cost is         : 47.142607762430245 

 At row:199, column:80,the value of plot_t0 is           : 0.6080402010050252
 At row:199, column:80,the value of plot_t1 is           : 3.0
 At row:199, column:80,the value of plot_cost is         : 47.36937548474606 

 At row:199, column:81,the value of plot_t0 is           : 0.6281407035175879
 At row:199, column:81,the value of plot_t1 is           : 3.0
 At row:199, column:81,the value of plot_cost is         : 47.596951267464384 

 At row:199, column:82,the value of plot_t0 is           : 0.6482412060301508
 At row:199, column:82,the value of plot_t1 is           : 3.0
 At row:199, column:82,the value of plot_cost is         : 47.82533511058523 

 At row:199, column:83,the value of plot_t0 is           : 0.6683417085427137
 At row:199, column:83,the value of plot_t1 is           : 3.0
 At row:199, column:83,the value of plot_cost is         : 48.05452701410859 

 At row:199, column:84,the value of plot_t0 is           : 0.6884422110552764
 At row:199, column:84,the value of plot_t1 is           : 3.0
 At row:199, column:84,the value of plot_cost is         : 48.28452697803446 

 At row:199, column:85,the value of plot_t0 is           : 0.7085427135678393
 At row:199, column:85,the value of plot_t1 is           : 3.0
 At row:199, column:85,the value of plot_cost is         : 48.51533500236287 

 At row:199, column:86,the value of plot_t0 is           : 0.728643216080402
 At row:199, column:86,the value of plot_t1 is           : 3.0
 At row:199, column:86,the value of plot_cost is         : 48.74695108709376 

 At row:199, column:87,the value of plot_t0 is           : 0.7487437185929648
 At row:199, column:87,the value of plot_t1 is           : 3.0
 At row:199, column:87,the value of plot_cost is         : 48.979375232227184 

 At row:199, column:88,the value of plot_t0 is           : 0.7688442211055277
 At row:199, column:88,the value of plot_t1 is           : 3.0
 At row:199, column:88,the value of plot_cost is         : 49.21260743776312 

 At row:199, column:89,the value of plot_t0 is           : 0.7889447236180904
 At row:199, column:89,the value of plot_t1 is           : 3.0
 At row:199, column:89,the value of plot_cost is         : 49.44664770370157 

 At row:199, column:90,the value of plot_t0 is           : 0.8090452261306533
 At row:199, column:90,the value of plot_t1 is           : 3.0
 At row:199, column:90,the value of plot_cost is         : 49.68149603004253 

 At row:199, column:91,the value of plot_t0 is           : 0.829145728643216
 At row:199, column:91,the value of plot_t1 is           : 3.0
 At row:199, column:91,the value of plot_cost is         : 49.917152416786 

 At row:199, column:92,the value of plot_t0 is           : 0.8492462311557789
 At row:199, column:92,the value of plot_t1 is           : 3.0
 At row:199, column:92,the value of plot_cost is         : 50.153616863932 

 At row:199, column:93,the value of plot_t0 is           : 0.8693467336683418
 At row:199, column:93,the value of plot_t1 is           : 3.0
 At row:199, column:93,the value of plot_cost is         : 50.390889371480526 

 At row:199, column:94,the value of plot_t0 is           : 0.8894472361809045
 At row:199, column:94,the value of plot_t1 is           : 3.0
 At row:199, column:94,the value of plot_cost is         : 50.628969939431535 

 At row:199, column:95,the value of plot_t0 is           : 0.9095477386934674
 At row:199, column:95,the value of plot_t1 is           : 3.0
 At row:199, column:95,the value of plot_cost is         : 50.86785856778509 

 At row:199, column:96,the value of plot_t0 is           : 0.9296482412060301
 At row:199, column:96,the value of plot_t1 is           : 3.0
 At row:199, column:96,the value of plot_cost is         : 51.10755525654115 

 At row:199, column:97,the value of plot_t0 is           : 0.949748743718593
 At row:199, column:97,the value of plot_t1 is           : 3.0
 At row:199, column:97,the value of plot_cost is         : 51.34806000569972 

 At row:199, column:98,the value of plot_t0 is           : 0.9698492462311559
 At row:199, column:98,the value of plot_t1 is           : 3.0
 At row:199, column:98,the value of plot_cost is         : 51.58937281526081 

 At row:199, column:99,the value of plot_t0 is           : 0.9899497487437185
 At row:199, column:99,the value of plot_t1 is           : 3.0
 At row:199, column:99,the value of plot_cost is         : 51.8314936852244 

 At row:199, column:100,the value of plot_t0 is           : 1.0100502512562812
 At row:199, column:100,the value of plot_t1 is           : 3.0
 At row:199, column:100,the value of plot_cost is         : 52.074422615590514 

 At row:199, column:101,the value of plot_t0 is           : 1.0301507537688441
 At row:199, column:101,the value of plot_t1 is           : 3.0
 At row:199, column:101,the value of plot_cost is         : 52.318159606359146 

 At row:199, column:102,the value of plot_t0 is           : 1.050251256281407
 At row:199, column:102,the value of plot_t1 is           : 3.0
 At row:199, column:102,the value of plot_cost is         : 52.56270465753029 

 At row:199, column:103,the value of plot_t0 is           : 1.07035175879397
 At row:199, column:103,the value of plot_t1 is           : 3.0
 At row:199, column:103,the value of plot_cost is         : 52.808057769103954 

 At row:199, column:104,the value of plot_t0 is           : 1.0904522613065328
 At row:199, column:104,the value of plot_t1 is           : 3.0
 At row:199, column:104,the value of plot_cost is         : 53.05421894108012 

 At row:199, column:105,the value of plot_t0 is           : 1.1105527638190953
 At row:199, column:105,the value of plot_t1 is           : 3.0
 At row:199, column:105,the value of plot_cost is         : 53.30118817345882 

 At row:199, column:106,the value of plot_t0 is           : 1.1306532663316582
 At row:199, column:106,the value of plot_t1 is           : 3.0
 At row:199, column:106,the value of plot_cost is         : 53.548965466240034 

 At row:199, column:107,the value of plot_t0 is           : 1.150753768844221
 At row:199, column:107,the value of plot_t1 is           : 3.0
 At row:199, column:107,the value of plot_cost is         : 53.79755081942377 

 At row:199, column:108,the value of plot_t0 is           : 1.170854271356784
 At row:199, column:108,the value of plot_t1 is           : 3.0
 At row:199, column:108,the value of plot_cost is         : 54.046944233009995 

 At row:199, column:109,the value of plot_t0 is           : 1.190954773869347
 At row:199, column:109,the value of plot_t1 is           : 3.0
 At row:199, column:109,the value of plot_cost is         : 54.29714570699874 

 At row:199, column:110,the value of plot_t0 is           : 1.2110552763819098
 At row:199, column:110,the value of plot_t1 is           : 3.0
 At row:199, column:110,the value of plot_cost is         : 54.548155241390006 

 At row:199, column:111,the value of plot_t0 is           : 1.2311557788944723
 At row:199, column:111,the value of plot_t1 is           : 3.0
 At row:199, column:111,the value of plot_cost is         : 54.799972836183784 

 At row:199, column:112,the value of plot_t0 is           : 1.2512562814070352
 At row:199, column:112,the value of plot_t1 is           : 3.0
 At row:199, column:112,the value of plot_cost is         : 55.05259849138009 

 At row:199, column:113,the value of plot_t0 is           : 1.271356783919598
 At row:199, column:113,the value of plot_t1 is           : 3.0
 At row:199, column:113,the value of plot_cost is         : 55.3060322069789 

 At row:199, column:114,the value of plot_t0 is           : 1.291457286432161
 At row:199, column:114,the value of plot_t1 is           : 3.0
 At row:199, column:114,the value of plot_cost is         : 55.56027398298024 

 At row:199, column:115,the value of plot_t0 is           : 1.3115577889447239
 At row:199, column:115,the value of plot_t1 is           : 3.0
 At row:199, column:115,the value of plot_cost is         : 55.815323819384076 

 At row:199, column:116,the value of plot_t0 is           : 1.3316582914572863
 At row:199, column:116,the value of plot_t1 is           : 3.0
 At row:199, column:116,the value of plot_cost is         : 56.07118171619044 

 At row:199, column:117,the value of plot_t0 is           : 1.3517587939698492
 At row:199, column:117,the value of plot_t1 is           : 3.0
 At row:199, column:117,the value of plot_cost is         : 56.32784767339931 

 At row:199, column:118,the value of plot_t0 is           : 1.3718592964824121
 At row:199, column:118,the value of plot_t1 is           : 3.0
 At row:199, column:118,the value of plot_cost is         : 56.585321691010705 

 At row:199, column:119,the value of plot_t0 is           : 1.391959798994975
 At row:199, column:119,the value of plot_t1 is           : 3.0
 At row:199, column:119,the value of plot_cost is         : 56.8436037690246 

 At row:199, column:120,the value of plot_t0 is           : 1.412060301507538
 At row:199, column:120,the value of plot_t1 is           : 3.0
 At row:199, column:120,the value of plot_cost is         : 57.10269390744101 

 At row:199, column:121,the value of plot_t0 is           : 1.4321608040201004
 At row:199, column:121,the value of plot_t1 is           : 3.0
 At row:199, column:121,the value of plot_cost is         : 57.36259210625993 

 At row:199, column:122,the value of plot_t0 is           : 1.4522613065326633
 At row:199, column:122,the value of plot_t1 is           : 3.0
 At row:199, column:122,the value of plot_cost is         : 57.62329836548139 

 At row:199, column:123,the value of plot_t0 is           : 1.4723618090452262
 At row:199, column:123,the value of plot_t1 is           : 3.0
 At row:199, column:123,the value of plot_cost is         : 57.884812685105345 

 At row:199, column:124,the value of plot_t0 is           : 1.492462311557789
 At row:199, column:124,the value of plot_t1 is           : 3.0
 At row:199, column:124,the value of plot_cost is         : 58.14713506513183 

 At row:199, column:125,the value of plot_t0 is           : 1.512562814070352
 At row:199, column:125,the value of plot_t1 is           : 3.0
 At row:199, column:125,the value of plot_cost is         : 58.41026550556084 

 At row:199, column:126,the value of plot_t0 is           : 1.5326633165829144
 At row:199, column:126,the value of plot_t1 is           : 3.0
 At row:199, column:126,the value of plot_cost is         : 58.67420400639234 

 At row:199, column:127,the value of plot_t0 is           : 1.5527638190954773
 At row:199, column:127,the value of plot_t1 is           : 3.0
 At row:199, column:127,the value of plot_cost is         : 58.93895056762637 

 At row:199, column:128,the value of plot_t0 is           : 1.5728643216080402
 At row:199, column:128,the value of plot_t1 is           : 3.0
 At row:199, column:128,the value of plot_cost is         : 59.20450518926291 

 At row:199, column:129,the value of plot_t0 is           : 1.5929648241206031
 At row:199, column:129,the value of plot_t1 is           : 3.0
 At row:199, column:129,the value of plot_cost is         : 59.47086787130196 

 At row:199, column:130,the value of plot_t0 is           : 1.613065326633166
 At row:199, column:130,the value of plot_t1 is           : 3.0
 At row:199, column:130,the value of plot_cost is         : 59.73803861374353 

 At row:199, column:131,the value of plot_t0 is           : 1.6331658291457285
 At row:199, column:131,the value of plot_t1 is           : 3.0
 At row:199, column:131,the value of plot_cost is         : 60.00601741658759 

 At row:199, column:132,the value of plot_t0 is           : 1.6532663316582914
 At row:199, column:132,the value of plot_t1 is           : 3.0
 At row:199, column:132,the value of plot_cost is         : 60.27480427983421 

 At row:199, column:133,the value of plot_t0 is           : 1.6733668341708543
 At row:199, column:133,the value of plot_t1 is           : 3.0
 At row:199, column:133,the value of plot_cost is         : 60.54439920348332 

 At row:199, column:134,the value of plot_t0 is           : 1.6934673366834172
 At row:199, column:134,the value of plot_t1 is           : 3.0
 At row:199, column:134,the value of plot_cost is         : 60.814802187534966 

 At row:199, column:135,the value of plot_t0 is           : 1.71356783919598
 At row:199, column:135,the value of plot_t1 is           : 3.0
 At row:199, column:135,the value of plot_cost is         : 61.086013231989114 

 At row:199, column:136,the value of plot_t0 is           : 1.7336683417085426
 At row:199, column:136,the value of plot_t1 is           : 3.0
 At row:199, column:136,the value of plot_cost is         : 61.35803233684576 

 At row:199, column:137,the value of plot_t0 is           : 1.7537688442211055
 At row:199, column:137,the value of plot_t1 is           : 3.0
 At row:199, column:137,the value of plot_cost is         : 61.63085950210493 

 At row:199, column:138,the value of plot_t0 is           : 1.7738693467336684
 At row:199, column:138,the value of plot_t1 is           : 3.0
 At row:199, column:138,the value of plot_cost is         : 61.90449472776663 

 At row:199, column:139,the value of plot_t0 is           : 1.7939698492462313
 At row:199, column:139,the value of plot_t1 is           : 3.0
 At row:199, column:139,the value of plot_cost is         : 62.17893801383083 

 At row:199, column:140,the value of plot_t0 is           : 1.8140703517587942
 At row:199, column:140,the value of plot_t1 is           : 3.0
 At row:199, column:140,the value of plot_cost is         : 62.45418936029753 

 At row:199, column:141,the value of plot_t0 is           : 1.8341708542713566
 At row:199, column:141,the value of plot_t1 is           : 3.0
 At row:199, column:141,the value of plot_cost is         : 62.73024876716677 

 At row:199, column:142,the value of plot_t0 is           : 1.8542713567839195
 At row:199, column:142,the value of plot_t1 is           : 3.0
 At row:199, column:142,the value of plot_cost is         : 63.00711623443853 

 At row:199, column:143,the value of plot_t0 is           : 1.8743718592964824
 At row:199, column:143,the value of plot_t1 is           : 3.0
 At row:199, column:143,the value of plot_cost is         : 63.28479176211278 

 At row:199, column:144,the value of plot_t0 is           : 1.8944723618090453
 At row:199, column:144,the value of plot_t1 is           : 3.0
 At row:199, column:144,the value of plot_cost is         : 63.56327535018956 

 At row:199, column:145,the value of plot_t0 is           : 1.9145728643216082
 At row:199, column:145,the value of plot_t1 is           : 3.0
 At row:199, column:145,the value of plot_cost is         : 63.84256699866887 

 At row:199, column:146,the value of plot_t0 is           : 1.9346733668341707
 At row:199, column:146,the value of plot_t1 is           : 3.0
 At row:199, column:146,the value of plot_cost is         : 64.12266670755068 

 At row:199, column:147,the value of plot_t0 is           : 1.9547738693467336
 At row:199, column:147,the value of plot_t1 is           : 3.0
 At row:199, column:147,the value of plot_cost is         : 64.403574476835 

 At row:199, column:148,the value of plot_t0 is           : 1.9748743718592965
 At row:199, column:148,the value of plot_t1 is           : 3.0
 At row:199, column:148,the value of plot_cost is         : 64.68529030652185 

 At row:199, column:149,the value of plot_t0 is           : 1.9949748743718594
 At row:199, column:149,the value of plot_t1 is           : 3.0
 At row:199, column:149,the value of plot_cost is         : 64.9678141966112 

 At row:199, column:150,the value of plot_t0 is           : 2.0150753768844223
 At row:199, column:150,the value of plot_t1 is           : 3.0
 At row:199, column:150,the value of plot_cost is         : 65.25114614710306 

 At row:199, column:151,the value of plot_t0 is           : 2.035175879396985
 At row:199, column:151,the value of plot_t1 is           : 3.0
 At row:199, column:151,the value of plot_cost is         : 65.53528615799746 

 At row:199, column:152,the value of plot_t0 is           : 2.0552763819095476
 At row:199, column:152,the value of plot_t1 is           : 3.0
 At row:199, column:152,the value of plot_cost is         : 65.82023422929434 

 At row:199, column:153,the value of plot_t0 is           : 2.0753768844221105
 At row:199, column:153,the value of plot_t1 is           : 3.0
 At row:199, column:153,the value of plot_cost is         : 66.10599036099377 

 At row:199, column:154,the value of plot_t0 is           : 2.0954773869346734
 At row:199, column:154,the value of plot_t1 is           : 3.0
 At row:199, column:154,the value of plot_cost is         : 66.39255455309572 

 At row:199, column:155,the value of plot_t0 is           : 2.1155778894472363
 At row:199, column:155,the value of plot_t1 is           : 3.0
 At row:199, column:155,the value of plot_cost is         : 66.67992680560015 

 At row:199, column:156,the value of plot_t0 is           : 2.1356783919597992
 At row:199, column:156,the value of plot_t1 is           : 3.0
 At row:199, column:156,the value of plot_cost is         : 66.96810711850712 

 At row:199, column:157,the value of plot_t0 is           : 2.1557788944723617
 At row:199, column:157,the value of plot_t1 is           : 3.0
 At row:199, column:157,the value of plot_cost is         : 67.25709549181659 

 At row:199, column:158,the value of plot_t0 is           : 2.1758793969849246
 At row:199, column:158,the value of plot_t1 is           : 3.0
 At row:199, column:158,the value of plot_cost is         : 67.5468919255286 

 At row:199, column:159,the value of plot_t0 is           : 2.1959798994974875
 At row:199, column:159,the value of plot_t1 is           : 3.0
 At row:199, column:159,the value of plot_cost is         : 67.83749641964309 

 At row:199, column:160,the value of plot_t0 is           : 2.2160804020100504
 At row:199, column:160,the value of plot_t1 is           : 3.0
 At row:199, column:160,the value of plot_cost is         : 68.1289089741601 

 At row:199, column:161,the value of plot_t0 is           : 2.2361809045226133
 At row:199, column:161,the value of plot_t1 is           : 3.0
 At row:199, column:161,the value of plot_cost is         : 68.42112958907965 

 At row:199, column:162,the value of plot_t0 is           : 2.2562814070351758
 At row:199, column:162,the value of plot_t1 is           : 3.0
 At row:199, column:162,the value of plot_cost is         : 68.71415826440169 

 At row:199, column:163,the value of plot_t0 is           : 2.2763819095477387
 At row:199, column:163,the value of plot_t1 is           : 3.0
 At row:199, column:163,the value of plot_cost is         : 69.00799500012626 

 At row:199, column:164,the value of plot_t0 is           : 2.2964824120603016
 At row:199, column:164,the value of plot_t1 is           : 3.0
 At row:199, column:164,the value of plot_cost is         : 69.30263979625333 

 At row:199, column:165,the value of plot_t0 is           : 2.3165829145728645
 At row:199, column:165,the value of plot_t1 is           : 3.0
 At row:199, column:165,the value of plot_cost is         : 69.59809265278295 

 At row:199, column:166,the value of plot_t0 is           : 2.3366834170854274
 At row:199, column:166,the value of plot_t1 is           : 3.0
 At row:199, column:166,the value of plot_cost is         : 69.89435356971507 

 At row:199, column:167,the value of plot_t0 is           : 2.35678391959799
 At row:199, column:167,the value of plot_t1 is           : 3.0
 At row:199, column:167,the value of plot_cost is         : 70.19142254704968 

 At row:199, column:168,the value of plot_t0 is           : 2.3768844221105527
 At row:199, column:168,the value of plot_t1 is           : 3.0
 At row:199, column:168,the value of plot_cost is         : 70.48929958478682 

 At row:199, column:169,the value of plot_t0 is           : 2.3969849246231156
 At row:199, column:169,the value of plot_t1 is           : 3.0
 At row:199, column:169,the value of plot_cost is         : 70.78798468292648 

 At row:199, column:170,the value of plot_t0 is           : 2.4170854271356785
 At row:199, column:170,the value of plot_t1 is           : 3.0
 At row:199, column:170,the value of plot_cost is         : 71.08747784146864 

 At row:199, column:171,the value of plot_t0 is           : 2.4371859296482414
 At row:199, column:171,the value of plot_t1 is           : 3.0
 At row:199, column:171,the value of plot_cost is         : 71.38777906041334 

 At row:199, column:172,the value of plot_t0 is           : 2.457286432160804
 At row:199, column:172,the value of plot_t1 is           : 3.0
 At row:199, column:172,the value of plot_cost is         : 71.68888833976052 

 At row:199, column:173,the value of plot_t0 is           : 2.477386934673367
 At row:199, column:173,the value of plot_t1 is           : 3.0
 At row:199, column:173,the value of plot_cost is         : 71.99080567951026 

 At row:199, column:174,the value of plot_t0 is           : 2.4974874371859297
 At row:199, column:174,the value of plot_t1 is           : 3.0
 At row:199, column:174,the value of plot_cost is         : 72.2935310796625 

 At row:199, column:175,the value of plot_t0 is           : 2.5175879396984926
 At row:199, column:175,the value of plot_t1 is           : 3.0
 At row:199, column:175,the value of plot_cost is         : 72.59706454021723 

 At row:199, column:176,the value of plot_t0 is           : 2.5376884422110555
 At row:199, column:176,the value of plot_t1 is           : 3.0
 At row:199, column:176,the value of plot_cost is         : 72.90140606117451 

 At row:199, column:177,the value of plot_t0 is           : 2.557788944723618
 At row:199, column:177,the value of plot_t1 is           : 3.0
 At row:199, column:177,the value of plot_cost is         : 73.20655564253428 

 At row:199, column:178,the value of plot_t0 is           : 2.577889447236181
 At row:199, column:178,the value of plot_t1 is           : 3.0
 At row:199, column:178,the value of plot_cost is         : 73.51251328429657 

 At row:199, column:179,the value of plot_t0 is           : 2.5979899497487438
 At row:199, column:179,the value of plot_t1 is           : 3.0
 At row:199, column:179,the value of plot_cost is         : 73.81927898646137 

 At row:199, column:180,the value of plot_t0 is           : 2.6180904522613067
 At row:199, column:180,the value of plot_t1 is           : 3.0
 At row:199, column:180,the value of plot_cost is         : 74.1268527490287 

 At row:199, column:181,the value of plot_t0 is           : 2.6381909547738696
 At row:199, column:181,the value of plot_t1 is           : 3.0
 At row:199, column:181,the value of plot_cost is         : 74.43523457199855 

 At row:199, column:182,the value of plot_t0 is           : 2.658291457286432
 At row:199, column:182,the value of plot_t1 is           : 3.0
 At row:199, column:182,the value of plot_cost is         : 74.74442445537089 

 At row:199, column:183,the value of plot_t0 is           : 2.678391959798995
 At row:199, column:183,the value of plot_t1 is           : 3.0
 At row:199, column:183,the value of plot_cost is         : 75.05442239914576 

 At row:199, column:184,the value of plot_t0 is           : 2.698492462311558
 At row:199, column:184,the value of plot_t1 is           : 3.0
 At row:199, column:184,the value of plot_cost is         : 75.36522840332314 

 At row:199, column:185,the value of plot_t0 is           : 2.7185929648241207
 At row:199, column:185,the value of plot_t1 is           : 3.0
 At row:199, column:185,the value of plot_cost is         : 75.67684246790306 

 At row:199, column:186,the value of plot_t0 is           : 2.7386934673366836
 At row:199, column:186,the value of plot_t1 is           : 3.0
 At row:199, column:186,the value of plot_cost is         : 75.98926459288548 

 At row:199, column:187,the value of plot_t0 is           : 2.758793969849246
 At row:199, column:187,the value of plot_t1 is           : 3.0
 At row:199, column:187,the value of plot_cost is         : 76.30249477827039 

 At row:199, column:188,the value of plot_t0 is           : 2.778894472361809
 At row:199, column:188,the value of plot_t1 is           : 3.0
 At row:199, column:188,the value of plot_cost is         : 76.61653302405784 

 At row:199, column:189,the value of plot_t0 is           : 2.798994974874372
 At row:199, column:189,the value of plot_t1 is           : 3.0
 At row:199, column:189,the value of plot_cost is         : 76.9313793302478 

 At row:199, column:190,the value of plot_t0 is           : 2.819095477386935
 At row:199, column:190,the value of plot_t1 is           : 3.0
 At row:199, column:190,the value of plot_cost is         : 77.24703369684026 

 At row:199, column:191,the value of plot_t0 is           : 2.8391959798994977
 At row:199, column:191,the value of plot_t1 is           : 3.0
 At row:199, column:191,the value of plot_cost is         : 77.56349612383525 

 At row:199, column:192,the value of plot_t0 is           : 2.85929648241206
 At row:199, column:192,the value of plot_t1 is           : 3.0
 At row:199, column:192,the value of plot_cost is         : 77.88076661123276 

 At row:199, column:193,the value of plot_t0 is           : 2.879396984924623
 At row:199, column:193,the value of plot_t1 is           : 3.0
 At row:199, column:193,the value of plot_cost is         : 78.19884515903279 

 At row:199, column:194,the value of plot_t0 is           : 2.899497487437186
 At row:199, column:194,the value of plot_t1 is           : 3.0
 At row:199, column:194,the value of plot_cost is         : 78.51773176723533 

 At row:199, column:195,the value of plot_t0 is           : 2.919597989949749
 At row:199, column:195,the value of plot_t1 is           : 3.0
 At row:199, column:195,the value of plot_cost is         : 78.83742643584037 

 At row:199, column:196,the value of plot_t0 is           : 2.9396984924623117
 At row:199, column:196,the value of plot_t1 is           : 3.0
 At row:199, column:196,the value of plot_cost is         : 79.15792916484796 

 At row:199, column:197,the value of plot_t0 is           : 2.9597989949748746
 At row:199, column:197,the value of plot_t1 is           : 3.0
 At row:199, column:197,the value of plot_cost is         : 79.47923995425802 

 At row:199, column:198,the value of plot_t0 is           : 2.979899497487437
 At row:199, column:198,the value of plot_t1 is           : 3.0
 At row:199, column:198,the value of plot_cost is         : 79.80135880407062 

 At row:199, column:199,the value of plot_t0 is           : 3.0
 At row:199, column:199,the value of plot_t1 is           : 3.0
 At row:199, column:199,the value of plot_cost is         : 80.1242857142857 

In [42]:
print('Shape of plot_t0 is  ', plot_t0.shape, '\n')
print('Shape of plot_t1 is  ', plot_t1.shape, '\n')
print('Shape of plot_cost is', plot_cost.shape, '\n')
print('value of plot_cost', plot_cost.min())
Shape of plot_t0 is   (200, 200) 

Shape of plot_t1 is   (200, 200) 

Shape of plot_cost is (200, 200) 

value of plot_cost 0.9483826526747163
In [43]:
print(plot_cost)
[[108.51285714 108.14283763 107.77362617 ...  51.2194266   51.00859498
   50.79857143]
 [106.88158925 106.51424787 106.14771456 ...  50.11575289  49.90759941
   49.700254  ]
 [105.262904   104.89824077 104.5343856  ...  49.02466182  48.81918649
   48.61451922]
 ...
 [ 30.0738157   30.23139037  30.38977309 ...  76.71643873  77.03320129
   77.35077191]
 [ 30.92133081  31.08158362  31.24264449 ...  78.09154801  78.41098872
   78.73123749]
 [ 31.78142857  31.94435952  32.10809853 ...  79.47923995  79.8013588
   80.12428571]]
In [44]:
plot_cost = np.zeros((nr_thetas, nr_thetas))

for i in range(nr_thetas):
    for j in range(nr_thetas):
        y_hat = plot_t0[i][j] + plot_t1[i][j]*x_5
        plot_cost[i][j] = mse(y_5, y_hat)

print('Shape of plot_t0', plot_t0.shape)
print('Shape of plot_t1', plot_t1.shape)
print('Shape of plot_cost', plot_cost.shape)
Shape of plot_t0 (200, 200)
Shape of plot_t1 (200, 200)
Shape of plot_cost (200, 200)
In [45]:
# Plotting MSE
fig = plt.figure(figsize=[6, 4])
ax = fig.gca(projection='3d')
ax.azim = 60       
plt.show()
In [46]:
fig = plt.figure(figsize=[6, 4])
ax = fig.gca(projection='3d')
ax.azim = 35       
plt.show()

plot when the number of point are less...that is nr_thetas....its set to 5 currently

In [47]:
plot_t0
Out[47]:
array([[-1.        , -0.9798995 , -0.95979899, ...,  2.95979899,
         2.9798995 ,  3.        ],
       [-1.        , -0.9798995 , -0.95979899, ...,  2.95979899,
         2.9798995 ,  3.        ],
       [-1.        , -0.9798995 , -0.95979899, ...,  2.95979899,
         2.9798995 ,  3.        ],
       ...,
       [-1.        , -0.9798995 , -0.95979899, ...,  2.95979899,
         2.9798995 ,  3.        ],
       [-1.        , -0.9798995 , -0.95979899, ...,  2.95979899,
         2.9798995 ,  3.        ],
       [-1.        , -0.9798995 , -0.95979899, ...,  2.95979899,
         2.9798995 ,  3.        ]])
In [48]:
plot_t1
Out[48]:
array([[-1.        , -1.        , -1.        , ..., -1.        ,
        -1.        , -1.        ],
       [-0.9798995 , -0.9798995 , -0.9798995 , ..., -0.9798995 ,
        -0.9798995 , -0.9798995 ],
       [-0.95979899, -0.95979899, -0.95979899, ..., -0.95979899,
        -0.95979899, -0.95979899],
       ...,
       [ 2.95979899,  2.95979899,  2.95979899, ...,  2.95979899,
         2.95979899,  2.95979899],
       [ 2.9798995 ,  2.9798995 ,  2.9798995 , ...,  2.9798995 ,
         2.9798995 ,  2.9798995 ],
       [ 3.        ,  3.        ,  3.        , ...,  3.        ,
         3.        ,  3.        ]])
In [49]:
print(plot_cost)
[[108.51285714 108.14283763 107.77362617 ...  51.2194266   51.00859498
   50.79857143]
 [106.88158925 106.51424787 106.14771456 ...  50.11575289  49.90759941
   49.700254  ]
 [105.262904   104.89824077 104.5343856  ...  49.02466182  48.81918649
   48.61451922]
 ...
 [ 30.0738157   30.23139037  30.38977309 ...  76.71643873  77.03320129
   77.35077191]
 [ 30.92133081  31.08158362  31.24264449 ...  78.09154801  78.41098872
   78.73123749]
 [ 31.78142857  31.94435952  32.10809853 ...  79.47923995  79.8013588
   80.12428571]]
In [52]:
# Plotting MSE
fig = plt.figure(figsize=[16, 12])
ax = fig.gca(projection='3d')
ax.set_xlabel('Theta_0 The Intercept', fontsize=20, color ="black")
ax.set_ylabel('Theta_1 The Slope', fontsize=20, color ='green')
ax.set_zlabel('Cost function - The Mean Square Error', fontsize=20, color = 'brown')
ax.azim = -15
ax.plot_surface(plot_t0, plot_t1, plot_cost, cmap=cm.cool, alpha =0.4 )
plt.show()
In [53]:
plot_cost = np.zeros((nr_thetas, nr_thetas))

for i in range(nr_thetas):
    for j in range(nr_thetas):
        y_hat = plot_t0[i][j] + plot_t1[i][j]*x_5
        plot_cost[i][j] = mse(y_5, y_hat)

print('Shape of plot_t0', plot_t0.shape)
print('Shape of plot_t1', plot_t1.shape)
print('Shape of plot_cost', plot_cost.shape)
Shape of plot_t0 (200, 200)
Shape of plot_t1 (200, 200)
Shape of plot_cost (200, 200)
In [54]:
# Plotting MSE
fig = plt.figure(figsize=[16, 12])
ax = fig.gca(projection='3d')

ax.set_xlabel('Theta_0 The Intercept', fontsize=20)
ax.set_ylabel('Theta_1 The Slope', fontsize=20)
ax.set_zlabel('Cost Function the Mean Square Error', fontsize=20)
ax.azim = -30
ax.plot_surface(plot_t0, plot_t1, plot_cost, cmap=cm.cool, alpha =0.4)
plt.show()
In [55]:
print('Min value of plot_cost', plot_cost.min())

ij_min = np.unravel_index(indices=plot_cost.argmin(), shape=plot_cost.shape) 

print('Min occurs at (i,j):', ij_min) 
Min value of plot_cost 0.9483826526747163
Min occurs at (i,j): (111, 91)
In [58]:
print('Min MSE for Theta 0 at plot_t0[111][91]             '     ,     plot_t0[111][91])
Min MSE for Theta 0 at plot_t0[111][91]              0.829145728643216
In [59]:
print('Min MSE for Theta 1 at plot_t1[111][91]             '      ,  plot_t1[111][91])
Min MSE for Theta 1 at plot_t1[111][91]              1.2311557788944723

MSE & Gradient Descent

Partial Derivatives of MSE w.r.t. $\theta_0$ and $\theta_1$

$$\frac{\partial MSE}{\partial \theta_0} = - \frac{2}{n} \sum_{i=1}^{n} \big( y^{(i)} - \theta_0 - \theta_1 x^{(i)} \big)$$

$$\frac{\partial MSE}{\partial \theta1} = - \frac{2}{n} \sum

{i=1}^{n} \big( y^{(i)} - \theta_0 - \theta_1 x^{(i)} \big) \big( x^{(i)} \big)$$

In [60]:
def grad(x, y, thetas):
    n = y.size
    
    
    theta0_slope = (-2/n) * sum(y - thetas[0] - thetas[1]*x)
    theta1_slope = (-2/n) * sum((y - thetas[0] - thetas[1]*x)*x)
    
    return np.array([theta0_slope[0], theta1_slope[0]])
    
In [61]:
multiplier = 0.01
thetas = np.array([2.9, 2.9])

for i in range(1000):
    thetas = thetas - multiplier * grad(x_5, y_5, thetas)
   
# Results
print('Min occurs at Theta 0:', thetas[0])
print('Min occurs at Theta 1:', thetas[1])
print('MSE is:', mse(y_5, thetas[0] + thetas[1]*x_5))
Min occurs at Theta 0: 0.8532230461743415
Min occurs at Theta 1: 1.2214935332607393
MSE is: [0.94797511]
In [62]:
multiplier = 0.01
thetas = np.array([2.9, 2.9])

# Collecting data points for scatter plot
plot_vals = thetas.reshape(1, 2)
mse_vals = mse(y_5, thetas[0] + thetas[1]*x_5)

for i in range(1000):
    thetas = thetas - multiplier * grad(x_5, y_5, thetas)
    
    # Appending the new values to  numpy arrays
    plot_vals = np.concatenate((plot_vals, thetas.reshape(1, 2)), axis=0)
    mse_vals = np.append(arr=mse_vals, values=mse(y_5, thetas[0] + thetas[1]*x_5))
   
In [63]:
# Plotting MSE
fig = plt.figure(figsize=[16, 12])
ax = fig.gca(projection='3d')
ax.set_xlabel('Theta 0', fontsize=20)
ax.set_ylabel('Theta 1', fontsize=20)
ax.set_zlabel('Cost - MSE', fontsize=20)
ax.azim = -45
ax.scatter(plot_vals[:, 0], plot_vals[:, 1], mse_vals, s=20, color='black')
ax.plot_surface(plot_t0, plot_t1, plot_cost, cmap=cm.rainbow, alpha=0.4)
plt.show()
nr_thetas =0 
In [64]:
print('Min occurs at Theta 0:', thetas[0])
print('Min occurs at Theta 1:', thetas[1])
print('MSE is:', mse(y_5, thetas[0] + thetas[1]*x_5))
Min occurs at Theta 0: 0.8532230461743415
Min occurs at Theta 1: 1.2214935332607393
MSE is: [0.94797511]
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [ ]: